diff --git a/.github/workflows/build-dereferenced-spec.yml b/.github/workflows/build-dereferenced-spec.yml index 9c82c49..7e6033a 100644 --- a/.github/workflows/build-dereferenced-spec.yml +++ b/.github/workflows/build-dereferenced-spec.yml @@ -26,23 +26,82 @@ jobs: run: | npm install -g swagger-cli npm install -g openapi-to-postmanv2 + - name: Dereference API Specification and build Postman collection + run: | + swagger-cli bundle --dereference idn/sailpoint-api.v3.yaml -t yaml -o dereferenced/deref-sailpoint-api.v3.yaml + openapi2postmanv2 -s dereferenced/deref-sailpoint-api.v3.yaml -o postman/collections/sailpoint-api-v3.json -p -c postman-script/openapi2postman-config.json + node postman-script/modify-collection.js postman/collections/sailpoint-api-v3.json + swagger-cli bundle --dereference idn/sailpoint-api.beta.yaml -t yaml -o dereferenced/deref-sailpoint-api.beta.yaml + openapi2postmanv2 -s dereferenced/deref-sailpoint-api.beta.yaml -o postman/collections/sailpoint-api-beta.json -p -c postman-script/openapi2postman-config.json + node postman-script/modify-collection.js postman/collections/sailpoint-api-beta.json + swagger-cli bundle --dereference nerm/openapi.yaml -t yaml -o dereferenced/deref-sailpoint-api.nerm.yaml + openapi2postmanv2 -s dereferenced/deref-sailpoint-api.nerm.yaml -o postman/collections/sailpoint-api-nerm.json -p -c postman-script/openapi2postman-config.json + swagger-cli bundle --dereference idn/sailpoint-api.v3.yaml -t json -o dereferenced/deref-sailpoint-api.v3.json + swagger-cli bundle --dereference idn/sailpoint-api.beta.yaml -t json -o dereferenced/deref-sailpoint-api.beta.json + - uses: stefanzweifel/git-auto-commit-action@v4 + + push_v3_specs_to_postman: + runs-on: ubuntu-latest + if: | + github.event.head_commit.modified.* == 'idn/sailpoint-api.v3.yaml' || + github.event.head_commit.modified.* == 'idn/v3/**' || + github.event.head_commit.added.* == 'idn/v3/**' + needs: [dereference_spec] + steps: + - name: Checkout PR branch + uses: actions/checkout@v3 + - name: Set up Node + uses: actions/setup-node@v3 + with: + node-version: "18" - name: Dereference API Specification and build Postman collection run: | echo POSTMAN_API_KEY="${{ secrets.POSTMAN_API_KEY }}" > .env cd postman-script/updateByFolder npm ci cd ../../ - swagger-cli bundle --dereference idn/sailpoint-api.v3.yaml -t yaml -o dereferenced/deref-sailpoint-api.v3.yaml - openapi2postmanv2 -s dereferenced/deref-sailpoint-api.v3.yaml -o postman/collections/sailpoint-api-v3.json -p -c postman-script/openapi2postman-config.json - node postman-script/modify-collection.js postman/collections/sailpoint-api-v3.json node postman-script/updateByFolder/index.js v3 - swagger-cli bundle --dereference idn/sailpoint-api.beta.yaml -t yaml -o dereferenced/deref-sailpoint-api.beta.yaml - openapi2postmanv2 -s dereferenced/deref-sailpoint-api.beta.yaml -o postman/collections/sailpoint-api-beta.json -p -c postman-script/openapi2postman-config.json - node postman-script/modify-collection.js postman/collections/sailpoint-api-beta.json + + push_beta_specs_to_postman: + runs-on: ubuntu-latest + if: | + github.event.head_commit.modified.* == 'idn/sailpoint-api.beta.yaml' || + github.event.head_commit.modified.* == 'idn/beta/**' || + github.event.head_commit.added.* == 'idn/beta/**' + needs: [dereference_spec] + steps: + - name: Checkout PR branch + uses: actions/checkout@v3 + - name: Set up Node + uses: actions/setup-node@v3 + with: + node-version: "18" + - name: Dereference API Specification and build Postman collection + run: | + echo POSTMAN_API_KEY="${{ secrets.POSTMAN_API_KEY }}" > .env + cd postman-script/updateByFolder + npm ci + cd ../../ node postman-script/updateByFolder/index.js beta - swagger-cli bundle --dereference nerm/openapi.yaml -t yaml -o dereferenced/deref-sailpoint-api.nerm.yaml - openapi2postmanv2 -s dereferenced/deref-sailpoint-api.nerm.yaml -o postman/collections/sailpoint-api-nerm.json -p -c postman-script/openapi2postman-config.json - node postman-script/updateByFolder/index.js nerm - swagger-cli bundle --dereference idn/sailpoint-api.v3.yaml -t json -o dereferenced/deref-sailpoint-api.v3.json - swagger-cli bundle --dereference idn/sailpoint-api.beta.yaml -t json -o dereferenced/deref-sailpoint-api.beta.json - - uses: stefanzweifel/git-auto-commit-action@v4 \ No newline at end of file + + + push_nerm_specs_to_postman: + runs-on: ubuntu-latest + if: | + github.event.head_commit.modified.* == 'nerm/**' || + github.event.head_commit.added.* == 'nerm/**' + needs: [dereference_spec] + steps: + - name: Checkout PR branch + uses: actions/checkout@v3 + - name: Set up Node + uses: actions/setup-node@v3 + with: + node-version: "18" + - name: Dereference API Specification and build Postman collection + run: | + echo POSTMAN_API_KEY="${{ secrets.POSTMAN_API_KEY }}" > .env + cd postman-script/updateByFolder + npm ci + cd ../../ + node postman-script/updateByFolder/index.js nerm \ No newline at end of file diff --git a/dereferenced/deref-sailpoint-api.beta.json b/dereferenced/deref-sailpoint-api.beta.json index 3997fcb..f77eb6d 100644 --- a/dereferenced/deref-sailpoint-api.beta.json +++ b/dereferenced/deref-sailpoint-api.beta.json @@ -145471,6 +145471,34 @@ }, "nullable": true }, + "Entitlements": { + "type": "array", + "items": { + "type": "object", + "description": "Entitlement including a specific set of access.", + "properties": { + "type": { + "type": "string", + "description": "Entitlement's DTO type.", + "enum": [ + "ENTITLEMENT" + ], + "example": "ENTITLEMENT" + }, + "id": { + "type": "string", + "description": "Entitlement's ID.", + "example": "2c91809773dee32014e13e122092014e" + }, + "name": { + "type": "string", + "description": "Entitlement's display name.", + "example": "CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local" + } + } + }, + "nullable": true + }, "membership": { "nullable": true, "type": "object", @@ -146280,6 +146308,34 @@ }, "nullable": true }, + "Entitlements": { + "type": "array", + "items": { + "type": "object", + "description": "Entitlement including a specific set of access.", + "properties": { + "type": { + "type": "string", + "description": "Entitlement's DTO type.", + "enum": [ + "ENTITLEMENT" + ], + "example": "ENTITLEMENT" + }, + "id": { + "type": "string", + "description": "Entitlement's ID.", + "example": "2c91809773dee32014e13e122092014e" + }, + "name": { + "type": "string", + "description": "Entitlement's display name.", + "example": "CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local" + } + } + }, + "nullable": true + }, "membership": { "nullable": true, "type": "object", @@ -146772,6 +146828,34 @@ }, "nullable": true }, + "Entitlements": { + "type": "array", + "items": { + "type": "object", + "description": "Entitlement including a specific set of access.", + "properties": { + "type": { + "type": "string", + "description": "Entitlement's DTO type.", + "enum": [ + "ENTITLEMENT" + ], + "example": "ENTITLEMENT" + }, + "id": { + "type": "string", + "description": "Entitlement's ID.", + "example": "2c91809773dee32014e13e122092014e" + }, + "name": { + "type": "string", + "description": "Entitlement's display name.", + "example": "CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local" + } + } + }, + "nullable": true + }, "membership": { "nullable": true, "type": "object", @@ -147593,6 +147677,34 @@ }, "nullable": true }, + "Entitlements": { + "type": "array", + "items": { + "type": "object", + "description": "Entitlement including a specific set of access.", + "properties": { + "type": { + "type": "string", + "description": "Entitlement's DTO type.", + "enum": [ + "ENTITLEMENT" + ], + "example": "ENTITLEMENT" + }, + "id": { + "type": "string", + "description": "Entitlement's ID.", + "example": "2c91809773dee32014e13e122092014e" + }, + "name": { + "type": "string", + "description": "Entitlement's display name.", + "example": "CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local" + } + } + }, + "nullable": true + }, "membership": { "nullable": true, "type": "object", @@ -148589,6 +148701,34 @@ }, "nullable": true }, + "Entitlements": { + "type": "array", + "items": { + "type": "object", + "description": "Entitlement including a specific set of access.", + "properties": { + "type": { + "type": "string", + "description": "Entitlement's DTO type.", + "enum": [ + "ENTITLEMENT" + ], + "example": "ENTITLEMENT" + }, + "id": { + "type": "string", + "description": "Entitlement's ID.", + "example": "2c91809773dee32014e13e122092014e" + }, + "name": { + "type": "string", + "description": "Entitlement's display name.", + "example": "CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local" + } + } + }, + "nullable": true + }, "membership": { "nullable": true, "type": "object", @@ -150493,6 +150633,582 @@ ] } }, + "/roles/{id}/entitlements": { + "get": { + "operationId": "getRoleEntitlements", + "tags": [ + "Roles" + ], + "summary": "List role's Entitlements", + "description": "This API lists the Entitlements associated with a given role.\n\nA token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API.", + "parameters": [ + { + "name": "id", + "in": "path", + "description": "ID of the containing role", + "required": true, + "schema": { + "type": "string", + "example": "2c91808a7813090a017814121919ecca" + } + }, + { + "in": "query", + "name": "limit", + "description": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": 250, + "schema": { + "type": "integer", + "format": "int32", + "minimum": 0, + "maximum": 250, + "default": 250 + } + }, + { + "in": "query", + "name": "offset", + "description": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": 0, + "schema": { + "type": "integer", + "format": "int32", + "minimum": 0, + "default": 0 + } + }, + { + "in": "query", + "name": "count", + "description": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": true, + "schema": { + "type": "boolean", + "default": false + } + }, + { + "in": "query", + "name": "filters", + "schema": { + "type": "string" + }, + "description": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "example": "attribute eq \"memberOf\"", + "required": false + }, + { + "in": "query", + "name": "sorters", + "schema": { + "type": "string", + "format": "comma-separated" + }, + "description": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **name, attribute, value, created, modified**", + "example": "name,-modified", + "required": false + } + ], + "responses": { + "200": { + "description": "List of Entitlements", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "The entitlement id", + "example": "2c91808874ff91550175097daaec161c" + }, + "name": { + "type": "string", + "description": "The entitlement name", + "example": "LauncherTest2" + }, + "created": { + "type": "string", + "description": "Time when the entitlement was created", + "format": "date-time", + "example": "2020-10-08T18:33:52.029Z" + }, + "modified": { + "type": "string", + "description": "Time when the entitlement was last modified", + "format": "date-time", + "example": "2020-10-08T18:33:52.029Z" + }, + "attribute": { + "type": "string", + "description": "The entitlement attribute name", + "example": "memberOf" + }, + "value": { + "type": "string", + "description": "The value of the entitlement", + "example": "CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local" + }, + "sourceSchemaObjectType": { + "type": "string", + "description": "The object type of the entitlement from the source schema", + "example": "group" + }, + "privileged": { + "type": "boolean", + "default": false, + "description": "True if the entitlement is privileged", + "example": true + }, + "cloudGoverned": { + "type": "boolean", + "default": false, + "description": "True if the entitlement is cloud governed", + "example": true + }, + "description": { + "type": "string", + "description": "The description of the entitlement", + "example": "CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local" + }, + "requestable": { + "type": "boolean", + "default": false, + "description": "True if the entitlement is requestable", + "example": true + }, + "attributes": { + "type": "object", + "description": "A map of free-form key-value pairs from the source system", + "example": { + "fieldName": "fieldValue" + }, + "additionalProperties": true + }, + "source": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "The source ID", + "example": "2c9180827ca885d7017ca8ce28a000eb" + }, + "type": { + "type": "string", + "description": "The source type, will always be \"SOURCE\"", + "example": "SOURCE" + }, + "name": { + "type": "string", + "description": "The source name", + "example": "ODS-AD-Source" + } + } + }, + "owner": { + "type": "object", + "description": "Simplified DTO for the owner object of the entitlement", + "properties": { + "id": { + "type": "string", + "description": "The owner id for the entitlement", + "example": "2a2fdacca5e345f18bf7970cfbb8fec2" + }, + "name": { + "type": "string", + "description": "The owner name for the entitlement", + "example": "identity 1" + }, + "type": { + "type": "string", + "enum": [ + "IDENTITY" + ], + "description": "The type of the owner. Initially only type IDENTITY is supported", + "example": "IDENTITY" + } + } + }, + "directPermissions": { + "type": "array", + "items": { + "type": "object", + "description": "Simplified DTO for the Permission objects stored in SailPoint's database. The data is aggregated from customer systems and is free-form, so its appearance can vary largely between different clients/customers.", + "properties": { + "rights": { + "type": "array", + "description": "All the rights (e.g. actions) that this permission allows on the target", + "readOnly": true, + "items": { + "type": "string", + "example": "SELECT" + } + }, + "target": { + "type": "string", + "description": "The target the permission would grants rights on.", + "readOnly": true, + "example": "SYS.GV_$TRANSACTION" + } + } + } + }, + "segments": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true, + "description": "List of IDs of segments, if any, to which this Entitlement is assigned.", + "example": [ + "f7b1b8a3-5fed-4fd4-ad29-82014e137e19", + "29cb6c06-1da8-43ea-8be4-b3125f248f2a" + ] + }, + "manuallyUpdatedFields": { + "description": "Object contains entitlement manually updated fields. Field value is true if is was updated manually via entitlement import csv or patch endpoint. Field value is false if that property value has not been changed after first entitlement aggregation. Values for all manually updatable fields must be specified. For now only two entitlement fields support this: DISPLAY_NAME and DESCRIPTION.", + "example": { + "DISPLAY_NAME": true, + "DESCRIPTION": true + }, + "type": "object", + "properties": { + "DISPLAY_NAME": { + "type": "boolean", + "default": false, + "description": "True if the entitlements name was updated manually via entitlement import csv or patch endpoint. False means that property value has not been change after first entitlement aggregation.\nField refers to [Entitlement response schema](https://developer.sailpoint.com/idn/api/beta/get-entitlement) > `name` property.", + "example": true + }, + "DESCRIPTION": { + "type": "boolean", + "default": false, + "description": "True if the entitlement description was updated manually via entitlement import csv or patch endpoint. False means that property value has not been change after first entitlement aggregation.\nField refers to [Entitlement response schema](https://developer.sailpoint.com/idn/api/beta/get-entitlement) > `description` property.", + "example": true + } + } + } + } + } + } + } + } + }, + "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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:role-unchecked:read", + "idn:role-unchecked:manage", + "idn:role-checked:manage", + "idn:role-checked:read" + ] + } + ] + } + }, "/segments": { "post": { "operationId": "createSegment", @@ -187157,688 +187873,6 @@ } } }, - "/task-status": { - "get": { - "tags": [ - "Task Management" - ], - "summary": "Retrieve a task status list.", - "description": "Get a TaskStatus list.", - "operationId": "getTaskStatusList", - "parameters": [ - { - "in": "query", - "name": "limit", - "description": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "required": false, - "example": 250, - "schema": { - "type": "integer", - "format": "int32", - "minimum": 0, - "maximum": 250, - "default": 250 - } - }, - { - "in": "query", - "name": "offset", - "description": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "required": false, - "example": 0, - "schema": { - "type": "integer", - "format": "int32", - "minimum": 0, - "default": 0 - } - }, - { - "in": "query", - "name": "count", - "description": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "required": false, - "example": true, - "schema": { - "type": "boolean", - "default": false - } - }, - { - "in": "query", - "name": "filters", - "schema": { - "type": "string" - }, - "example": "completionStatus eq \"Success\"", - "required": false, - "description": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**sourceId**: *eq, in*\n\n**completionStatus**: *eq, in*\n\n**type**: *eq, in*" - }, - { - "in": "query", - "name": "sorters", - "schema": { - "type": "string", - "format": "comma-separated" - }, - "example": "-created", - "required": false, - "description": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **created**" - } - ], - "responses": { - "200": { - "description": "Responds with a TaskStatus for the task with the given task ID.", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "description": "Details and current status of a specific task", - "required": [ - "id", - "type", - "uniqueName", - "description", - "parentName", - "attributes", - "created", - "modified", - "launched", - "launcher", - "completed", - "completionStatus", - "messages", - "progress", - "percentComplete", - "returns" - ], - "type": "object", - "properties": { - "id": { - "description": "System-generated unique ID of the task this TaskStatus represents", - "type": "string", - "example": "id12345" - }, - "type": { - "description": "Type of task this TaskStatus represents", - "type": "string", - "enum": [ - "QUARTZ", - "QPOC", - "QUEUED_TASK" - ], - "example": "QUARTZ" - }, - "uniqueName": { - "description": "Name of the task this TaskStatus represents", - "type": "string", - "example": "Big Task" - }, - "description": { - "description": "Description of the task this TaskStatus represents", - "type": "string", - "example": "A Really Big Task" - }, - "parentName": { - "description": "Name of the parent of the task this TaskStatus represents", - "type": "string", - "example": "Parent Task" - }, - "launcher": { - "description": "Service to execute the task this TaskStatus represents", - "type": "string", - "example": "sweep" - }, - "created": { - "description": "Creation date of the task this TaskStatus represents", - "type": "string", - "format": "date-time", - "example": "2020-07-11T21:23:15.000Z" - }, - "modified": { - "description": "Last modification date of the task this TaskStatus represents", - "type": "string", - "format": "date-time", - "example": "2020-07-11T21:23:15.000Z" - }, - "launched": { - "description": "Launch date of the task this TaskStatus represents", - "type": "string", - "format": "date-time", - "example": "2020-07-11T21:23:15.000Z" - }, - "completed": { - "description": "Completion date of the task this TaskStatus represents", - "type": "string", - "format": "date-time", - "example": "2020-07-11T21:23:15.000Z" - }, - "completionStatus": { - "description": "Completion status of the task this TaskStatus represents", - "type": "string", - "enum": [ - "Success", - "Warning", - "Error", - "Terminated", - "TempError" - ], - "example": "Success" - }, - "messages": { - "description": "Messages associated with the task this TaskStatus represents", - "type": "array", - "items": { - "description": "TaskStatus Message", - "required": [ - "key", - "localizedText", - "type", - "parameters" - ], - "type": "object", - "properties": { - "type": { - "description": "Type of the message", - "type": "string", - "enum": [ - "INFO", - "WARN", - "ERROR" - ], - "example": "INFO" - }, - "localizedText": { - "description": "Localized form of the message", - "type": "object", - "required": [ - "locale", - "message" - ], - "properties": { - "locale": { - "description": "Message locale", - "type": "string", - "example": "An error has occurred!" - }, - "message": { - "description": "Message text", - "type": "string", - "example": "Error has occurred!" - } - } - }, - "key": { - "description": "Key of the message", - "type": "string", - "example": "akey" - }, - "parameters": { - "description": "Message parameters for internationalization", - "type": "array", - "items": { - "type": "object" - }, - "example": [ - { - "name": "value" - } - ] - } - } - } - }, - "returns": { - "description": "Return values from the task this TaskStatus represents", - "type": "array", - "items": { - "description": "Task return details", - "required": [ - "name", - "attributeName" - ], - "type": "object", - "properties": { - "name": { - "description": "Display name of the TaskReturnDetails", - "type": "string", - "example": "label" - }, - "attributeName": { - "description": "Attribute the TaskReturnDetails is for", - "type": "string", - "example": "identityCount" - } - } - } - }, - "attributes": { - "description": "Attributes of the task this TaskStatus represents", - "type": "object", - "additionalProperties": true, - "example": { - "identityCount": 0 - } - }, - "progress": { - "description": "Current progress of the task this TaskStatus represents", - "type": "string", - "example": "Started" - }, - "percentComplete": { - "description": "Current percentage completion of the task this TaskStatus represents", - "type": "integer", - "example": 100 - } - } - } - } - } - } - }, - "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" - }, - "localeOrigin": { - "type": "string", - "enum": [ - "DEFAULT", - "REQUEST" - ], - "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", - "example": "DEFAULT" - }, - "text": { - "type": "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" - }, - "localeOrigin": { - "type": "string", - "enum": [ - "DEFAULT", - "REQUEST" - ], - "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", - "example": "DEFAULT" - }, - "text": { - "type": "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" - }, - "localeOrigin": { - "type": "string", - "enum": [ - "DEFAULT", - "REQUEST" - ], - "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", - "example": "DEFAULT" - }, - "text": { - "type": "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" - }, - "localeOrigin": { - "type": "string", - "enum": [ - "DEFAULT", - "REQUEST" - ], - "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", - "example": "DEFAULT" - }, - "text": { - "type": "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" - }, - "localeOrigin": { - "type": "string", - "enum": [ - "DEFAULT", - "REQUEST" - ], - "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", - "example": "DEFAULT" - }, - "text": { - "type": "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" - }, - "localeOrigin": { - "type": "string", - "enum": [ - "DEFAULT", - "REQUEST" - ], - "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", - "example": "DEFAULT" - }, - "text": { - "type": "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" - }, - "localeOrigin": { - "type": "string", - "enum": [ - "DEFAULT", - "REQUEST" - ], - "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", - "example": "DEFAULT" - }, - "text": { - "type": "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" - }, - "localeOrigin": { - "type": "string", - "enum": [ - "DEFAULT", - "REQUEST" - ], - "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", - "example": "DEFAULT" - }, - "text": { - "type": "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:task-management:read" - ] - } - ] - } - }, "/task-status/{id}": { "get": { "tags": [ @@ -189012,6 +189046,688 @@ ] } }, + "/task-status": { + "get": { + "tags": [ + "Task Management" + ], + "summary": "Retrieve a task status list.", + "description": "Get a TaskStatus list.", + "operationId": "getTaskStatusList", + "parameters": [ + { + "in": "query", + "name": "limit", + "description": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": 250, + "schema": { + "type": "integer", + "format": "int32", + "minimum": 0, + "maximum": 250, + "default": 250 + } + }, + { + "in": "query", + "name": "offset", + "description": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": 0, + "schema": { + "type": "integer", + "format": "int32", + "minimum": 0, + "default": 0 + } + }, + { + "in": "query", + "name": "count", + "description": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": true, + "schema": { + "type": "boolean", + "default": false + } + }, + { + "in": "query", + "name": "filters", + "schema": { + "type": "string" + }, + "example": "completionStatus eq \"Success\"", + "required": false, + "description": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**sourceId**: *eq, in*\n\n**completionStatus**: *eq, in*\n\n**type**: *eq, in*" + }, + { + "in": "query", + "name": "sorters", + "schema": { + "type": "string", + "format": "comma-separated" + }, + "example": "-created", + "required": false, + "description": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **created**" + } + ], + "responses": { + "200": { + "description": "Responds with a TaskStatus for the task with the given task ID.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "description": "Details and current status of a specific task", + "required": [ + "id", + "type", + "uniqueName", + "description", + "parentName", + "attributes", + "created", + "modified", + "launched", + "launcher", + "completed", + "completionStatus", + "messages", + "progress", + "percentComplete", + "returns" + ], + "type": "object", + "properties": { + "id": { + "description": "System-generated unique ID of the task this TaskStatus represents", + "type": "string", + "example": "id12345" + }, + "type": { + "description": "Type of task this TaskStatus represents", + "type": "string", + "enum": [ + "QUARTZ", + "QPOC", + "QUEUED_TASK" + ], + "example": "QUARTZ" + }, + "uniqueName": { + "description": "Name of the task this TaskStatus represents", + "type": "string", + "example": "Big Task" + }, + "description": { + "description": "Description of the task this TaskStatus represents", + "type": "string", + "example": "A Really Big Task" + }, + "parentName": { + "description": "Name of the parent of the task this TaskStatus represents", + "type": "string", + "example": "Parent Task" + }, + "launcher": { + "description": "Service to execute the task this TaskStatus represents", + "type": "string", + "example": "sweep" + }, + "created": { + "description": "Creation date of the task this TaskStatus represents", + "type": "string", + "format": "date-time", + "example": "2020-07-11T21:23:15.000Z" + }, + "modified": { + "description": "Last modification date of the task this TaskStatus represents", + "type": "string", + "format": "date-time", + "example": "2020-07-11T21:23:15.000Z" + }, + "launched": { + "description": "Launch date of the task this TaskStatus represents", + "type": "string", + "format": "date-time", + "example": "2020-07-11T21:23:15.000Z" + }, + "completed": { + "description": "Completion date of the task this TaskStatus represents", + "type": "string", + "format": "date-time", + "example": "2020-07-11T21:23:15.000Z" + }, + "completionStatus": { + "description": "Completion status of the task this TaskStatus represents", + "type": "string", + "enum": [ + "Success", + "Warning", + "Error", + "Terminated", + "TempError" + ], + "example": "Success" + }, + "messages": { + "description": "Messages associated with the task this TaskStatus represents", + "type": "array", + "items": { + "description": "TaskStatus Message", + "required": [ + "key", + "localizedText", + "type", + "parameters" + ], + "type": "object", + "properties": { + "type": { + "description": "Type of the message", + "type": "string", + "enum": [ + "INFO", + "WARN", + "ERROR" + ], + "example": "INFO" + }, + "localizedText": { + "description": "Localized form of the message", + "type": "object", + "required": [ + "locale", + "message" + ], + "properties": { + "locale": { + "description": "Message locale", + "type": "string", + "example": "An error has occurred!" + }, + "message": { + "description": "Message text", + "type": "string", + "example": "Error has occurred!" + } + } + }, + "key": { + "description": "Key of the message", + "type": "string", + "example": "akey" + }, + "parameters": { + "description": "Message parameters for internationalization", + "type": "array", + "items": { + "type": "object" + }, + "example": [ + { + "name": "value" + } + ] + } + } + } + }, + "returns": { + "description": "Return values from the task this TaskStatus represents", + "type": "array", + "items": { + "description": "Task return details", + "required": [ + "name", + "attributeName" + ], + "type": "object", + "properties": { + "name": { + "description": "Display name of the TaskReturnDetails", + "type": "string", + "example": "label" + }, + "attributeName": { + "description": "Attribute the TaskReturnDetails is for", + "type": "string", + "example": "identityCount" + } + } + } + }, + "attributes": { + "description": "Attributes of the task this TaskStatus represents", + "type": "object", + "additionalProperties": true, + "example": { + "identityCount": 0 + } + }, + "progress": { + "description": "Current progress of the task this TaskStatus represents", + "type": "string", + "example": "Started" + }, + "percentComplete": { + "description": "Current percentage completion of the task this TaskStatus represents", + "type": "integer", + "example": 100 + } + } + } + } + } + } + }, + "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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:task-management:read" + ] + } + ] + } + }, "/task-status/pending-tasks": { "get": { "tags": [ diff --git a/dereferenced/deref-sailpoint-api.v3.json b/dereferenced/deref-sailpoint-api.v3.json index ccfa9a6..345be4e 100644 --- a/dereferenced/deref-sailpoint-api.v3.json +++ b/dereferenced/deref-sailpoint-api.v3.json @@ -49,6 +49,10 @@ "name": "Access Requests", "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" }, + { + "name": "Account Usages", + "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" + }, { "name": "Accounts", "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" @@ -61,6 +65,10 @@ "name": "Auth User", "description": "Authentication service user retrieval and user capabilities update" }, + { + "name": "Branding", + "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" + }, { "name": "Certification Campaigns", "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" @@ -139,7 +147,7 @@ }, { "name": "Saved Search", - "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" + "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" }, { "name": "Scheduled Search", @@ -147,11 +155,11 @@ }, { "name": "Search", - "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" + "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" }, { "name": "Segments", - "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" + "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" }, { "name": "Service Desk Integration", @@ -159,15 +167,19 @@ }, { "name": "SOD Policy", - "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" + "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" }, { "name": "SOD Violations", "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" }, + { + "name": "Source Usages", + "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" + }, { "name": "Sources", - "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" + "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" }, { "name": "Tagged Objects", @@ -180,14 +192,6 @@ { "name": "Work Items", "description": "Use this API to implement work item functionality. \nWith this functionality in place, users can manage their work items (tasks). \n\nWork items refer to the tasks users see in IdentityNow's Task Manager. \nThey can see the pending work items they need to complete, as well as the work items they have already completed. \nTask Manager lists the work items along with the involved sources, identities, accounts, and the timestamp when the work item was created. \nFor example, a user may see a pending 'Create an Account' work item for the identity Fred.Astaire in GitHub for Fred's GitHub account, fred-astaire-sp. \nOnce the user completes the work item, the work item will be listed with his or her other completed work items. \n\nTo complete work items, users can use their dashboards and select the 'My Tasks' widget. \nThe widget will list any work items they need to complete, and they can select the work item from the list to review its details. \nWhen they complete the work item, they can select 'Mark Complete' to add it to their list of completed work items. \n\nRefer to [Task Manager](https://documentation.sailpoint.com/saas/user-help/task_manager.html) for more information about work items, including the different types of work items users may need to complete.\n" - }, - { - "name": "Source Usages", - "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" - }, - { - "name": "Account Usages", - "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" } ], "paths": { @@ -21560,6 +21564,2261 @@ } } }, + "/brandings": { + "get": { + "operationId": "getBrandingList", + "tags": [ + "Branding" + ], + "summary": "List of branding items", + "description": "This API endpoint returns a list of branding items.\n\nA token with API, ORG_ADMIN authority is required to call this API.", + "security": [ + { + "UserContextAuth": [ + "idn:branding:read" + ] + } + ], + "responses": { + "200": { + "description": "A list of branding items.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "name of branding item", + "example": "default" + }, + "productName": { + "type": "string", + "description": "product name", + "example": "product name", + "nullable": true + }, + "actionButtonColor": { + "type": "string", + "description": "hex value of color for action button", + "example": "0074D9", + "nullable": true + }, + "activeLinkColor": { + "type": "string", + "description": "hex value of color for link", + "example": "011E69", + "nullable": true + }, + "navigationColor": { + "type": "string", + "description": "hex value of color for navigation bar", + "example": "011E69", + "nullable": true + }, + "emailFromAddress": { + "type": "string", + "description": "email from address", + "example": "no-reply@sailpoint.com", + "nullable": true + }, + "standardLogoURL": { + "type": "string", + "description": "url to standard logo", + "example": "", + "nullable": true + }, + "loginInformationalMessage": { + "type": "string", + "description": "login information message", + "example": "", + "nullable": true + } + } + } + } + } + } + }, + "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + }, + "post": { + "operationId": "createBrandingItem", + "tags": [ + "Branding" + ], + "summary": "Create a branding item", + "description": "This API endpoint creates a branding item.\nA token with API, ORG_ADMIN authority is required to call this API.", + "requestBody": { + "required": true, + "content": { + "multipart/form-data": { + "schema": { + "type": "object", + "required": [ + "name", + "productName" + ], + "properties": { + "name": { + "type": "string", + "description": "name of branding item", + "example": "custom-branding-item" + }, + "productName": { + "type": "string", + "description": "product name", + "example": "product name", + "nullable": true + }, + "actionButtonColor": { + "type": "string", + "description": "hex value of color for action button", + "example": "0074D9" + }, + "activeLinkColor": { + "type": "string", + "description": "hex value of color for link", + "example": "011E69" + }, + "navigationColor": { + "type": "string", + "description": "hex value of color for navigation bar", + "example": "011E69" + }, + "emailFromAddress": { + "type": "string", + "description": "email from address", + "example": "no-reply@sailpoint.com" + }, + "loginInformationalMessage": { + "type": "string", + "description": "login information message", + "example": "" + }, + "fileStandard": { + "type": "string", + "format": "binary", + "description": "png file with logo", + "example": "\\x00\\x00\\x00\\x02" + } + } + } + } + } + }, + "security": [ + { + "UserContextAuth": [ + "idn:branding:write" + ] + } + ], + "responses": { + "201": { + "description": "Branding item created", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "name of branding item", + "example": "default" + }, + "productName": { + "type": "string", + "description": "product name", + "example": "product name", + "nullable": true + }, + "actionButtonColor": { + "type": "string", + "description": "hex value of color for action button", + "example": "0074D9", + "nullable": true + }, + "activeLinkColor": { + "type": "string", + "description": "hex value of color for link", + "example": "011E69", + "nullable": true + }, + "navigationColor": { + "type": "string", + "description": "hex value of color for navigation bar", + "example": "011E69", + "nullable": true + }, + "emailFromAddress": { + "type": "string", + "description": "email from address", + "example": "no-reply@sailpoint.com", + "nullable": true + }, + "standardLogoURL": { + "type": "string", + "description": "url to standard logo", + "example": "", + "nullable": true + }, + "loginInformationalMessage": { + "type": "string", + "description": "login information message", + "example": "", + "nullable": true + } + } + } + } + } + }, + "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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." + } + ] + } + } + } + } + } + } + } + } + }, + "/brandings/{name}": { + "get": { + "operationId": "getBranding", + "tags": [ + "Branding" + ], + "summary": "Get a branding item", + "description": "This API endpoint retrieves information for an existing branding item by name.\nA token with API, ORG_ADMIN authority is required to call this API.", + "security": [ + { + "UserContextAuth": [ + "idn:branding:read" + ] + } + ], + "parameters": [ + { + "in": "path", + "name": "name", + "schema": { + "type": "string" + }, + "required": true, + "description": "The name of the branding item to be retrieved", + "example": "default" + } + ], + "responses": { + "200": { + "description": "A branding item object", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "name of branding item", + "example": "default" + }, + "productName": { + "type": "string", + "description": "product name", + "example": "product name", + "nullable": true + }, + "actionButtonColor": { + "type": "string", + "description": "hex value of color for action button", + "example": "0074D9", + "nullable": true + }, + "activeLinkColor": { + "type": "string", + "description": "hex value of color for link", + "example": "011E69", + "nullable": true + }, + "navigationColor": { + "type": "string", + "description": "hex value of color for navigation bar", + "example": "011E69", + "nullable": true + }, + "emailFromAddress": { + "type": "string", + "description": "email from address", + "example": "no-reply@sailpoint.com", + "nullable": true + }, + "standardLogoURL": { + "type": "string", + "description": "url to standard logo", + "example": "", + "nullable": true + }, + "loginInformationalMessage": { + "type": "string", + "description": "login information message", + "example": "", + "nullable": true + } + } + } + } + } + }, + "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + }, + "put": { + "operationId": "setBrandingItem", + "tags": [ + "Branding" + ], + "summary": "Update a branding item", + "description": "This API endpoint updates information for an existing branding item.\nA token with API, ORG_ADMIN authority is required to call this API.", + "parameters": [ + { + "in": "path", + "name": "name", + "schema": { + "type": "string" + }, + "required": true, + "description": "The name of the branding item to be retrieved", + "example": "default" + } + ], + "requestBody": { + "required": true, + "content": { + "multipart/form-data": { + "schema": { + "type": "object", + "required": [ + "name", + "productName" + ], + "properties": { + "name": { + "type": "string", + "description": "name of branding item", + "example": "custom-branding-item" + }, + "productName": { + "type": "string", + "description": "product name", + "example": "product name", + "nullable": true + }, + "actionButtonColor": { + "type": "string", + "description": "hex value of color for action button", + "example": "0074D9" + }, + "activeLinkColor": { + "type": "string", + "description": "hex value of color for link", + "example": "011E69" + }, + "navigationColor": { + "type": "string", + "description": "hex value of color for navigation bar", + "example": "011E69" + }, + "emailFromAddress": { + "type": "string", + "description": "email from address", + "example": "no-reply@sailpoint.com" + }, + "loginInformationalMessage": { + "type": "string", + "description": "login information message", + "example": "" + }, + "fileStandard": { + "type": "string", + "format": "binary", + "description": "png file with logo", + "example": "\\x00\\x00\\x00\\x02" + } + } + } + } + } + }, + "security": [ + { + "UserContextAuth": [ + "idn:branding:write" + ] + } + ], + "responses": { + "200": { + "description": "Branding item updated", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "name of branding item", + "example": "default" + }, + "productName": { + "type": "string", + "description": "product name", + "example": "product name", + "nullable": true + }, + "actionButtonColor": { + "type": "string", + "description": "hex value of color for action button", + "example": "0074D9", + "nullable": true + }, + "activeLinkColor": { + "type": "string", + "description": "hex value of color for link", + "example": "011E69", + "nullable": true + }, + "navigationColor": { + "type": "string", + "description": "hex value of color for navigation bar", + "example": "011E69", + "nullable": true + }, + "emailFromAddress": { + "type": "string", + "description": "email from address", + "example": "no-reply@sailpoint.com", + "nullable": true + }, + "standardLogoURL": { + "type": "string", + "description": "url to standard logo", + "example": "", + "nullable": true + }, + "loginInformationalMessage": { + "type": "string", + "description": "login information message", + "example": "", + "nullable": true + } + } + } + } + } + }, + "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + }, + "delete": { + "operationId": "deleteBranding", + "tags": [ + "Branding" + ], + "summary": "Delete a branding item", + "description": "This API endpoint delete information for an existing branding item by name.\nA token with API, ORG_ADMIN authority is required to call this API.", + "security": [ + { + "UserContextAuth": [ + "idn:branding:write" + ] + } + ], + "parameters": [ + { + "in": "path", + "name": "name", + "schema": { + "type": "string" + }, + "required": true, + "description": "The name of the branding item to be deleted", + "example": "default" + } + ], + "responses": { + "204": { + "description": "No content - indicates the request was successful but there is no content to be returned in the response." + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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" + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST" + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT" + }, + "text": { + "type": "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." + } + ] + } + } + } + } + } + } + } + } + }, "/campaigns": { "get": { "operationId": "getActiveCampaigns", @@ -83566,6 +85825,34 @@ }, "nullable": true }, + "Entitlements": { + "type": "array", + "items": { + "type": "object", + "description": "Entitlement including a specific set of access.", + "properties": { + "type": { + "type": "string", + "description": "Entitlement's DTO type.", + "enum": [ + "ENTITLEMENT" + ], + "example": "ENTITLEMENT" + }, + "id": { + "type": "string", + "description": "Entitlement's ID.", + "example": "2c91809773dee32014e13e122092014e" + }, + "name": { + "type": "string", + "description": "Entitlement's display name.", + "example": "CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local" + } + } + }, + "nullable": true + }, "membership": { "nullable": true, "type": "object", @@ -84375,6 +86662,34 @@ }, "nullable": true }, + "Entitlements": { + "type": "array", + "items": { + "type": "object", + "description": "Entitlement including a specific set of access.", + "properties": { + "type": { + "type": "string", + "description": "Entitlement's DTO type.", + "enum": [ + "ENTITLEMENT" + ], + "example": "ENTITLEMENT" + }, + "id": { + "type": "string", + "description": "Entitlement's ID.", + "example": "2c91809773dee32014e13e122092014e" + }, + "name": { + "type": "string", + "description": "Entitlement's display name.", + "example": "CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local" + } + } + }, + "nullable": true + }, "membership": { "nullable": true, "type": "object", @@ -84867,6 +87182,34 @@ }, "nullable": true }, + "Entitlements": { + "type": "array", + "items": { + "type": "object", + "description": "Entitlement including a specific set of access.", + "properties": { + "type": { + "type": "string", + "description": "Entitlement's DTO type.", + "enum": [ + "ENTITLEMENT" + ], + "example": "ENTITLEMENT" + }, + "id": { + "type": "string", + "description": "Entitlement's ID.", + "example": "2c91809773dee32014e13e122092014e" + }, + "name": { + "type": "string", + "description": "Entitlement's display name.", + "example": "CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local" + } + } + }, + "nullable": true + }, "membership": { "nullable": true, "type": "object", @@ -85688,6 +88031,34 @@ }, "nullable": true }, + "Entitlements": { + "type": "array", + "items": { + "type": "object", + "description": "Entitlement including a specific set of access.", + "properties": { + "type": { + "type": "string", + "description": "Entitlement's DTO type.", + "enum": [ + "ENTITLEMENT" + ], + "example": "ENTITLEMENT" + }, + "id": { + "type": "string", + "description": "Entitlement's ID.", + "example": "2c91809773dee32014e13e122092014e" + }, + "name": { + "type": "string", + "description": "Entitlement's display name.", + "example": "CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local" + } + } + }, + "nullable": true + }, "membership": { "nullable": true, "type": "object", @@ -86684,6 +89055,34 @@ }, "nullable": true }, + "Entitlements": { + "type": "array", + "items": { + "type": "object", + "description": "Entitlement including a specific set of access.", + "properties": { + "type": { + "type": "string", + "description": "Entitlement's DTO type.", + "enum": [ + "ENTITLEMENT" + ], + "example": "ENTITLEMENT" + }, + "id": { + "type": "string", + "description": "Entitlement's ID.", + "example": "2c91809773dee32014e13e122092014e" + }, + "name": { + "type": "string", + "description": "Entitlement's display name.", + "example": "CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local" + } + } + }, + "nullable": true + }, "membership": { "nullable": true, "type": "object", @@ -186630,6 +189029,109 @@ ] } } + }, + "BrandingItem": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "name of branding item", + "example": "default" + }, + "productName": { + "type": "string", + "description": "product name", + "example": "product name", + "nullable": true + }, + "actionButtonColor": { + "type": "string", + "description": "hex value of color for action button", + "example": "0074D9", + "nullable": true + }, + "activeLinkColor": { + "type": "string", + "description": "hex value of color for link", + "example": "011E69", + "nullable": true + }, + "navigationColor": { + "type": "string", + "description": "hex value of color for navigation bar", + "example": "011E69", + "nullable": true + }, + "emailFromAddress": { + "type": "string", + "description": "email from address", + "example": "no-reply@sailpoint.com", + "nullable": true + }, + "standardLogoURL": { + "type": "string", + "description": "url to standard logo", + "example": "", + "nullable": true + }, + "loginInformationalMessage": { + "type": "string", + "description": "login information message", + "example": "", + "nullable": true + } + } + }, + "BrandingItemCreate": { + "type": "object", + "required": [ + "name", + "productName" + ], + "properties": { + "name": { + "type": "string", + "description": "name of branding item", + "example": "custom-branding-item" + }, + "productName": { + "type": "string", + "description": "product name", + "example": "product name", + "nullable": true + }, + "actionButtonColor": { + "type": "string", + "description": "hex value of color for action button", + "example": "0074D9" + }, + "activeLinkColor": { + "type": "string", + "description": "hex value of color for link", + "example": "011E69" + }, + "navigationColor": { + "type": "string", + "description": "hex value of color for navigation bar", + "example": "011E69" + }, + "emailFromAddress": { + "type": "string", + "description": "email from address", + "example": "no-reply@sailpoint.com" + }, + "loginInformationalMessage": { + "type": "string", + "description": "login information message", + "example": "" + }, + "fileStandard": { + "type": "string", + "format": "binary", + "description": "png file with logo", + "example": "\\x00\\x00\\x00\\x02" + } + } } } } diff --git a/dereferenced/deref-sailpoint-api.v3.yaml b/dereferenced/deref-sailpoint-api.v3.yaml index b88d60b..f3e1bed 100644 --- a/dereferenced/deref-sailpoint-api.v3.yaml +++ b/dereferenced/deref-sailpoint-api.v3.yaml @@ -96,6 +96,11 @@ tags: They can use the My Requests tab under Request Center to track and/or cancel the requests. Refer to [Requesting Access](https://documentation.sailpoint.com/saas/user-help/requests/requesting_access.html) for more information about access requests. + - name: Account Usages + description: | + Use this API to implement account usage insight functionality. + With this functionality in place, administrators can gather information and insights about how their tenants' source accounts are being used. + This allows organizations to get the information they need to start optimizing and securing source account usage. - name: Accounts description: | Use this API to implement and customize account functionality. @@ -162,6 +167,11 @@ tags: Refer to [Account Activity](https://documentation.sailpoint.com/saas/help/search/index.html#account-activity) for more information about account activities. - name: Auth User description: Authentication service user retrieval and user capabilities update + - name: Branding + description: | + Use this API to implement and customize branding functionality. + With this functionality in place, administrators can get list of existing branding items, create new branding and configure them for use throughout IdentityNow. + It allows to customise color of navigation bar, action buttons, logo and emailFromAddress. - name: Certification Campaigns description: | Use this API to implement certification campaign functionality. @@ -748,6 +758,11 @@ tags: This second option is a good way to prevent SOD violations from triggering at all. Refer to [Handling Policy Violations](https://documentation.sailpoint.com/saas/help/sod/policy-violations.html) for more information about SOD policy violations. + - name: Source Usages + description: | + Use this API to implement source usage insight functionality. + With this functionality in place, administrators can gather information and insights about how their tenants' sources are being used. + This allows organizations to get the information they need to start optimizing and securing source usage. - name: Sources description: | Use this API to implement and customize source functionality. @@ -886,21 +901,6 @@ tags: When they complete the work item, they can select 'Mark Complete' to add it to their list of completed work items. Refer to [Task Manager](https://documentation.sailpoint.com/saas/user-help/task_manager.html) for more information about work items, including the different types of work items users may need to complete. - - name: Source Usages - description: | - Use this API to implement source usage insight functionality. - With this functionality in place, administrators can gather information and insights about how their tenants' sources are being used. - This allows organizations to get the information they need to start optimizing and securing source usage. - - name: Account Usages - description: | - Use this API to implement account usage insight functionality. - With this functionality in place, administrators can gather information and insights about how their tenants' source accounts are being used. - This allows organizations to get the information they need to start optimizing and securing source account usage. - - name: Branding - description: | - Use this API to implement and customize branding functionality. - With this functionality in place, administrators can get list of existing branding items, create new branding and configure them for use throughout IdentityNow. - It allows to customise color of navigation bar, action buttons, logo and emailFromAddress. paths: /access-profiles: get: diff --git a/postman-script/updateByFolder/index.js b/postman-script/updateByFolder/index.js index 336d84c..3d7d88f 100644 --- a/postman-script/updateByFolder/index.js +++ b/postman-script/updateByFolder/index.js @@ -33,7 +33,7 @@ const release = async () => { privateRemoteCollectionIdUid = postmanCollections[args[2].toLowerCase() + 'Uid'] mainPublicCollectionId = postmanCollections[args[2].toLowerCase() + 'Public'] localCollection = JSON.parse(fs.readFileSync(postmanCollections[args[2].toLowerCase() + 'Location'], 'utf8')) - SpecCollection = JSON.parse(fs.readFileSync(postmanCollections[args[2].toLowerCase() + 'SpecLocation'], 'utf8')) + //SpecCollection = JSON.parse(fs.readFileSync(postmanCollections[args[2].toLowerCase() + 'SpecLocation'], 'utf8')) let remoteCollection = await refreshRemoteCollection(privateRemoteCollectionId) diff --git a/postman/collections/sailpoint-api-beta.json b/postman/collections/sailpoint-api-beta.json index a9aeb65..25ea763 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": "dec9f42b-9931-4c3e-a2c2-0be97c700f83", + "id": "dcfdaf84-e385-4570-9d5e-3858aaf5ffec", "name": "List Access Profiles", "request": { "name": "List Access Profiles", @@ -28,7 +28,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -55,7 +55,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -64,7 +64,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"SailPoint Support\"" }, { "disabled": true, @@ -73,7 +73,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -82,7 +82,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d" }, { "disabled": true, @@ -91,7 +91,7 @@ "type": "text/plain" }, "key": "include-unsegmented", - "value": "true" + "value": "false" } ], "variable": [] @@ -107,7 +107,7 @@ }, "response": [ { - "id": "187e0503-e107-457a-bfe2-ed7586ff9c0a", + "id": "5a0b02e6-7bf5-4456-92ec-4ae4baea9e54", "name": "List of Access Profiles", "originalRequest": { "url": { @@ -125,7 +125,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -152,7 +152,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -161,7 +161,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"SailPoint Support\"" }, { "disabled": true, @@ -170,7 +170,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -179,7 +179,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d" }, { "disabled": true, @@ -188,7 +188,7 @@ "type": "text/plain" }, "key": "include-unsegmented", - "value": "true" + "value": "false" } ], "variable": [] @@ -218,12 +218,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n },\n {\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n }\n]", + "body": "[\n {\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n },\n {\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b6c16095-2f2c-437d-9143-2ecb311c7ad0", + "id": "dce1a30e-0785-4985-83c4-159eda50cdb4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -241,7 +241,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -268,7 +268,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -277,7 +277,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"SailPoint Support\"" }, { "disabled": true, @@ -286,7 +286,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -295,7 +295,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d" }, { "disabled": true, @@ -304,7 +304,7 @@ "type": "text/plain" }, "key": "include-unsegmented", - "value": "true" + "value": "false" } ], "variable": [] @@ -334,12 +334,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9cd69b5c-9a26-494b-afa7-5befaa810196", + "id": "d0b9f387-807b-4d36-aa97-25df8c22c866", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -357,7 +357,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -384,7 +384,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -393,7 +393,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"SailPoint Support\"" }, { "disabled": true, @@ -402,7 +402,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -411,7 +411,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d" }, { "disabled": true, @@ -420,7 +420,7 @@ "type": "text/plain" }, "key": "include-unsegmented", - "value": "true" + "value": "false" } ], "variable": [] @@ -450,12 +450,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b206578-5a6b-4204-86c8-918c6c58d02a", + "id": "29f29f62-1989-4797-bd74-6c8a4ca0fbda", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -473,7 +473,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -500,7 +500,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -509,7 +509,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"SailPoint Support\"" }, { "disabled": true, @@ -518,7 +518,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -527,7 +527,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d" }, { "disabled": true, @@ -536,7 +536,7 @@ "type": "text/plain" }, "key": "include-unsegmented", - "value": "true" + "value": "false" } ], "variable": [] @@ -566,12 +566,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "18e97f24-69c9-439e-ae53-4c3aebf8c51f", + "id": "15b0a657-32f2-4d72-bbe3-9a5eb8a0b896", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -589,7 +589,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -616,7 +616,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -625,7 +625,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"SailPoint Support\"" }, { "disabled": true, @@ -634,7 +634,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -643,7 +643,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d" }, { "disabled": true, @@ -652,7 +652,7 @@ "type": "text/plain" }, "key": "include-unsegmented", - "value": "true" + "value": "false" } ], "variable": [] @@ -682,12 +682,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "be9ff278-42dc-4d46-87ce-b110d11320bb", + "id": "b8cefe63-9c09-4fdf-945b-bfe115b80101", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -705,7 +705,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -732,7 +732,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -741,7 +741,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"SailPoint Support\"" }, { "disabled": true, @@ -750,7 +750,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -759,7 +759,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d" }, { "disabled": true, @@ -768,7 +768,7 @@ "type": "text/plain" }, "key": "include-unsegmented", - "value": "true" + "value": "false" } ], "variable": [] @@ -798,7 +798,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -809,7 +809,7 @@ } }, { - "id": "9060adb9-7c59-46dc-b9b2-a1c0a4d27082", + "id": "ca68c333-9922-4df1-b350-9d3843366a11", "name": "Create an Access Profile", "request": { "name": "Create an Access Profile", @@ -840,7 +840,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -851,7 +851,7 @@ }, "response": [ { - "id": "3a3c4d84-870e-4c6d-ba7a-9693d3f292a8", + "id": "09491916-ea9b-49c7-aeb7-d1d8076d8505", "name": "Access Profile created", "originalRequest": { "url": { @@ -885,7 +885,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -902,12 +902,12 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c8590c58-9c39-4574-b048-58b9ef322fe4", + "id": "769b8fa3-ce3a-4d34-b062-95b64a7fc9c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -941,7 +941,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -958,12 +958,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "30513b64-e12f-4867-a7ad-3f8490c4d072", + "id": "cf6fbe43-9ca9-4c89-9896-61c0ab6a1c36", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -997,7 +997,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -1014,12 +1014,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8444944f-a0ff-48e2-bb49-a843c25a5ffb", + "id": "e2d09cc9-32fd-4534-9eb7-d3234293db58", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1053,7 +1053,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -1070,12 +1070,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "16848991-fef6-4327-bf3c-0c4ee67fe92a", + "id": "df7de775-04f1-4f0d-a9e2-c472cac6f54f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1109,7 +1109,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -1126,12 +1126,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb633b6e-df59-4823-8157-18d10b982b7d", + "id": "ef5ccfaf-ed8e-4f6c-a83f-aaf09573ba7f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1165,7 +1165,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -1182,7 +1182,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -1193,7 +1193,7 @@ } }, { - "id": "ee256bed-b3f2-4e7a-8a44-e313576078df", + "id": "757f381b-c27e-40aa-9267-ae20705ff917", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -1213,7 +1213,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180837ca6693d017ca8d097500149", "key": "id", "disabled": true, "description": { @@ -1234,7 +1234,7 @@ }, "response": [ { - "id": "97887b7d-d5d3-48e3-9ff4-6c01a8d65738", + "id": "cc79c5ed-6a6a-4dfa-a253-0c54a37017ef", "name": "An AccessProfile", "originalRequest": { "url": { @@ -1273,12 +1273,12 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bab5449d-1dc4-4320-ad8d-385f58af2aa5", + "id": "5e70e6c2-43b4-4c2e-a121-252d3fe722da", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1317,12 +1317,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c12919b8-c509-479a-a1df-3cd113ae5829", + "id": "af5153e5-c3d5-48ce-9ccb-94d00b83a095", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1361,12 +1361,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8e1d986b-754d-4dbf-bd51-1e0d4af69b09", + "id": "5841a9d0-5e7b-4ecf-a774-9012e815f71e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1405,12 +1405,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "92224783-0c6e-4977-94f0-d57c508cc6c2", + "id": "61289be4-4ccd-4504-a162-c6700676391e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1449,12 +1449,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f0868b6a-d5a1-49ac-a0c7-43f81330d627", + "id": "2e12320c-80e0-494f-8a82-275417722ec3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1493,7 +1493,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -1504,7 +1504,7 @@ } }, { - "id": "246f5af2-034c-43f2-b37e-9edd43db61dc", + "id": "4b9d70a9-72ab-451e-ae03-3058be4416af", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -1524,7 +1524,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808a7813090a017814121919ecca", "key": "id", "disabled": true, "description": { @@ -1547,7 +1547,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/entitlements\",\n \"value\": [\n {\n \"id\": \"2c9180857725c14301772a93bb77242d\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"AD User Group\"\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1558,8 +1558,8 @@ }, "response": [ { - "id": "21cfe0e1-a108-47f9-be78-98fb1e20e6c2", - "name": "Responds with the Access Profile as updated.", + "id": "6cb6f3ce-0bd4-4b78-bfc0-eff5f229d94c", + "name": "Add Entitlements", "originalRequest": { "url": { "path": [ @@ -1593,7 +1593,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/entitlements\",\n \"value\": [\n {\n \"id\": \"2c9180857725c14301772a93bb77242d\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"AD User Group\"\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1610,13 +1610,13 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dee4dd45-f294-4d1c-9237-e004dcdb4ade", - "name": "Client Error - Returned if the request body is invalid.", + "id": "ded7de18-cc6d-40bb-b4e1-1f4c5d7ddfc2", + "name": "Insert Entitlement", "originalRequest": { "url": { "path": [ @@ -1650,7 +1650,178 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/entitlements/0\",\n \"value\": {\n \"id\": \"2c9180857725c14301772a93bb77242d\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"AD User Group\"\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "24b0f5b4-6d2f-49e0-b4ed-550dd735c50a", + "name": "Replace Entitlements", + "originalRequest": { + "url": { + "path": [ + "access-profiles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/entitlements\",\n \"value\": [\n {\n \"id\": \"2c9180857725c14301772a93bb77242d\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"AD User Group\"\n }\n ]\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "b5752717-d226-4ce2-b5dc-c41eb2c78253", + "name": "Remove Entitlement", + "originalRequest": { + "url": { + "path": [ + "access-profiles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/entitlements/0\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"name\": \"Employee-database-read-write\",\n \"source\": {\n \"id\": \"2c91809773dee3610173fdb0b6061ef4\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-SOURCE\"\n },\n \"id\": \"2c91808a7190d06e01719938fcd20792\",\n \"description\": \"Collection of entitlements to read/write the employee database\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"enabled\": true,\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"CONTAINS\",\n \"value\": \"useast\"\n },\n {\n \"attribute\": \"manager\",\n \"operation\": \"CONTAINS\",\n \"value\": \"Scott.Clark\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"children\": [\n {\n \"attribute\": \"dn\",\n \"operation\": \"EQUALS\",\n \"value\": \"Gibson\"\n },\n {\n \"attribute\": \"telephoneNumber\",\n \"operation\": \"CONTAINS\",\n \"value\": \"512\"\n }\n ]\n }\n ]\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "7a0342ff-4d17-4a03-ad4d-4e094d7cfa08", + "name": "Insert Entitlement", + "originalRequest": { + "url": { + "path": [ + "access-profiles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/entitlements/0\",\n \"value\": {\n \"id\": \"2c9180857725c14301772a93bb77242d\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"AD User Group\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1667,13 +1838,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bb0ac2c1-32c2-4511-b5d6-3ca31fd6b2a0", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "f27c3042-89c8-4556-a275-22e9e3e3035b", + "name": "Replace Entitlements", "originalRequest": { "url": { "path": [ @@ -1707,7 +1878,121 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/entitlements\",\n \"value\": [\n {\n \"id\": \"2c9180857725c14301772a93bb77242d\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"AD User Group\"\n }\n ]\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "eaa6cee3-d001-4ca8-a952-9fae1a8f9385", + "name": "Remove Entitlement", + "originalRequest": { + "url": { + "path": [ + "access-profiles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/entitlements/0\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "70ba9128-32f4-4cce-aa51-e0a946d0a9f5", + "name": "Replace Entitlements", + "originalRequest": { + "url": { + "path": [ + "access-profiles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/entitlements\",\n \"value\": [\n {\n \"id\": \"2c9180857725c14301772a93bb77242d\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"AD User Group\"\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1724,13 +2009,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a920525b-3669-4702-bfed-be678a0e7337", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "863a3986-def6-41d6-87c2-e50da363817e", + "name": "Remove Entitlement", "originalRequest": { "url": { "path": [ @@ -1764,7 +2049,64 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/entitlements/0\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "f213e3f3-983d-4e0e-9cc2-5aaacf6f6ebb", + "name": "An example of a 403 response object", + "originalRequest": { + "url": { + "path": [ + "access-profiles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/entitlements/0\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1781,13 +2123,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "db61e865-e874-49cd-b362-8dd340c22b56", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "93d44e65-229f-4509-8c01-4d6440563e23", + "name": "Add Entitlements", "originalRequest": { "url": { "path": [ @@ -1821,7 +2163,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/entitlements\",\n \"value\": [\n {\n \"id\": \"2c9180857725c14301772a93bb77242d\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"AD User Group\"\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1838,13 +2180,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "34cba575-5948-4e0f-ae88-99664cdbe5d7", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "180d6250-7eba-428c-8bdf-aa56ea047661", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -1878,7 +2220,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/entitlements\",\n \"value\": [\n {\n \"id\": \"2c9180857725c14301772a93bb77242d\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"AD User Group\"\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1895,7 +2237,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -1906,7 +2248,7 @@ } }, { - "id": "f72bee29-f987-45c1-b901-c1096b9d2c82", + "id": "beeb8195-7c7c-402c-b3ba-7a0dcf348cf3", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -1926,7 +2268,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808a7813090a017814121919ecca", "key": "id", "disabled": true, "description": { @@ -1947,7 +2289,7 @@ }, "response": [ { - "id": "81d8b8a4-69d2-4303-b5ee-f524875a87b3", + "id": "29730593-9727-48ec-b924-52776c334e57", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -1981,7 +2323,7 @@ "_postman_previewlanguage": "text" }, { - "id": "081efe18-8641-40a4-86ab-9f441eeb9835", + "id": "dfced7eb-17aa-4ac3-b022-b76151031d12", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -2020,12 +2362,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"400.2.1.0 Object in use by another\",\n \"trackingId\": \"c9c1033c55b84ebc9e93e926dcf8b8b3\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The \\\"testAccessProfile\\\" access profile can't be deleted because it's in use.\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b2ade886-e3eb-4011-8643-5dab6dcb1b39", + "id": "52f05dd9-5239-4640-83af-8d4026a58de9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2064,12 +2406,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12aeeb0e-1bf0-428f-9302-24aad63378cc", + "id": "9001211e-7670-4e50-bfbb-cb1b660c881e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -2108,12 +2450,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "54dd2d81-0529-4327-9b19-b84a934c2227", + "id": "69843250-b70e-4019-960f-46d3fa6b0167", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -2152,12 +2494,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "163b9f74-b38a-49e3-aafd-172bc30a6054", + "id": "7810d03f-ed2d-454d-9337-1cf63b15cc66", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2196,7 +2538,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -2207,7 +2549,7 @@ } }, { - "id": "c1c06537-fefa-401a-bcb8-8655268019a1", + "id": "62296ad5-fc7b-42c3-a06a-61cc77516daa", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -2239,7 +2581,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessProfileIds\": [\n \"\",\n \"\"\n ],\n \"bestEffortOnly\": \"\"\n}", + "raw": "{\n \"bestEffortOnly\": true,\n \"accessProfileIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2250,7 +2592,7 @@ }, "response": [ { - "id": "0b7cb87c-e232-4204-9be8-1212f015de25", + "id": "b145d116-6850-458c-8fd6-cb739e3dc107", "name": "Returned only if **bestEffortOnly** is **false**, and one or more Access Profiles are in use.", "originalRequest": { "url": { @@ -2285,7 +2627,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessProfileIds\": [\n \"\",\n \"\"\n ],\n \"bestEffortOnly\": \"\"\n}", + "raw": "{\n \"bestEffortOnly\": true,\n \"accessProfileIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2302,12 +2644,12 @@ "value": "application/json" } ], - "body": "{\n \"taskId\": \"\",\n \"pending\": [\n \"\",\n \"\"\n ],\n \"inUse\": [\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"pending\": [],\n \"inUse\": [\n {\n \"accessProfileId\": \"2c91808876438ba801766e129f151816\",\n \"usages\": [\n {\n \"type\": \"Role\",\n \"id\": \"2c9180887643764201766e9f6e121518\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "271e0eeb-285a-4353-9bf0-88c04dab213d", + "id": "4b572038-f946-4b1b-8040-afadca9584ae", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -2342,7 +2684,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessProfileIds\": [\n \"\",\n \"\"\n ],\n \"bestEffortOnly\": \"\"\n}", + "raw": "{\n \"bestEffortOnly\": true,\n \"accessProfileIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2359,12 +2701,12 @@ "value": "application/json" } ], - "body": "{\n \"taskId\": \"\",\n \"pending\": [\n \"\",\n \"\"\n ],\n \"inUse\": [\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"taskId\": \"2c91808a7813090a01781412a1119a20\",\n \"pending\": [\n \"2c91808a7813090a017813fe1919ecca\"\n ],\n \"inUse\": [\n {\n \"accessProfileId\": \"2c91808876438ba801766e129f151816\",\n \"usages\": [\n {\n \"type\": \"Role\",\n \"id\": \"2c9180887643764201766e9f6e121518\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9be6ed45-18b9-485b-9af5-688f309c890a", + "id": "46ad89c4-2a01-4f18-9c23-d5360f2484e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2399,7 +2741,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessProfileIds\": [\n \"\",\n \"\"\n ],\n \"bestEffortOnly\": \"\"\n}", + "raw": "{\n \"bestEffortOnly\": true,\n \"accessProfileIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2416,12 +2758,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bd6e51c9-f46d-44e4-bdfd-4bb9f73c9ba6", + "id": "0f577d00-3219-4676-ba81-e13c2ceab9cd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2456,7 +2798,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessProfileIds\": [\n \"\",\n \"\"\n ],\n \"bestEffortOnly\": \"\"\n}", + "raw": "{\n \"bestEffortOnly\": true,\n \"accessProfileIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2473,12 +2815,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8039d052-03f9-4e94-b73d-61a8c3bf64ce", + "id": "3118fb9a-61a7-4150-b4bc-f3fe9cbca86f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -2513,7 +2855,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessProfileIds\": [\n \"\",\n \"\"\n ],\n \"bestEffortOnly\": \"\"\n}", + "raw": "{\n \"bestEffortOnly\": true,\n \"accessProfileIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2530,12 +2872,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d6357ec5-10c9-4c09-8b01-110b9d06c83b", + "id": "ce690873-a807-40f4-8432-ca18d8dbe959", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -2570,7 +2912,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessProfileIds\": [\n \"\",\n \"\"\n ],\n \"bestEffortOnly\": \"\"\n}", + "raw": "{\n \"bestEffortOnly\": true,\n \"accessProfileIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2587,12 +2929,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "015c735e-84ac-443b-9b7f-e5d5155685f5", + "id": "e6918954-d5a0-42a8-abad-04baa4c345b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2627,7 +2969,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessProfileIds\": [\n \"\",\n \"\"\n ],\n \"bestEffortOnly\": \"\"\n}", + "raw": "{\n \"bestEffortOnly\": true,\n \"accessProfileIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2644,7 +2986,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -2655,7 +2997,7 @@ } }, { - "id": "fc605fe6-03c0-4d75-bc8a-24452a8495c5", + "id": "eb9c62d0-c946-48e4-87a8-b972e492e54f", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", @@ -2698,7 +3040,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -2707,7 +3049,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" }, { "disabled": true, @@ -2716,13 +3058,13 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [ { "type": "any", - "value": "", + "value": "2c91808a7813090a017814121919ecca", "key": "id", "disabled": true, "description": { @@ -2743,7 +3085,7 @@ }, "response": [ { - "id": "5e461029-21d0-42f8-9601-b7e2a361884f", + "id": "b19a9953-6629-493f-b651-04d6fda6b3be", "name": "List of Entitlements", "originalRequest": { "url": { @@ -2781,7 +3123,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -2790,7 +3132,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" }, { "disabled": true, @@ -2799,7 +3141,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -2829,12 +3171,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"dolore_59a\": -14064548.001217768,\n \"ad_0\": 88792807\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"reprehenderit_bb\": 84438357.51621753\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", + "body": "[\n {\n \"id\": \"2c91808874ff91550175097daaec161c\",\n \"name\": \"LauncherTest2\",\n \"created\": \"2020-10-08T18:33:52.029Z\",\n \"modified\": \"2020-10-08T18:33:52.029Z\",\n \"attribute\": \"memberOf\",\n \"value\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"sourceSchemaObjectType\": \"group\",\n \"privileged\": true,\n \"cloudGoverned\": true,\n \"description\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"requestable\": true,\n \"attributes\": {\n \"fieldName\": \"fieldValue\"\n },\n \"source\": {\n \"id\": \"2c9180827ca885d7017ca8ce28a000eb\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-Source\"\n },\n \"owner\": {\n \"id\": \"2a2fdacca5e345f18bf7970cfbb8fec2\",\n \"name\": \"identity 1\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n },\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n }\n ],\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n }\n },\n {\n \"id\": \"2c91808874ff91550175097daaec161c\",\n \"name\": \"LauncherTest2\",\n \"created\": \"2020-10-08T18:33:52.029Z\",\n \"modified\": \"2020-10-08T18:33:52.029Z\",\n \"attribute\": \"memberOf\",\n \"value\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"sourceSchemaObjectType\": \"group\",\n \"privileged\": true,\n \"cloudGoverned\": true,\n \"description\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"requestable\": true,\n \"attributes\": {\n \"fieldName\": \"fieldValue\"\n },\n \"source\": {\n \"id\": \"2c9180827ca885d7017ca8ce28a000eb\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-Source\"\n },\n \"owner\": {\n \"id\": \"2a2fdacca5e345f18bf7970cfbb8fec2\",\n \"name\": \"identity 1\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n },\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n }\n ],\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f99d4e5-e7b3-4545-8e6b-f48e68b7703d", + "id": "344fc213-2bc2-4fff-afcb-b04ee5e328ea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2872,7 +3214,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -2881,7 +3223,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" }, { "disabled": true, @@ -2890,7 +3232,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -2920,12 +3262,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bcdfc2e0-2903-4b17-8ee1-2d04ae94310b", + "id": "c6019a70-7e1b-475c-8f92-397c608e3394", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2963,7 +3305,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -2972,7 +3314,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" }, { "disabled": true, @@ -2981,7 +3323,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -3011,12 +3353,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e11e7ea6-ee3b-49ba-ba24-8803ea7b2640", + "id": "12883609-35a9-451c-8597-ddb29dfc2a3c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -3054,7 +3396,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -3063,7 +3405,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" }, { "disabled": true, @@ -3072,7 +3414,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -3102,12 +3444,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "578cd1c5-a724-4562-831e-f7e9ea8e7c8c", + "id": "875db5f8-121a-40ad-9035-fd810c508961", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -3145,7 +3487,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -3154,7 +3496,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" }, { "disabled": true, @@ -3163,7 +3505,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -3193,12 +3535,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c91e95f3-328d-4a1d-8680-ec1178685dce", + "id": "5d41e078-a4dd-4806-ad23-b1d027a196b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3236,7 +3578,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -3245,7 +3587,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" }, { "disabled": true, @@ -3254,7 +3596,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -3284,7 +3626,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -3301,7 +3643,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": "a3f62d73-0daa-4506-a54d-206c23948589", + "id": "52e07b63-7b3a-4379-bba5-f82a99181539", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -3325,7 +3667,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -3352,7 +3694,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -3361,7 +3703,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -3370,7 +3712,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -3386,7 +3728,7 @@ }, "response": [ { - "id": "40df1460-ad9c-467f-b6ed-8d26dc26ef0c", + "id": "73e992da-692a-4504-bd0b-3e11f2a275d9", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -3405,7 +3747,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -3432,7 +3774,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -3441,7 +3783,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -3450,7 +3792,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -3480,12 +3822,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"REVOKE_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedObject\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"created\": \"\"\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"MANUAL_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"actionInProcess\": \"FORWARDED\",\n \"removeDate\": \"\",\n \"removeDateUpdateRequested\": \"\",\n \"currentRemoveDate\": \"\",\n \"sodViolationContext\": {\n \"state\": \"ERROR\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"ut_5\": \"\",\n \"dolor2\": \"\",\n \"dolor_3fd\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedObject\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"created\": \"\"\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"MANUAL_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"actionInProcess\": \"APPROVED\",\n \"removeDate\": \"\",\n \"removeDateUpdateRequested\": \"\",\n \"currentRemoveDate\": \"\",\n \"sodViolationContext\": {\n \"state\": \"ERROR\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"veniam_7\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"Pending 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 \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\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 },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\"\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\"\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 \"actionInProcess\": \"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 },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"Pending 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 \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\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 },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\"\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\"\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 \"actionInProcess\": \"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 }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2cc1196c-b1e5-4e9b-90b9-aae06ca2e8d0", + "id": "78e9e2e6-f20c-4117-a9cc-24c7711e3bc4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -3504,7 +3846,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -3531,7 +3873,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -3540,7 +3882,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -3549,7 +3891,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -3579,12 +3921,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f99ff5a8-21c1-4a9c-9d60-efc1066a1c43", + "id": "a9beaa94-7f1d-437d-9acd-ed053ba1f9d8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -3603,7 +3945,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -3630,7 +3972,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -3639,7 +3981,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -3648,7 +3990,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -3678,12 +4020,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6feb75e0-57e2-4cf4-8bf7-40549494e388", + "id": "a633f6a1-6f78-4407-9edc-54e8acbe815f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -3702,7 +4044,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -3729,7 +4071,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -3738,7 +4080,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -3747,7 +4089,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -3777,12 +4119,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "20d767d3-046a-456c-8e5f-5067be901f9e", + "id": "6c9abdf6-218b-401b-a1f7-a19a28c79ac2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3801,7 +4143,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -3828,7 +4170,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -3837,7 +4179,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -3846,7 +4188,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -3876,7 +4218,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -3887,7 +4229,7 @@ } }, { - "id": "31b1471c-c674-423c-be47-a04b18074c79", + "id": "88b0d096-d787-435f-9891-2feb0e530480", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -3911,7 +4253,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -3938,7 +4280,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -3947,7 +4289,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -3956,7 +4298,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -3972,7 +4314,7 @@ }, "response": [ { - "id": "4824cbe6-993a-4afd-998e-0b6cbb0d3d58", + "id": "33081b1d-da38-41d8-a59f-da6208512a4f", "name": "List of Completed Approvals.", "originalRequest": { "url": { @@ -3991,7 +4333,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -4018,7 +4360,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -4027,7 +4369,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -4036,7 +4378,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -4066,12 +4408,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedObject\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ENTITLEMENT\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"created\": \"\"\n },\n \"reviewerComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"created\": \"\"\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"state\": \"APPROVED\",\n \"removeDate\": \"\",\n \"removeDateUpdateRequested\": \"\",\n \"currentRemoveDate\": \"\",\n \"sodViolationContext\": {\n \"state\": \"ERROR\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"sit_c4\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"REVOKE_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedObject\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ENTITLEMENT\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"created\": \"\"\n },\n \"reviewerComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"created\": \"\"\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"state\": \"APPROVED\",\n \"removeDate\": \"\",\n \"removeDateUpdateRequested\": \"\",\n \"currentRemoveDate\": \"\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"magna8\": \"\",\n \"anim_6\": \"\",\n \"irureec\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\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 \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\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 },\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 },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\"\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 },\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 \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\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 },\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 },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\"\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 }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "448852f2-3401-4d8e-a9fa-192c20b42d27", + "id": "8faa9b13-a74c-421d-8969-fe19e127d140", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -4090,7 +4432,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -4117,7 +4459,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -4126,7 +4468,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -4135,7 +4477,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -4165,12 +4507,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "54f333ac-b3e2-4f3d-b399-e3f35e6bd17d", + "id": "b6ab877c-cf5a-4e2f-9218-bdea285b7ec7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -4189,7 +4531,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -4216,7 +4558,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -4225,7 +4567,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -4234,7 +4576,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -4264,12 +4606,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9864e49e-96b8-4640-8ef5-f38e26d7b7f5", + "id": "c9fc0700-5e8b-41d6-82b9-467f705af59d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -4288,7 +4630,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -4315,7 +4657,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -4324,7 +4666,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -4333,7 +4675,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -4363,12 +4705,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e127fd49-5201-4c41-94d5-cc777d807b52", + "id": "de477d61-6fc0-46ae-83a1-15f5a73fc2b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4387,7 +4729,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -4414,7 +4756,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -4423,7 +4765,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -4432,7 +4774,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -4462,7 +4804,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -4473,7 +4815,7 @@ } }, { - "id": "ba089dc9-9725-42ef-9590-4ecb2b224290", + "id": "e8acffcc-2a8d-4315-9319-cf5042cc3c13", "name": "Approves an access request approval.", "request": { "name": "Approves an access request approval.", @@ -4494,7 +4836,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b7294bea301729568c68c002e", "key": "approvalId", "disabled": true, "description": { @@ -4517,7 +4859,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -4528,7 +4870,7 @@ }, "response": [ { - "id": "ed4da662-2e31-42af-88bf-661a176f0717", + "id": "214fbe8c-5fb1-4088-96f3-d87af5d3669f", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -4564,7 +4906,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -4586,7 +4928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad00fc83-f50f-4bd0-bc1f-b1767d4dfbce", + "id": "81c42b31-bec5-456a-9da8-4ad543178e82", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -4622,7 +4964,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -4639,12 +4981,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cc3f3d96-705f-4482-b9f5-dc7fe569eb65", + "id": "1b3c0a35-adfa-45c1-a6c1-a288a8d16336", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -4680,7 +5022,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -4697,12 +5039,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c0545568-45b2-4d1a-a514-3aecf3b0ebfb", + "id": "86384864-f351-4a48-bffa-2dda62c4e94b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -4738,7 +5080,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -4755,12 +5097,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "dfb04c00-8e6d-4f6d-8aca-82bfd0b24fdc", + "id": "35fed32c-907f-4c77-a4ca-83f5cf842756", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -4796,7 +5138,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -4813,12 +5155,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "55622921-7114-47de-a49f-4042b100d56d", + "id": "f3602523-ba49-4e2c-b279-e897fbd7b487", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4854,7 +5196,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -4871,7 +5213,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -4882,7 +5224,7 @@ } }, { - "id": "30b70829-fab6-4c95-9bdc-8621a301274a", + "id": "c12a0f9a-78ac-4a74-b29f-8b2192b2092a", "name": "Rejects an access request approval.", "request": { "name": "Rejects an access request approval.", @@ -4903,7 +5245,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b7294bea301729568c68c002e", "key": "approvalId", "disabled": true, "description": { @@ -4926,7 +5268,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -4937,7 +5279,7 @@ }, "response": [ { - "id": "16e64c49-afdb-4795-a1eb-65657098c786", + "id": "4e1d9d46-11fb-4af4-a4a3-33da257732ac", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -4973,7 +5315,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -4995,7 +5337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6913599e-6107-4fa2-8cef-597baf60b8e0", + "id": "5f275b7e-95ea-471d-bccf-3a033b70835d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5031,7 +5373,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -5048,12 +5390,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "857b6203-9911-4d73-8cf9-b32673c19764", + "id": "e9f5ec01-26b6-4eda-9ce7-2b36f195034a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5089,7 +5431,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -5106,12 +5448,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ea7d018-e3d6-4794-a58f-ffe17f270491", + "id": "a253f058-9ba3-4d65-838c-d4b9d2766854", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5147,7 +5489,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -5164,12 +5506,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "694b1699-1883-41c0-9125-caa484cdf687", + "id": "14a00565-b4bc-4eda-914d-f80df99a012f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -5205,7 +5547,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -5222,12 +5564,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6461f449-9569-4664-9a87-cf13d97fe6f1", + "id": "1436f34a-6d29-4a08-beeb-1eec3b457f1c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5263,7 +5605,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -5280,12 +5622,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1a42a686-5aeb-430d-a0d5-ee8e93315e2d", + "id": "ef04b69e-777b-4aa8-a70f-dfc4a8e63b0c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5321,7 +5663,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -5338,7 +5680,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -5349,7 +5691,7 @@ } }, { - "id": "41360d0b-b33a-4cc2-826e-d68c384f22dc", + "id": "ef31c2dc-3b8b-452f-9a09-5320cbb7b5fd", "name": "Forwards an access request approval to a new owner.", "request": { "name": "Forwards an access request approval to a new owner.", @@ -5370,7 +5712,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b7294bea301729568c68c002e", "key": "approvalId", "disabled": true, "description": { @@ -5393,7 +5735,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"newOwnerId\": \"id sit labore in ullamco\",\n \"comment\": \"irure magna sint nulla\"\n}", "options": { "raw": { "headerFamily": "json", @@ -5404,7 +5746,7 @@ }, "response": [ { - "id": "68f699ce-11f3-4437-ae16-5739005c2f4f", + "id": "5077f4b4-68d4-49dd-ad57-6dfbc491440a", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5440,7 +5782,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"newOwnerId\": \"id sit labore in ullamco\",\n \"comment\": \"irure magna sint nulla\"\n}", "options": { "raw": { "headerFamily": "json", @@ -5462,7 +5804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b12acfa4-856c-4c6f-9e93-6e572e4d5a89", + "id": "96eb6798-169f-45ff-b7d6-1c51c141475a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5498,7 +5840,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"newOwnerId\": \"id sit labore in ullamco\",\n \"comment\": \"irure magna sint nulla\"\n}", "options": { "raw": { "headerFamily": "json", @@ -5515,12 +5857,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2aaa4be0-bee6-4a0a-a4a7-31bce21fdf5a", + "id": "ad92b4a8-9880-4835-87fb-3f4398d17dc5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5556,7 +5898,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"newOwnerId\": \"id sit labore in ullamco\",\n \"comment\": \"irure magna sint nulla\"\n}", "options": { "raw": { "headerFamily": "json", @@ -5573,12 +5915,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ce7ae733-ab00-4f3b-964f-fe23fb027cf9", + "id": "84bae3a0-e6ea-4e9c-8543-d522438fafd4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5614,7 +5956,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"newOwnerId\": \"id sit labore in ullamco\",\n \"comment\": \"irure magna sint nulla\"\n}", "options": { "raw": { "headerFamily": "json", @@ -5631,12 +5973,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b7cd2044-e79f-427e-a3a2-53bc1fa60a47", + "id": "2f022afa-57c7-4a7f-a140-bafd22139cc0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -5672,7 +6014,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"newOwnerId\": \"id sit labore in ullamco\",\n \"comment\": \"irure magna sint nulla\"\n}", "options": { "raw": { "headerFamily": "json", @@ -5689,12 +6031,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5636be3b-4e6f-44bf-8893-53ef7fa53cb7", + "id": "28fd0daa-a82c-4878-9c5e-d096703c7a89", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5730,7 +6072,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"newOwnerId\": \"id sit labore in ullamco\",\n \"comment\": \"irure magna sint nulla\"\n}", "options": { "raw": { "headerFamily": "json", @@ -5747,12 +6089,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5ab79264-0cc3-419a-8e88-644d514b9104", + "id": "5d5102cb-e46f-4ec0-a1b5-68c5ced0cf62", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5788,7 +6130,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"newOwnerId\": \"id sit labore in ullamco\",\n \"comment\": \"irure magna sint nulla\"\n}", "options": { "raw": { "headerFamily": "json", @@ -5805,7 +6147,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -5816,7 +6158,7 @@ } }, { - "id": "bec8ca72-abb3-4862-9073-6c3ac8868de5", + "id": "ee67cbea-dfd8-4ed2-801b-9db9bb597c6e", "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", @@ -5840,7 +6182,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -5849,7 +6191,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -5865,7 +6207,7 @@ }, "response": [ { - "id": "04942d37-b926-4e3c-8d91-b0c77d5c92de", + "id": "45f92a8b-b6fe-4a72-93c2-148c58c57437", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -5884,7 +6226,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -5893,7 +6235,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -5923,12 +6265,12 @@ "value": "application/json" } ], - "body": "{\n \"pending\": \"\",\n \"approved\": \"\",\n \"rejected\": \"\"\n}", + "body": "{\n \"pending\": 69091282,\n \"approved\": -20170289,\n \"rejected\": -45815014\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a24bd3a-861c-4d37-8ab3-3b56525de71d", + "id": "6d2b1e66-9b1c-46df-9c0c-870c4663d8e9", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -5947,7 +6289,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -5956,7 +6298,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -5986,12 +6328,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ef2c265d-0a3c-4f8e-b4d1-5f4e4ec724c8", + "id": "85cbbd09-1364-4cde-8ccf-f0f60cb1fcf7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6010,7 +6352,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -6019,7 +6361,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -6049,12 +6391,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e03d7e4f-e5b5-46db-93a0-a4f5430e4d26", + "id": "24d1016b-05c2-4840-9ed9-8c7e1728757c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6073,7 +6415,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -6082,7 +6424,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -6112,12 +6454,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ed3bdf99-5499-4287-998e-512740a858f4", + "id": "4041b021-4c49-4c97-8228-983b08686a27", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6136,7 +6478,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -6145,7 +6487,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -6175,12 +6517,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a4d0afaa-c6d3-4d21-abdc-2de65162b76a", + "id": "4f8d25c8-42ad-409f-b6b7-9c88cfc6c4e1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6199,7 +6541,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -6208,7 +6550,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -6238,7 +6580,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -6255,7 +6597,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": "a3952b35-dac2-4ed6-9104-93fb54196859", + "id": "a80746e3-3f6a-429d-b0a3-6efbf7971d38", "name": "Submit an Access Request", "request": { "name": "Submit an Access Request", @@ -6286,7 +6628,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"incididuntf\": \"\",\n \"est_48_\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"laboris_e9c\": \"\",\n \"aliqua68\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"sitda\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210584\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"Requesting access profile for John Doe\",\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"removeDate\": \"2020-07-11T21:23:15.000Z\"\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"Requesting access profile for John Doe\",\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"removeDate\": \"2020-07-11T21:23:15.000Z\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\",\n \"requestedAppName\": \"test-app\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6297,7 +6639,7 @@ }, "response": [ { - "id": "c1ca162b-7c1c-4a72-8d9a-4bf1acf146d0", + "id": "da6b2b05-ab3f-4d56-8e11-d57c61d6203f", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6331,7 +6673,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"incididuntf\": \"\",\n \"est_48_\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"laboris_e9c\": \"\",\n \"aliqua68\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"sitda\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210584\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"Requesting access profile for John Doe\",\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"removeDate\": \"2020-07-11T21:23:15.000Z\"\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"Requesting access profile for John Doe\",\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"removeDate\": \"2020-07-11T21:23:15.000Z\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\",\n \"requestedAppName\": \"test-app\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6353,7 +6695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4071fbf-5d08-4f5c-a2c3-e00f1a99ac27", + "id": "9055b8bb-8c13-4b50-8d8b-d3e15890918b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6387,7 +6729,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"incididuntf\": \"\",\n \"est_48_\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"laboris_e9c\": \"\",\n \"aliqua68\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"sitda\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210584\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"Requesting access profile for John Doe\",\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"removeDate\": \"2020-07-11T21:23:15.000Z\"\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"Requesting access profile for John Doe\",\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"removeDate\": \"2020-07-11T21:23:15.000Z\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\",\n \"requestedAppName\": \"test-app\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6404,12 +6746,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "061dd871-9237-4f41-970c-a6bf2c401804", + "id": "9ebf28a1-ff2c-4f5f-9773-39ec4cc793fd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6443,7 +6785,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"incididuntf\": \"\",\n \"est_48_\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"laboris_e9c\": \"\",\n \"aliqua68\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"sitda\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210584\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"Requesting access profile for John Doe\",\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"removeDate\": \"2020-07-11T21:23:15.000Z\"\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"Requesting access profile for John Doe\",\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"removeDate\": \"2020-07-11T21:23:15.000Z\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\",\n \"requestedAppName\": \"test-app\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6460,12 +6802,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "55a8e5f1-937a-475c-bcda-d9a16ad09ce3", + "id": "d63dc6f1-9049-4909-a6bf-8ae6c3509fc9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6499,7 +6841,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"incididuntf\": \"\",\n \"est_48_\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"laboris_e9c\": \"\",\n \"aliqua68\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"sitda\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210584\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"Requesting access profile for John Doe\",\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"removeDate\": \"2020-07-11T21:23:15.000Z\"\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"Requesting access profile for John Doe\",\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"removeDate\": \"2020-07-11T21:23:15.000Z\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\",\n \"requestedAppName\": \"test-app\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6516,12 +6858,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d348ddb9-b9af-4fa0-9307-2228dee4afac", + "id": "69a48eb2-01a8-491f-a77a-860554b1926f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6555,7 +6897,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"incididuntf\": \"\",\n \"est_48_\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"laboris_e9c\": \"\",\n \"aliqua68\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"sitda\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210584\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"Requesting access profile for John Doe\",\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"removeDate\": \"2020-07-11T21:23:15.000Z\"\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"Requesting access profile for John Doe\",\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"removeDate\": \"2020-07-11T21:23:15.000Z\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\",\n \"requestedAppName\": \"test-app\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6572,12 +6914,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85a85158-6ff5-41c0-ab5a-b31938a935ad", + "id": "332b098f-6b83-4569-8213-80385cdc6d73", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6611,7 +6953,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"incididuntf\": \"\",\n \"est_48_\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"laboris_e9c\": \"\",\n \"aliqua68\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"sitda\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210584\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"Requesting access profile for John Doe\",\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"removeDate\": \"2020-07-11T21:23:15.000Z\"\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"Requesting access profile for John Doe\",\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"removeDate\": \"2020-07-11T21:23:15.000Z\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\",\n \"requestedAppName\": \"test-app\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6628,7 +6970,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -6639,7 +6981,7 @@ } }, { - "id": "515fcc8c-1f9d-41a0-9914-7b77db1fabd3", + "id": "6e812a41-21d3-40e2-ae80-a249c1d002cc", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -6671,7 +7013,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountActivityId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"accountActivityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"comment\": \"I requested this role by mistake.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6682,7 +7024,7 @@ }, "response": [ { - "id": "a3de6dc6-fe11-427e-9d69-ef15c8245a78", + "id": "2939ceab-7ae2-4f2e-ad11-36a13e14d234", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6717,7 +7059,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountActivityId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"accountActivityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"comment\": \"I requested this role by mistake.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6739,7 +7081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "824fbf16-a98e-46c8-a9f6-f55b5e7bd2e0", + "id": "cdff4c07-dd4e-40e3-8a8c-32c31b7c64c4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6774,7 +7116,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountActivityId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"accountActivityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"comment\": \"I requested this role by mistake.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6791,12 +7133,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2e8514b7-3fec-4c6e-9584-0873bfb539e6", + "id": "66426ef5-d892-4991-9c51-9f47488c20f3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6831,7 +7173,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountActivityId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"accountActivityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"comment\": \"I requested this role by mistake.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6848,12 +7190,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "51708dc0-0fcc-4be8-82ec-733ad8d0efee", + "id": "d53fa79a-1078-4b6e-8e56-600b7decd1bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6888,7 +7230,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountActivityId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"accountActivityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"comment\": \"I requested this role by mistake.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6905,12 +7247,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "05ad6de7-1d2c-4f0a-8ae8-d1b2ff392984", + "id": "60d1b28f-2346-4a80-b459-ec81e3948889", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -6945,7 +7287,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountActivityId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"accountActivityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"comment\": \"I requested this role by mistake.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6962,12 +7304,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "19af8917-2977-4d2b-be8e-82c471b1776a", + "id": "468981d2-f17e-40fb-b35b-d99594c82cfc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7002,7 +7344,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountActivityId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"accountActivityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"comment\": \"I requested this role by mistake.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -7019,12 +7361,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c7130b71-899d-4226-90b9-edb2142195ee", + "id": "ed75426f-ebd8-4bef-9cb5-4e41e8f17b59", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7059,7 +7401,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountActivityId\": \"\",\n \"comment\": \"\"\n}", + "raw": "{\n \"accountActivityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"comment\": \"I requested this role by mistake.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -7076,7 +7418,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -7087,7 +7429,7 @@ } }, { - "id": "de78d33e-e6f5-43bc-8ebe-fd032a304520", + "id": "ef5ab609-5533-49c6-b3f8-3c2bad92f672", "name": "Close Access Request", "request": { "name": "Close Access Request", @@ -7119,7 +7461,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessRequestIds\": [\n \"\",\n \"\"\n ],\n \"message\": \"The IdentityNow Administrator manually closed this request.\",\n \"executionStatus\": \"Terminated\",\n \"completionStatus\": \"Failure\"\n}", + "raw": "{\n \"accessRequestIds\": [\n \"2c90ad2a70ace7d50170acf22ca90010\"\n ],\n \"executionStatus\": \"Terminated\",\n \"completionStatus\": \"Failure\",\n \"message\": \"The IdentityNow Administrator manually closed this request.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -7130,7 +7472,7 @@ }, "response": [ { - "id": "40c2c9f9-4ac9-4dc8-b852-36f0aaf3de06", + "id": "80b9d15e-08ee-4986-a655-f3d90e5402bd", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7165,7 +7507,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessRequestIds\": [\n \"\",\n \"\"\n ],\n \"message\": \"The IdentityNow Administrator manually closed this request.\",\n \"executionStatus\": \"Terminated\",\n \"completionStatus\": \"Failure\"\n}", + "raw": "{\n \"accessRequestIds\": [\n \"2c90ad2a70ace7d50170acf22ca90010\"\n ],\n \"executionStatus\": \"Terminated\",\n \"completionStatus\": \"Failure\",\n \"message\": \"The IdentityNow Administrator manually closed this request.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -7187,7 +7529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6cf55e1-8c82-4536-ab74-6c2c944d37e0", + "id": "fe423dfe-0ba9-4f72-ae1f-c2a746ad89e6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7222,7 +7564,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessRequestIds\": [\n \"\",\n \"\"\n ],\n \"message\": \"The IdentityNow Administrator manually closed this request.\",\n \"executionStatus\": \"Terminated\",\n \"completionStatus\": \"Failure\"\n}", + "raw": "{\n \"accessRequestIds\": [\n \"2c90ad2a70ace7d50170acf22ca90010\"\n ],\n \"executionStatus\": \"Terminated\",\n \"completionStatus\": \"Failure\",\n \"message\": \"The IdentityNow Administrator manually closed this request.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -7239,12 +7581,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "439e9a04-ecb2-4d0f-a3a3-98f76419cf27", + "id": "3278c041-0b75-437b-b8af-affd431d5380", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7279,7 +7621,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessRequestIds\": [\n \"\",\n \"\"\n ],\n \"message\": \"The IdentityNow Administrator manually closed this request.\",\n \"executionStatus\": \"Terminated\",\n \"completionStatus\": \"Failure\"\n}", + "raw": "{\n \"accessRequestIds\": [\n \"2c90ad2a70ace7d50170acf22ca90010\"\n ],\n \"executionStatus\": \"Terminated\",\n \"completionStatus\": \"Failure\",\n \"message\": \"The IdentityNow Administrator manually closed this request.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -7296,12 +7638,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97aa15b6-7640-4f24-9ad0-104fb4249601", + "id": "db9461cd-76e7-48f2-a5bc-bb20b9019ba9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7336,7 +7678,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessRequestIds\": [\n \"\",\n \"\"\n ],\n \"message\": \"The IdentityNow Administrator manually closed this request.\",\n \"executionStatus\": \"Terminated\",\n \"completionStatus\": \"Failure\"\n}", + "raw": "{\n \"accessRequestIds\": [\n \"2c90ad2a70ace7d50170acf22ca90010\"\n ],\n \"executionStatus\": \"Terminated\",\n \"completionStatus\": \"Failure\",\n \"message\": \"The IdentityNow Administrator manually closed this request.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -7353,12 +7695,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f460b7de-0a5a-43bd-ab5b-7aaa998f0701", + "id": "99fac1c7-744e-4d26-8435-794b3227b401", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7393,7 +7735,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessRequestIds\": [\n \"\",\n \"\"\n ],\n \"message\": \"The IdentityNow Administrator manually closed this request.\",\n \"executionStatus\": \"Terminated\",\n \"completionStatus\": \"Failure\"\n}", + "raw": "{\n \"accessRequestIds\": [\n \"2c90ad2a70ace7d50170acf22ca90010\"\n ],\n \"executionStatus\": \"Terminated\",\n \"completionStatus\": \"Failure\",\n \"message\": \"The IdentityNow Administrator manually closed this request.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -7410,12 +7752,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8eadfda2-33b4-49ad-8f1c-e4afcf4f302c", + "id": "65d4e264-747c-4e95-a5ef-848774cedcb3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7450,7 +7792,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accessRequestIds\": [\n \"\",\n \"\"\n ],\n \"message\": \"The IdentityNow Administrator manually closed this request.\",\n \"executionStatus\": \"Terminated\",\n \"completionStatus\": \"Failure\"\n}", + "raw": "{\n \"accessRequestIds\": [\n \"2c90ad2a70ace7d50170acf22ca90010\"\n ],\n \"executionStatus\": \"Terminated\",\n \"completionStatus\": \"Failure\",\n \"message\": \"The IdentityNow Administrator manually closed this request.\"\n}", "options": { "raw": { "headerFamily": "json", @@ -7467,7 +7809,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -7478,7 +7820,7 @@ } }, { - "id": "b764f1f2-50f4-4d39-8eee-ddd277e00970", + "id": "1f694f1d-8715-4e57-88a9-bba3d337c24c", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -7507,7 +7849,7 @@ }, "response": [ { - "id": "86fd60e1-0b24-4cc2-99f9-fa740ab2a38e", + "id": "e0813c03-7929-4c97-bcaa-4e4bb3a32c2b", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -7545,12 +7887,12 @@ "value": "application/json" } ], - "body": "{\n \"approvalsMustBeExternal\": \"\",\n \"autoApprovalEnabled\": \"\",\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": \"\",\n \"allowRequestOnBehalfOfEmployeeByManager\": \"\"\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": \"\",\n \"daysBetweenReminders\": \"\",\n \"maxReminders\": \"\",\n \"fallbackApproverRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": \"\",\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"sourceOwner\"\n }\n}", + "body": "{\n \"approvalsMustBeExternal\": true,\n \"autoApprovalEnabled\": true,\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": true,\n \"allowRequestOnBehalfOfEmployeeByManager\": true\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": 0,\n \"daysBetweenReminders\": 0,\n \"maxReminders\": 1,\n \"fallbackApproverRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\",\n \"name\": \"Alison Ferguso\",\n \"email\": \"alison.ferguso@identitysoon.com\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": true,\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"entitlementOwner, sourceOwner, manager, workgroup:2c918084660f45d6016617daa9210584\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97229ee4-9f67-4929-bd87-d98ee06b3ddf", + "id": "78d30a72-1bc0-4045-b8df-f8b8b2f4a3b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7588,12 +7930,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a65ef31c-4978-46bd-b7cb-23f5172724d1", + "id": "9b601b76-de51-445c-b34b-7b72af8b5eb4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7631,12 +7973,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b557d354-fc48-4a05-bc57-100a1469ded4", + "id": "8bbebfa6-7414-471b-9988-941a33ef579f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7674,12 +8016,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e5bbe2b7-3d8a-40f1-8e3c-bdfd7cf66a7b", + "id": "3109a399-5959-49ec-bbca-5f759cac72ca", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7717,12 +8059,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9483e3e5-74a0-4402-86ef-39397e06b060", + "id": "f2678bc9-c467-4fbe-8b3c-04d8cc64beaf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7760,7 +8102,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -7771,7 +8113,7 @@ } }, { - "id": "53e163a7-d6c2-4333-87ef-5f3da312e538", + "id": "1d345861-2c69-4c75-8267-8a8a11391c86", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -7802,7 +8144,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"approvalsMustBeExternal\": \"\",\n \"autoApprovalEnabled\": \"\",\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": \"\",\n \"allowRequestOnBehalfOfEmployeeByManager\": \"\"\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": \"\",\n \"daysBetweenReminders\": \"\",\n \"maxReminders\": \"\",\n \"fallbackApproverRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": \"\",\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"sourceOwner\"\n }\n}", + "raw": "{\n \"approvalsMustBeExternal\": true,\n \"autoApprovalEnabled\": true,\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": true,\n \"allowRequestOnBehalfOfEmployeeByManager\": true\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": 0,\n \"daysBetweenReminders\": 0,\n \"maxReminders\": 1,\n \"fallbackApproverRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\",\n \"name\": \"Alison Ferguso\",\n \"email\": \"alison.ferguso@identitysoon.com\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": true,\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"entitlementOwner, sourceOwner, manager, workgroup:2c918084660f45d6016617daa9210584\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7813,7 +8155,7 @@ }, "response": [ { - "id": "ec0f02a0-a10d-4b51-bc08-2b23a24034ad", + "id": "03997b50-89d2-4f71-b7e1-5177c8daca7e", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -7847,7 +8189,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"approvalsMustBeExternal\": \"\",\n \"autoApprovalEnabled\": \"\",\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": \"\",\n \"allowRequestOnBehalfOfEmployeeByManager\": \"\"\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": \"\",\n \"daysBetweenReminders\": \"\",\n \"maxReminders\": \"\",\n \"fallbackApproverRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": \"\",\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"sourceOwner\"\n }\n}", + "raw": "{\n \"approvalsMustBeExternal\": true,\n \"autoApprovalEnabled\": true,\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": true,\n \"allowRequestOnBehalfOfEmployeeByManager\": true\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": 0,\n \"daysBetweenReminders\": 0,\n \"maxReminders\": 1,\n \"fallbackApproverRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\",\n \"name\": \"Alison Ferguso\",\n \"email\": \"alison.ferguso@identitysoon.com\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": true,\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"entitlementOwner, sourceOwner, manager, workgroup:2c918084660f45d6016617daa9210584\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7864,12 +8206,12 @@ "value": "application/json" } ], - "body": "{\n \"approvalsMustBeExternal\": \"\",\n \"autoApprovalEnabled\": \"\",\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": \"\",\n \"allowRequestOnBehalfOfEmployeeByManager\": \"\"\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": \"\",\n \"daysBetweenReminders\": \"\",\n \"maxReminders\": \"\",\n \"fallbackApproverRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": \"\",\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"sourceOwner\"\n }\n}", + "body": "{\n \"approvalsMustBeExternal\": true,\n \"autoApprovalEnabled\": true,\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": true,\n \"allowRequestOnBehalfOfEmployeeByManager\": true\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": 0,\n \"daysBetweenReminders\": 0,\n \"maxReminders\": 1,\n \"fallbackApproverRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\",\n \"name\": \"Alison Ferguso\",\n \"email\": \"alison.ferguso@identitysoon.com\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": true,\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"entitlementOwner, sourceOwner, manager, workgroup:2c918084660f45d6016617daa9210584\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "27ba48a6-d90f-4b07-b0d9-f6c93ec4027b", + "id": "951c036f-176e-4f88-8176-ee22b188e36b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7903,7 +8245,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"approvalsMustBeExternal\": \"\",\n \"autoApprovalEnabled\": \"\",\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": \"\",\n \"allowRequestOnBehalfOfEmployeeByManager\": \"\"\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": \"\",\n \"daysBetweenReminders\": \"\",\n \"maxReminders\": \"\",\n \"fallbackApproverRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": \"\",\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"sourceOwner\"\n }\n}", + "raw": "{\n \"approvalsMustBeExternal\": true,\n \"autoApprovalEnabled\": true,\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": true,\n \"allowRequestOnBehalfOfEmployeeByManager\": true\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": 0,\n \"daysBetweenReminders\": 0,\n \"maxReminders\": 1,\n \"fallbackApproverRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\",\n \"name\": \"Alison Ferguso\",\n \"email\": \"alison.ferguso@identitysoon.com\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": true,\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"entitlementOwner, sourceOwner, manager, workgroup:2c918084660f45d6016617daa9210584\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7920,12 +8262,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bc15b899-93d4-4f8c-b24b-a01c53320712", + "id": "f2e74ae2-cec8-444f-8de6-072392cfee23", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7959,7 +8301,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"approvalsMustBeExternal\": \"\",\n \"autoApprovalEnabled\": \"\",\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": \"\",\n \"allowRequestOnBehalfOfEmployeeByManager\": \"\"\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": \"\",\n \"daysBetweenReminders\": \"\",\n \"maxReminders\": \"\",\n \"fallbackApproverRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": \"\",\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"sourceOwner\"\n }\n}", + "raw": "{\n \"approvalsMustBeExternal\": true,\n \"autoApprovalEnabled\": true,\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": true,\n \"allowRequestOnBehalfOfEmployeeByManager\": true\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": 0,\n \"daysBetweenReminders\": 0,\n \"maxReminders\": 1,\n \"fallbackApproverRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\",\n \"name\": \"Alison Ferguso\",\n \"email\": \"alison.ferguso@identitysoon.com\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": true,\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"entitlementOwner, sourceOwner, manager, workgroup:2c918084660f45d6016617daa9210584\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7976,12 +8318,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f1231bc4-55c4-4195-b96d-b815c46e0cdd", + "id": "20dae0bb-afa0-4f6e-a259-725eb74c3690", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8015,7 +8357,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"approvalsMustBeExternal\": \"\",\n \"autoApprovalEnabled\": \"\",\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": \"\",\n \"allowRequestOnBehalfOfEmployeeByManager\": \"\"\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": \"\",\n \"daysBetweenReminders\": \"\",\n \"maxReminders\": \"\",\n \"fallbackApproverRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": \"\",\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"sourceOwner\"\n }\n}", + "raw": "{\n \"approvalsMustBeExternal\": true,\n \"autoApprovalEnabled\": true,\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": true,\n \"allowRequestOnBehalfOfEmployeeByManager\": true\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": 0,\n \"daysBetweenReminders\": 0,\n \"maxReminders\": 1,\n \"fallbackApproverRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\",\n \"name\": \"Alison Ferguso\",\n \"email\": \"alison.ferguso@identitysoon.com\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": true,\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"entitlementOwner, sourceOwner, manager, workgroup:2c918084660f45d6016617daa9210584\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8032,12 +8374,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "58a0299e-f312-4429-9a7e-c6be37530a78", + "id": "1f9717dd-bcef-4fb9-bb58-674e936b6917", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8071,7 +8413,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"approvalsMustBeExternal\": \"\",\n \"autoApprovalEnabled\": \"\",\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": \"\",\n \"allowRequestOnBehalfOfEmployeeByManager\": \"\"\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": \"\",\n \"daysBetweenReminders\": \"\",\n \"maxReminders\": \"\",\n \"fallbackApproverRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": \"\",\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"sourceOwner\"\n }\n}", + "raw": "{\n \"approvalsMustBeExternal\": true,\n \"autoApprovalEnabled\": true,\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": true,\n \"allowRequestOnBehalfOfEmployeeByManager\": true\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": 0,\n \"daysBetweenReminders\": 0,\n \"maxReminders\": 1,\n \"fallbackApproverRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\",\n \"name\": \"Alison Ferguso\",\n \"email\": \"alison.ferguso@identitysoon.com\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": true,\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"entitlementOwner, sourceOwner, manager, workgroup:2c918084660f45d6016617daa9210584\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8088,12 +8430,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "afc3c885-f5e6-4525-89b3-5592926f7cc9", + "id": "dcaa9c44-9075-493a-8da5-122893903d88", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8127,7 +8469,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"approvalsMustBeExternal\": \"\",\n \"autoApprovalEnabled\": \"\",\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": \"\",\n \"allowRequestOnBehalfOfEmployeeByManager\": \"\"\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": \"\",\n \"daysBetweenReminders\": \"\",\n \"maxReminders\": \"\",\n \"fallbackApproverRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": \"\",\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"sourceOwner\"\n }\n}", + "raw": "{\n \"approvalsMustBeExternal\": true,\n \"autoApprovalEnabled\": true,\n \"requestOnBehalfOfConfig\": {\n \"allowRequestOnBehalfOfAnyoneByAnyone\": true,\n \"allowRequestOnBehalfOfEmployeeByManager\": true\n },\n \"approvalReminderAndEscalationConfig\": {\n \"daysUntilEscalation\": 0,\n \"daysBetweenReminders\": 0,\n \"maxReminders\": 1,\n \"fallbackApproverRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\",\n \"name\": \"Alison Ferguso\",\n \"email\": \"alison.ferguso@identitysoon.com\"\n }\n },\n \"entitlementRequestConfig\": {\n \"allowEntitlementRequest\": true,\n \"requestCommentsRequired\": false,\n \"deniedCommentsRequired\": false,\n \"grantRequestApprovalSchemes\": \"entitlementOwner, sourceOwner, manager, workgroup:2c918084660f45d6016617daa9210584\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8144,7 +8486,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -8155,7 +8497,7 @@ } }, { - "id": "1a91a8d4-5b37-4fb0-9b53-d8fb591d0aa8", + "id": "2a56f3d3-8875-40fc-81a3-78f601d50933", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -8178,7 +8520,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8187,7 +8529,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8196,7 +8538,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8205,7 +8547,7 @@ "type": "text/plain" }, "key": "assigned-to", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8223,7 +8565,7 @@ "type": "text/plain" }, "key": "limit", - "value": "250" + "value": "100" }, { "disabled": true, @@ -8232,7 +8574,7 @@ "type": "text/plain" }, "key": "offset", - "value": "" + "value": "10" }, { "disabled": true, @@ -8241,7 +8583,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "accountActivityItemId eq \"2c918086771c86df0177401efcdf54c0\"" }, { "disabled": true, @@ -8250,7 +8592,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -8266,7 +8608,7 @@ }, "response": [ { - "id": "2421f33f-ddfd-4ad4-ba74-a19cb1202312", + "id": "5c0c5470-bfaa-425b-b3c2-0a005565934e", "name": "List of requested item status.", "originalRequest": { "url": { @@ -8284,7 +8626,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8293,7 +8635,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8302,7 +8644,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8311,7 +8653,7 @@ "type": "text/plain" }, "key": "assigned-to", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8329,7 +8671,7 @@ "type": "text/plain" }, "key": "limit", - "value": "250" + "value": "100" }, { "disabled": true, @@ -8338,7 +8680,7 @@ "type": "text/plain" }, "key": "offset", - "value": "" + "value": "10" }, { "disabled": true, @@ -8347,7 +8689,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "accountActivityItemId eq \"2c918086771c86df0177401efcdf54c0\"" }, { "disabled": true, @@ -8356,7 +8698,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -8386,12 +8728,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"cancelledRequestDetails\": {\n \"comment\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n },\n \"errorMessages\": [\n [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n ],\n \"state\": \"REJECTED\",\n \"approvalDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"APPROVED\",\n \"scheme\": \"ENTITLEMENT_OWNER\",\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"comment\": \"\",\n \"removeDate\": \"\"\n },\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"APPROVED\",\n \"scheme\": \"SOURCE_OWNER\",\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"comment\": \"\",\n \"removeDate\": \"\"\n }\n ],\n \"manualWorkItemDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"APPROVED\",\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ]\n },\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"ARCHIVED\",\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION\"\n }\n ]\n }\n ],\n \"accountActivityItemId\": \"\",\n \"requestType\": \"REVOKE_ACCESS\",\n \"modified\": \"\",\n \"created\": \"\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"created\": \"\"\n },\n \"sodViolationContext\": {\n \"state\": \"ERROR\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"sitf\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n },\n \"provisioningDetails\": {\n \"orderedSubPhaseReferences\": \"\"\n },\n \"preApprovalTriggerDetails\": {\n \"comment\": \"\",\n \"reviewer\": \"\",\n \"decision\": \"APPROVED\"\n },\n \"accessRequestPhases\": [\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"COMPLETED\",\n \"result\": \"SUCCESSFUL\",\n \"phaseReference\": \"\"\n },\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"EXECUTING\",\n \"result\": \"FAILED\",\n \"phaseReference\": \"\"\n }\n ],\n \"description\": \"\",\n \"removeDate\": \"\",\n \"cancelable\": \"\",\n \"accessRequestId\": \"\",\n \"clientMetadata\": {\n \"elit1\": \"\",\n \"idfb5\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"cancelledRequestDetails\": {\n \"comment\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n },\n \"errorMessages\": [\n [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n ],\n \"state\": \"EXECUTING\",\n \"approvalDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"CANCELLED\",\n \"scheme\": \"GOVERNANCE_GROUP\",\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"comment\": \"\",\n \"removeDate\": \"\"\n },\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"PENDING\",\n \"scheme\": \"ENTITLEMENT_OWNER\",\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"comment\": \"\",\n \"removeDate\": \"\"\n }\n ],\n \"manualWorkItemDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"APPROVED\",\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ]\n },\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"EXPIRED\",\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n }\n ]\n }\n ],\n \"accountActivityItemId\": \"\",\n \"requestType\": \"GRANT_ACCESS\",\n \"modified\": \"\",\n \"created\": \"\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"created\": \"\"\n },\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"dolorebf1\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n },\n \"provisioningDetails\": {\n \"orderedSubPhaseReferences\": \"\"\n },\n \"preApprovalTriggerDetails\": {\n \"comment\": \"\",\n \"reviewer\": \"\",\n \"decision\": \"APPROVED\"\n },\n \"accessRequestPhases\": [\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"EXECUTING\",\n \"result\": \"SUCCESSFUL\",\n \"phaseReference\": \"\"\n },\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"EXECUTING\",\n \"result\": \"FAILED\",\n \"phaseReference\": \"\"\n }\n ],\n \"description\": \"\",\n \"removeDate\": \"\",\n \"cancelable\": \"\",\n \"accessRequestId\": \"\",\n \"clientMetadata\": {\n \"laborisb\": \"\",\n \"essef\": \"\"\n }\n }\n]", + "body": "[\n {\n \"name\": \"AccessProfile1\",\n \"type\": \"ACCESS_PROFILE\",\n \"cancelledRequestDetails\": {\n \"comment\": \"This request must be cancelled.\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"modified\": \"2019-12-20T09:17:12.192Z\"\n },\n \"errorMessages\": [\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 \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\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 \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n ],\n \"state\": \"EXECUTING\",\n \"approvalDetails\": [\n {\n \"forwarded\": false,\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"status\": \"PENDING\",\n \"scheme\": \"MANAGER\",\n \"errorMessages\": [\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 \"comment\": \"I approve this request\",\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"forwarded\": false,\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"status\": \"PENDING\",\n \"scheme\": \"MANAGER\",\n \"errorMessages\": [\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 \"comment\": \"I approve this request\",\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"manualWorkItemDetails\": [\n {\n \"forwarded\": true,\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"status\": \"PENDING\",\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 },\n {\n \"forwarded\": true,\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"status\": \"PENDING\",\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 }\n ],\n \"accountActivityItemId\": \"2c9180926cbfbddd016cbfc7c3b10010\",\n \"requestType\": \"GRANT_ACCESS\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\"\n },\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 \"provisioningDetails\": {\n \"orderedSubPhaseReferences\": \"manualWorkItemDetails\"\n },\n \"preApprovalTriggerDetails\": {\n \"comment\": \"Access is Approved\",\n \"reviewer\": \"John Doe\",\n \"decision\": \"APPROVED\"\n },\n \"accessRequestPhases\": [\n {\n \"started\": \"2020-07-11T00:00:00Z\",\n \"finished\": \"2020-07-12T00:00:00Z\",\n \"name\": \"APPROVAL_PHASE\",\n \"state\": \"COMPLETED\",\n \"result\": \"SUCCESSFUL\",\n \"phaseReference\": \"approvalDetails\"\n },\n {\n \"started\": \"2020-07-11T00:00:00Z\",\n \"finished\": \"2020-07-12T00:00:00Z\",\n \"name\": \"APPROVAL_PHASE\",\n \"state\": \"COMPLETED\",\n \"result\": \"SUCCESSFUL\",\n \"phaseReference\": \"approvalDetails\"\n }\n ],\n \"description\": \"This is the Engineering role that engineers are granted.\",\n \"removeDate\": \"2019-10-23T00:00:00.000Z\",\n \"cancelable\": true,\n \"accessRequestId\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"clientMetadata\": {\n \"key1\": \"value1\",\n \"key2\": \"value2\"\n }\n },\n {\n \"name\": \"AccessProfile1\",\n \"type\": \"ACCESS_PROFILE\",\n \"cancelledRequestDetails\": {\n \"comment\": \"This request must be cancelled.\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"modified\": \"2019-12-20T09:17:12.192Z\"\n },\n \"errorMessages\": [\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 \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\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 \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n ],\n \"state\": \"EXECUTING\",\n \"approvalDetails\": [\n {\n \"forwarded\": false,\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"status\": \"PENDING\",\n \"scheme\": \"MANAGER\",\n \"errorMessages\": [\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 \"comment\": \"I approve this request\",\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"forwarded\": false,\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"status\": \"PENDING\",\n \"scheme\": \"MANAGER\",\n \"errorMessages\": [\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 \"comment\": \"I approve this request\",\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"manualWorkItemDetails\": [\n {\n \"forwarded\": true,\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"status\": \"PENDING\",\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 },\n {\n \"forwarded\": true,\n \"originalOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"status\": \"PENDING\",\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 }\n ],\n \"accountActivityItemId\": \"2c9180926cbfbddd016cbfc7c3b10010\",\n \"requestType\": \"GRANT_ACCESS\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\"\n },\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 \"provisioningDetails\": {\n \"orderedSubPhaseReferences\": \"manualWorkItemDetails\"\n },\n \"preApprovalTriggerDetails\": {\n \"comment\": \"Access is Approved\",\n \"reviewer\": \"John Doe\",\n \"decision\": \"APPROVED\"\n },\n \"accessRequestPhases\": [\n {\n \"started\": \"2020-07-11T00:00:00Z\",\n \"finished\": \"2020-07-12T00:00:00Z\",\n \"name\": \"APPROVAL_PHASE\",\n \"state\": \"COMPLETED\",\n \"result\": \"SUCCESSFUL\",\n \"phaseReference\": \"approvalDetails\"\n },\n {\n \"started\": \"2020-07-11T00:00:00Z\",\n \"finished\": \"2020-07-12T00:00:00Z\",\n \"name\": \"APPROVAL_PHASE\",\n \"state\": \"COMPLETED\",\n \"result\": \"SUCCESSFUL\",\n \"phaseReference\": \"approvalDetails\"\n }\n ],\n \"description\": \"This is the Engineering role that engineers are granted.\",\n \"removeDate\": \"2019-10-23T00:00:00.000Z\",\n \"cancelable\": true,\n \"accessRequestId\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"clientMetadata\": {\n \"key1\": \"value1\",\n \"key2\": \"value2\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d8788609-6201-4239-b611-f58049293688", + "id": "59a01d59-7ae5-4327-b868-275e3766bf54", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8409,7 +8751,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8418,7 +8760,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8427,7 +8769,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8436,7 +8778,7 @@ "type": "text/plain" }, "key": "assigned-to", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8454,7 +8796,7 @@ "type": "text/plain" }, "key": "limit", - "value": "250" + "value": "100" }, { "disabled": true, @@ -8463,7 +8805,7 @@ "type": "text/plain" }, "key": "offset", - "value": "" + "value": "10" }, { "disabled": true, @@ -8472,7 +8814,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "accountActivityItemId eq \"2c918086771c86df0177401efcdf54c0\"" }, { "disabled": true, @@ -8481,7 +8823,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -8511,12 +8853,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8ac31aa3-23e5-453f-87ac-9bdd6fe6504d", + "id": "96d3fc34-4215-48bc-bf43-6586802e6576", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8534,7 +8876,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8543,7 +8885,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8552,7 +8894,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8561,7 +8903,7 @@ "type": "text/plain" }, "key": "assigned-to", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8579,7 +8921,7 @@ "type": "text/plain" }, "key": "limit", - "value": "250" + "value": "100" }, { "disabled": true, @@ -8588,7 +8930,7 @@ "type": "text/plain" }, "key": "offset", - "value": "" + "value": "10" }, { "disabled": true, @@ -8597,7 +8939,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "accountActivityItemId eq \"2c918086771c86df0177401efcdf54c0\"" }, { "disabled": true, @@ -8606,7 +8948,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -8636,12 +8978,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5055b7be-a3f8-4616-84b0-e4a1eb77ca1d", + "id": "66a8247c-f7ca-429a-ad8a-8bf5e385d891", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8659,7 +9001,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8668,7 +9010,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8677,7 +9019,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8686,7 +9028,7 @@ "type": "text/plain" }, "key": "assigned-to", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8704,7 +9046,7 @@ "type": "text/plain" }, "key": "limit", - "value": "250" + "value": "100" }, { "disabled": true, @@ -8713,7 +9055,7 @@ "type": "text/plain" }, "key": "offset", - "value": "" + "value": "10" }, { "disabled": true, @@ -8722,7 +9064,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "accountActivityItemId eq \"2c918086771c86df0177401efcdf54c0\"" }, { "disabled": true, @@ -8731,7 +9073,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -8761,12 +9103,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "29a6adb7-c417-4643-9422-a472e90d538d", + "id": "c0cd8052-f32c-4343-843b-d749720c995f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8784,7 +9126,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8793,7 +9135,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8802,7 +9144,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8811,7 +9153,7 @@ "type": "text/plain" }, "key": "assigned-to", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8829,7 +9171,7 @@ "type": "text/plain" }, "key": "limit", - "value": "250" + "value": "100" }, { "disabled": true, @@ -8838,7 +9180,7 @@ "type": "text/plain" }, "key": "offset", - "value": "" + "value": "10" }, { "disabled": true, @@ -8847,7 +9189,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "accountActivityItemId eq \"2c918086771c86df0177401efcdf54c0\"" }, { "disabled": true, @@ -8856,7 +9198,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -8886,12 +9228,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cc1edcfd-d9a7-414a-aa75-ba50fdb57a90", + "id": "865418a9-7057-4a4e-989f-ee1739f019b5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8909,7 +9251,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8918,7 +9260,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8927,7 +9269,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8936,7 +9278,7 @@ "type": "text/plain" }, "key": "assigned-to", - "value": "" + "value": "2c9180877b2b6ea4017b2c545f971429" }, { "disabled": true, @@ -8954,7 +9296,7 @@ "type": "text/plain" }, "key": "limit", - "value": "250" + "value": "100" }, { "disabled": true, @@ -8963,7 +9305,7 @@ "type": "text/plain" }, "key": "offset", - "value": "" + "value": "10" }, { "disabled": true, @@ -8972,7 +9314,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "accountActivityItemId eq \"2c918086771c86df0177401efcdf54c0\"" }, { "disabled": true, @@ -8981,7 +9323,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -9011,7 +9353,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -9028,7 +9370,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": "e206c9cb-1749-47fa-a4e0-6cf621b6b9b9", + "id": "e1fc9f11-b37a-4d10-9f1f-e9c9f48145b6", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -9051,7 +9393,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9060,7 +9402,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9069,7 +9411,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9078,7 +9420,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9105,7 +9447,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -9114,7 +9456,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9123,7 +9465,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -9139,7 +9481,7 @@ }, "response": [ { - "id": "cc9b1c46-2194-4f03-8e04-6d4229cbf507", + "id": "2a97d45d-3cd0-4d3d-941c-a4138586d9fe", "name": "List of account activities", "originalRequest": { "url": { @@ -9157,7 +9499,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9166,7 +9508,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9175,7 +9517,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9184,7 +9526,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9211,7 +9553,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -9220,7 +9562,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9229,7 +9571,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -9259,12 +9601,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"INCOMPLETE\",\n \"type\": \"\",\n \"requesterIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"targetIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"errors\": [\n \"\",\n \"\"\n ],\n \"warnings\": [\n \"\",\n \"\"\n ],\n \"items\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"EXPIRED\",\n \"provisioningStatus\": \"UNVERIFIABLE\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"DISABLE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"inb5\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"REJECTED\",\n \"provisioningStatus\": \"RETRY\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"nostruda72\": \"\",\n \"dolor_ac0\": \"\",\n \"cillume__\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"VERIFYING\",\n \"clientMetadata\": {\n \"pariatur_ad\": \"\",\n \"anim4f\": \"\"\n },\n \"cancelable\": \"\",\n \"cancelComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"INCOMPLETE\",\n \"type\": \"\",\n \"requesterIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"targetIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"errors\": [\n \"\",\n \"\"\n ],\n \"warnings\": [\n \"\",\n \"\"\n ],\n \"items\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"UNVERIFIABLE\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"DISABLE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"labore7\": \"\",\n \"nostrud301\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"REJECTED\",\n \"provisioningStatus\": \"FINISHED\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"dolore_082\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"VERIFYING\",\n \"clientMetadata\": {\n \"irure3_\": \"\",\n \"do_85d\": \"\",\n \"esse0\": \"\",\n \"qui41\": \"\"\n },\n \"cancelable\": \"\",\n \"cancelComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\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\": [\n \"sunt labore voluptate cillum\",\n \"sunt dolor laborum fugiat Ut\"\n ],\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 \"consectetur_9d\": \"nostrud consectetur cupidatat ad\",\n \"id_ca\": \"adipisicing eiusmod nostrud\"\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\": [\n \"esse\",\n \"aute tempor magna non\"\n ],\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 \"enim9dc\": \"et non\",\n \"est7a\": \"in\"\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": "adf16e9d-6157-4162-9a5f-7ff4166036ae", + "id": "4d7a5067-6e26-4fb7-a0ed-66810b80905e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9282,7 +9624,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9291,7 +9633,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9300,7 +9642,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9309,7 +9651,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9336,7 +9678,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -9345,7 +9687,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9354,7 +9696,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -9384,12 +9726,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c6132e93-eec2-4ca3-9547-eeefecd4d9a7", + "id": "24300c7b-3782-4f28-a1a7-99afc8e2014a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9407,7 +9749,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9416,7 +9758,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9425,7 +9767,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9434,7 +9776,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9461,7 +9803,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -9470,7 +9812,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9479,7 +9821,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -9509,12 +9851,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5f90933b-40a7-40f8-a362-c22a23d21c53", + "id": "e1d89372-b991-40fe-af4c-776c32f5b404", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -9532,7 +9874,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9541,7 +9883,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9550,7 +9892,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9559,7 +9901,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9586,7 +9928,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -9595,7 +9937,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9604,7 +9946,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -9634,12 +9976,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "33e6d723-520b-4dba-8ad1-b854269f4625", + "id": "442f1971-7662-4941-91eb-da2416e353b6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -9657,7 +9999,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9666,7 +10008,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9675,7 +10017,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9684,7 +10026,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9711,7 +10053,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -9720,7 +10062,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9729,7 +10071,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -9759,12 +10101,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e18ef505-320c-4f9a-a1f7-18e6ed1e66b0", + "id": "bfeb1d07-e780-4343-b50e-39e90347ada5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9782,7 +10124,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9791,7 +10133,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9800,7 +10142,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9809,7 +10151,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9836,7 +10178,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -9845,7 +10187,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -9854,7 +10196,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -9884,7 +10226,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -9895,7 +10237,7 @@ } }, { - "id": "a73e6396-06e1-4a4e-b69c-0cd180c3360e", + "id": "c3418d72-c95c-493d-a0c2-bf0eb707a714", "name": "Get Account Activity", "request": { "name": "Get Account Activity", @@ -9915,7 +10257,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -9936,7 +10278,7 @@ }, "response": [ { - "id": "b3a6c744-3fc9-4800-bbd6-f8a1a57517c9", + "id": "27499097-7fe0-40c7-a5b0-4442cfd4a93f", "name": "An account activity object", "originalRequest": { "url": { @@ -9975,12 +10317,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"FAILURE\",\n \"type\": \"\",\n \"requesterIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"targetIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"errors\": [\n \"\",\n \"\"\n ],\n \"warnings\": [\n \"\",\n \"\"\n ],\n \"items\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"RETURNED\",\n \"provisioningStatus\": \"COMMITED\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"CREATE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"pariatur_b1d\": \"\",\n \"magna_1\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"REJECTED\",\n \"provisioningStatus\": \"UNVERIFIABLE\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"MODIFY\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"consecteturf\": \"\",\n \"esse9f7\": \"\",\n \"enim_985\": \"\",\n \"incididunt_c6b\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"id3ee\": \"\",\n \"reprehenderite3\": \"\"\n },\n \"cancelable\": \"\",\n \"cancelComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\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\": [\n \"ex ea in\",\n \"ea sint dolor\"\n ],\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 \"Duisc\": \"sed laborum ad magna\",\n \"tempor0c\": \"irure dolor enim sunt\"\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1cd619e4-a0d7-45e6-8fa6-f73f0f99f6f4", + "id": "2a22aade-a1d0-4543-b205-4beec37ada49", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10019,12 +10361,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "cc35b1a4-e34a-4eef-898e-07fd095dd9ce", + "id": "ce9c0cb8-dabe-4bc4-bfbc-7939375715e6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10063,12 +10405,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "32cbc466-8889-407f-8378-33cef6f1fc0c", + "id": "5a0b1126-b6c8-4e80-87c7-76284c37b530", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10107,12 +10449,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "72952ec8-94cb-4312-ac7d-bf78ef9f401f", + "id": "e82b5780-6500-42cf-90e8-6f225a3d1202", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -10151,12 +10493,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "707eb2ae-ab56-42d0-acea-332f99240689", + "id": "0fe4f33d-8076-418e-8e63-833e5c2654c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10195,12 +10537,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f1c75e11-8f27-4ad3-b0c5-d1bbfa038d47", + "id": "c7e50b59-bf00-4392-8712-b5d535f0066f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10239,7 +10581,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -10256,7 +10598,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": "5f3b9909-10a9-4df6-8f38-ffb0db6a9c13", + "id": "291c6606-327e-47ac-b637-e09f4e20c420", "name": "In-progress Account Aggregation status", "request": { "name": "In-progress Account Aggregation status", @@ -10277,7 +10619,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808477a6b0c60177a81146b8110b", "key": "id", "disabled": true, "description": { @@ -10298,7 +10640,7 @@ }, "response": [ { - "id": "4b2f15ec-22a3-48f2-abd0-9bd777d7d63e", + "id": "e96a2e8a-6fce-49a2-bd53-cc12a22aebd1", "name": "An account aggregation status object", "originalRequest": { "url": { @@ -10338,12 +10680,12 @@ "value": "application/json" } ], - "body": "{\n \"start\": \"\",\n \"status\": \"COMPLETED\",\n \"totalAccounts\": \"\",\n \"processedAccounts\": \"\"\n}", + "body": "{\n \"start\": \"2021-01-31T14:30:05.104Z\",\n \"status\": \"ACCOUNTS_COLLECTED\",\n \"totalAccounts\": 520,\n \"processedAccounts\": 150\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "20428100-9abb-41e5-b1e6-805152c4c1b6", + "id": "d4966d76-e89a-4df2-ab63-d4f84d5c708f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10383,12 +10725,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "39414544-951d-44d0-8b9f-94cb8819a202", + "id": "6781de6f-353c-4f5c-89b7-b480fd5e6286", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10428,12 +10770,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "16f0dff8-aa1c-4f04-b098-634c74bb81e0", + "id": "606e9934-acab-429a-b935-b32fbbb85249", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -10473,12 +10815,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1d9b23c5-50f8-4842-80cc-488b5b07943c", + "id": "200b5d0c-3b33-4d3b-994f-78c8bf203a6e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10518,12 +10860,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b314656d-9bcb-491f-b15a-7355aa5da8ec", + "id": "50a8da7e-7793-4bc9-b676-4aade898d5ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10563,7 +10905,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -10580,7 +10922,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": "96f6dc96-a404-41ab-b3d3-568eb8196f35", + "id": "8a8c8cd9-05b4-4c8d-8209-6b7556aa1b6a", "name": "Returns account usage insights", "request": { "name": "Returns account usage insights", @@ -10623,7 +10965,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -10632,13 +10974,13 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-date" } ], "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "accountId", "disabled": true, "description": { @@ -10659,7 +11001,7 @@ }, "response": [ { - "id": "d2e9b916-ee40-4e84-9637-fdd4c1a23a09", + "id": "ddcd04a4-97f2-4d3e-8375-a9a07e75efbe", "name": "Summary of account usage insights for past 12 months.", "originalRequest": { "url": { @@ -10697,7 +11039,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -10706,7 +11048,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-date" } ], "variable": [] @@ -10736,12 +11078,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"date\": \"\",\n \"count\": \"\"\n },\n {\n \"date\": \"\",\n \"count\": \"\"\n }\n]", + "body": "[\n {\n \"date\": \"2023-04-21\",\n \"count\": 10\n },\n {\n \"date\": \"2023-04-21\",\n \"count\": 10\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ddcad498-57b9-4659-9c43-f11d75014d3a", + "id": "0ec3c648-aba9-417c-8ae4-2d8311c3a81b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10779,7 +11121,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -10788,7 +11130,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-date" } ], "variable": [] @@ -10818,12 +11160,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4f1609dd-c6f6-466a-ac7a-7f1bd1c75cb1", + "id": "df9e7e17-f927-482e-b10a-a3f693e168e6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10861,7 +11203,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -10870,7 +11212,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-date" } ], "variable": [] @@ -10900,12 +11242,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aa520b9a-5b21-4749-a522-f9347f006411", + "id": "4565f553-d676-455f-a1b9-b1079930b340", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10943,7 +11285,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -10952,7 +11294,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-date" } ], "variable": [] @@ -10982,12 +11324,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e470a810-25bc-4412-a460-5e9ae9641fc6", + "id": "4390fa4c-e3c6-42d9-b28c-0153df925f6c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11025,7 +11367,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -11034,7 +11376,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-date" } ], "variable": [] @@ -11064,12 +11406,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e41147d4-9f9c-4a86-a263-9aea8045fd20", + "id": "4dacfbe1-55c4-4f22-ba6f-28bde6155e90", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11107,7 +11449,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -11116,7 +11458,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-date" } ], "variable": [] @@ -11146,7 +11488,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -11163,7 +11505,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": "f41b36a2-2e08-46c3-964f-7c942cbcbb48", + "id": "10ceca75-d212-467b-b3c7-76ac27ef1cd0", "name": "Accounts List", "request": { "name": "Accounts List", @@ -11186,7 +11528,7 @@ "type": "text/plain" }, "key": "detailLevel", - "value": "SLIM" + "value": "FULL" }, { "disabled": true, @@ -11213,7 +11555,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -11222,7 +11564,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "identityId eq \"2c9180858082150f0180893dbaf44201\"" }, { "disabled": true, @@ -11231,7 +11573,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "id,name" } ], "variable": [] @@ -11247,8 +11589,8 @@ }, "response": [ { - "id": "816008c3-aeb9-42e6-8c91-ce322ced45bf", - "name": "List of account objects", + "id": "e480253a-b273-48bd-b15f-6f6db7dc50bb", + "name": "SlimAccounts", "originalRequest": { "url": { "path": [ @@ -11265,7 +11607,7 @@ "type": "text/plain" }, "key": "detailLevel", - "value": "SLIM" + "value": "FULL" }, { "disabled": true, @@ -11292,7 +11634,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -11301,7 +11643,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "identityId eq \"2c9180858082150f0180893dbaf44201\"" }, { "disabled": true, @@ -11310,7 +11652,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "id,name" } ], "variable": [] @@ -11340,13 +11682,13 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"uuid\": \"\",\n \"nativeIdentity\": \"\",\n \"description\": \"\",\n \"disabled\": \"\",\n \"locked\": \"\",\n \"manuallyCorrelated\": \"\",\n \"hasEntitlements\": \"\",\n \"sourceId\": \"\",\n \"sourceName\": \"\",\n \"identityId\": \"\",\n \"attributes\": {\n \"fugiat9a\": -60676332,\n \"irure_ede\": 44822759.1059677,\n \"sint0\": 81666873,\n \"Duis_80\": true\n }\n },\n {\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"uuid\": \"\",\n \"nativeIdentity\": \"\",\n \"description\": \"\",\n \"disabled\": \"\",\n \"locked\": \"\",\n \"manuallyCorrelated\": \"\",\n \"hasEntitlements\": \"\",\n \"sourceId\": \"\",\n \"sourceName\": \"\",\n \"identityId\": \"\",\n \"attributes\": {\n \"iruref3\": 99284869\n }\n }\n]", + "body": "[\n {\n \"attributes\": null,\n \"created\": \"2021-09-28T02:15:44.644Z\",\n \"description\": null,\n \"disabled\": false,\n \"features\": \"PROVISIONING, GROUP_PROVISIONING, SYNC_PROVISIONING, AUTHENTICATE\",\n \"hasEntitlements\": true,\n \"id\": \"2c9180867c184ff6017c2a2fbf031667\",\n \"identityId\": \"2c9180867c184ff6017c2a2fbf031666\",\n \"locked\": false,\n \"manuallyCorrelated\": false,\n \"modified\": \"2021-09-28T02:16:12.207Z\",\n \"name\": \"Geovanni.0a7cad6df\",\n \"nativeIdentity\": \"CN=Geovanni 0a7cad6df,OU=hpun,OU=org-data-service,DC=TestAutomationAD,DC=local\",\n \"sourceId\": \"2c91808b7c28b350017c2a2ec5790aa1\",\n \"uuid\": \"{e4218fa4-da52-4bb0-aa41-d2dcc08a7ad8}\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e298b84d-ec46-408b-a8d0-30e701e440d7", - "name": "Client Error - Returned if the request body is invalid.", + "id": "636e0db1-64bc-4d0a-b310-2bd9981487cf", + "name": "FullAccounts", "originalRequest": { "url": { "path": [ @@ -11363,7 +11705,7 @@ "type": "text/plain" }, "key": "detailLevel", - "value": "SLIM" + "value": "FULL" }, { "disabled": true, @@ -11390,7 +11732,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -11399,7 +11741,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "identityId eq \"2c9180858082150f0180893dbaf44201\"" }, { "disabled": true, @@ -11408,7 +11750,105 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "id,name" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"attributes\": null,\n \"authoritative\": true,\n \"created\": \"2021-09-28T02:15:44.644Z\",\n \"description\": null,\n \"disabled\": false,\n \"features\": \"PROVISIONING, GROUP_PROVISIONING, SYNC_PROVISIONING, AUTHENTICATE\",\n \"hasEntitlements\": true,\n \"id\": \"2c9180867c184ff6017c2a2fbf031667\",\n \"identityId\": \"2c9180867c184ff6017c2a2fbf031666\",\n \"locked\": false,\n \"manuallyCorrelated\": false,\n \"modified\": \"2021-09-28T02:16:12.207Z\",\n \"name\": \"Geovanni.0a7cad6df\",\n \"nativeIdentity\": \"CN=Geovanni 0a7cad6df,OU=hpun,OU=org-data-service,DC=TestAutomationAD,DC=local\",\n \"sourceId\": \"2c91808b7c28b350017c2a2ec5790aa1\",\n \"systemAccount\": false,\n \"uncorrelated\": false,\n \"uuid\": \"{e4218fa4-da52-4bb0-aa41-d2dcc08a7ad8}\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "82157692-3159-4f79-9a67-7393ebcb01a7", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "accounts" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Determines whether Slim, or increased level of detail is provided for each account in the returned list. FULL is the default behavior.", + "type": "text/plain" + }, + "key": "detailLevel", + "value": "FULL" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**identityId**: *eq*\n\n**name**: *eq, in*\n\n**nativeIdentity**: *eq, in*\n\n**sourceId**: *eq, in*\n\n**uncorrelated**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "identityId eq \"2c9180858082150f0180893dbaf44201\"" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **id, name, created, modified**", + "type": "text/plain" + }, + "key": "sorters", + "value": "id,name" } ], "variable": [] @@ -11438,12 +11878,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0128ca48-2876-4e36-a0cd-b742df96f435", + "id": "ff57855f-b6f6-4c6f-8b0c-4775df2381aa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11461,7 +11901,7 @@ "type": "text/plain" }, "key": "detailLevel", - "value": "SLIM" + "value": "FULL" }, { "disabled": true, @@ -11488,7 +11928,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -11497,7 +11937,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "identityId eq \"2c9180858082150f0180893dbaf44201\"" }, { "disabled": true, @@ -11506,7 +11946,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "id,name" } ], "variable": [] @@ -11536,12 +11976,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "882a9645-c0e3-452a-b756-bb0cdeaa5049", + "id": "a3546135-f0c7-4beb-8f11-da1f833fb288", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11559,7 +11999,7 @@ "type": "text/plain" }, "key": "detailLevel", - "value": "SLIM" + "value": "FULL" }, { "disabled": true, @@ -11586,7 +12026,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -11595,7 +12035,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "identityId eq \"2c9180858082150f0180893dbaf44201\"" }, { "disabled": true, @@ -11604,7 +12044,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "id,name" } ], "variable": [] @@ -11634,12 +12074,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "745b7356-685f-461c-8e49-cca219d27627", + "id": "e5a5a2b4-151d-4431-9554-11e3362d5542", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11657,7 +12097,7 @@ "type": "text/plain" }, "key": "detailLevel", - "value": "SLIM" + "value": "FULL" }, { "disabled": true, @@ -11684,7 +12124,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -11693,7 +12133,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "identityId eq \"2c9180858082150f0180893dbaf44201\"" }, { "disabled": true, @@ -11702,7 +12142,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "id,name" } ], "variable": [] @@ -11732,12 +12172,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "adf85411-20f3-441a-af4e-c969bc9fdb4f", + "id": "b0fe9697-bfeb-4359-9c56-fb50fcf839bd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11755,7 +12195,7 @@ "type": "text/plain" }, "key": "detailLevel", - "value": "SLIM" + "value": "FULL" }, { "disabled": true, @@ -11782,7 +12222,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -11791,7 +12231,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "identityId eq \"2c9180858082150f0180893dbaf44201\"" }, { "disabled": true, @@ -11800,7 +12240,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "id,name" } ], "variable": [] @@ -11830,7 +12270,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -11841,7 +12281,7 @@ } }, { - "id": "d5024231-c195-4a72-96b9-a01e42ec98af", + "id": "0d336657-ece1-4312-a5e5-fffbd97aa75f", "name": "Create Account", "request": { "name": "Create Account", @@ -11872,7 +12312,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"sourceId\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"sourceId\": \"34bfcbe116c9407464af37acbaf7a4dc\",\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -11883,7 +12323,7 @@ }, "response": [ { - "id": "e7726079-9d07-42c2-b972-613edf5e21d5", + "id": "0b4f5d1f-c30d-4628-a8e2-ce07ba673c14", "name": "Async task details", "originalRequest": { "url": { @@ -11917,7 +12357,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"sourceId\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"sourceId\": \"34bfcbe116c9407464af37acbaf7a4dc\",\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -11934,12 +12374,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\"\n}", + "body": "{\n \"id\": \"2c91808474683da6017468693c260195\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dd341d9a-b77e-4e60-a958-b845f90d31f0", + "id": "b9809ea9-cb0f-4455-b5d4-239c136090d8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11973,7 +12413,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"sourceId\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"sourceId\": \"34bfcbe116c9407464af37acbaf7a4dc\",\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -11990,12 +12430,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fd167592-eef8-45a8-a817-016849304e41", + "id": "816e08ca-c111-4920-8341-a43a070485d2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12029,7 +12469,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"sourceId\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"sourceId\": \"34bfcbe116c9407464af37acbaf7a4dc\",\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -12046,12 +12486,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ef2c2584-5fe6-46af-a415-25e5154fe213", + "id": "7f610b97-43be-4f43-ac23-3eb3dceb3caf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12085,7 +12525,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"sourceId\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"sourceId\": \"34bfcbe116c9407464af37acbaf7a4dc\",\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -12102,12 +12542,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "178db0b8-e7f6-4b2d-a420-09df6682100c", + "id": "1782021f-40d2-4e43-83e5-686b962223e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12141,7 +12581,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"sourceId\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"sourceId\": \"34bfcbe116c9407464af37acbaf7a4dc\",\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -12158,12 +12598,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f4c80ef0-8d99-4dfd-9470-a71588004e7c", + "id": "b153e951-06fc-4451-a718-20a173ee0daa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12197,7 +12637,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"sourceId\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"sourceId\": \"34bfcbe116c9407464af37acbaf7a4dc\",\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -12214,7 +12654,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -12225,7 +12665,7 @@ } }, { - "id": "e3f0880f-2522-4cea-8b3c-b3b037103446", + "id": "76be9277-c32b-42ae-a18c-3fbec71e7ab5", "name": "Account Details", "request": { "name": "Account Details", @@ -12245,7 +12685,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -12266,7 +12706,7 @@ }, "response": [ { - "id": "aa46d013-2df3-4ccd-b6bd-d252c84a348a", + "id": "e7288887-ec98-44b8-a1b0-f5244aed4d2a", "name": "An account object", "originalRequest": { "url": { @@ -12305,12 +12745,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"officia_f3\": \"et par\"\n },\n \"authoritative\": \"\",\n \"disabled\": \"\",\n \"hasEntitlements\": \"\",\n \"locked\": \"\",\n \"manuallyCorrelated\": \"\",\n \"name\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"sourceName\": \"\",\n \"systemAccount\": \"\",\n \"uncorrelated\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"identityId\": \"\",\n \"description\": \"\",\n \"uuid\": \"\"\n}", + "body": "{\n \"attributes\": {\n \"firstName\": \"SailPoint\",\n \"lastName\": \"Support\",\n \"displayName\": \"SailPoint Support\"\n },\n \"authoritative\": false,\n \"disabled\": false,\n \"hasEntitlements\": true,\n \"locked\": false,\n \"manuallyCorrelated\": false,\n \"name\": \"aName\",\n \"nativeIdentity\": \"552775\",\n \"sourceId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"sourceName\": \"Employees\",\n \"systemAccount\": false,\n \"uncorrelated\": false,\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"identityId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"description\": null,\n \"uuid\": \"slpt.support\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "73b720bb-68e4-4c78-939c-338410e49784", + "id": "0deb628c-4b3e-48d7-8d78-0685e43b80f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12349,12 +12789,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b5e8fd35-5338-4339-bd1b-36c2cce1fb22", + "id": "4869d9e0-e6a6-4fed-937c-ee061fe3dd91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12393,12 +12833,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c46a508-dad0-4d38-aea6-81bc0362709f", + "id": "586365d8-f1ca-4752-994c-5fdeff55d22a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12437,12 +12877,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "97ec23a2-f843-451d-afbe-b978f614af18", + "id": "d04247b0-0d21-466f-8897-9e6635d66365", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -12481,12 +12921,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9e4e65d0-dad3-4ed2-9c14-0f97e8f93b4f", + "id": "c5099869-de09-4913-a1f3-d2132161d094", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12525,12 +12965,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3d88ccd-bf58-481f-b63c-3eb9233f59b6", + "id": "63e23698-bb75-41d9-b3e9-8f327a3bc475", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12569,7 +13009,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -12580,7 +13020,7 @@ } }, { - "id": "daf138ea-29ab-4aa1-acde-fe81990b58c1", + "id": "a12a9d0a-909d-4c6e-a2a3-9e9f3c890f7f", "name": "Update Account", "request": { "name": "Update Account", @@ -12600,7 +13040,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -12623,7 +13063,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/identityId\",\n \"value\": \"2c9180845d1edece015d27a975983e21\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -12634,7 +13074,7 @@ }, "response": [ { - "id": "acf26f55-21d5-4ca4-9cdf-9980a2dfe2b8", + "id": "daa86f61-44a4-4bf1-a44f-3dd535322108", "name": "Accepted. Update request accepted and is in progress.", "originalRequest": { "url": { @@ -12669,7 +13109,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/identityId\",\n \"value\": \"2c9180845d1edece015d27a975983e21\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -12691,7 +13131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98c00d1e-76ba-4c23-84d6-a8616e2161df", + "id": "d48ac69c-2398-418b-9abd-8bf3100fe67b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12726,7 +13166,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/identityId\",\n \"value\": \"2c9180845d1edece015d27a975983e21\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -12743,12 +13183,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c103f7a8-f935-45ac-ab4e-b0d5987b7ef5", + "id": "79c87583-7066-49a4-b951-5ff51ef0d9ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12783,7 +13223,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/identityId\",\n \"value\": \"2c9180845d1edece015d27a975983e21\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -12800,12 +13240,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1807e71e-5a29-40c2-a244-d306126c482a", + "id": "7c2632ad-9531-4589-90b7-08dbcd90d9bd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12840,7 +13280,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/identityId\",\n \"value\": \"2c9180845d1edece015d27a975983e21\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -12857,12 +13297,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b7d1499c-b988-4ae0-8239-5ca7d0ff9c69", + "id": "3780fd2f-31d2-416f-8e63-50fba0c6787f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -12897,7 +13337,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/identityId\",\n \"value\": \"2c9180845d1edece015d27a975983e21\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -12914,12 +13354,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ab1ea1f7-96f9-4987-b3c1-1edeeb6eba3d", + "id": "1dcdc3af-51c4-44b4-9008-ba432c9c749a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12954,7 +13394,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/identityId\",\n \"value\": \"2c9180845d1edece015d27a975983e21\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -12971,12 +13411,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "06923c71-a22e-4a1e-bd3c-b8dbec87f4f5", + "id": "1e700a43-9f8d-483b-921c-af37fb5ae99e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13011,7 +13451,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/identityId\",\n \"value\": \"2c9180845d1edece015d27a975983e21\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -13028,7 +13468,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -13039,7 +13479,7 @@ } }, { - "id": "34c6dfab-79bb-41c2-92e3-70924dcd82b2", + "id": "7c19ea04-6182-4dea-b950-df7801f3f359", "name": "Update Account", "request": { "name": "Update Account", @@ -13059,7 +13499,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -13082,7 +13522,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {}\n}", + "raw": "{\n \"attributes\": {\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -13093,7 +13533,7 @@ }, "response": [ { - "id": "69e4bbb0-b448-403e-98e6-71dc350bcdb4", + "id": "a4fa2a80-e588-418f-92f9-5cf4dab827f9", "name": "Async task details", "originalRequest": { "url": { @@ -13128,7 +13568,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {}\n}", + "raw": "{\n \"attributes\": {\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -13145,12 +13585,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\"\n}", + "body": "{\n \"id\": \"2c91808474683da6017468693c260195\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df02caaf-143b-4fa5-95b8-ee3cc04b1a81", + "id": "3a7882ad-e014-41f3-95d3-39e2fd286b8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13185,7 +13625,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {}\n}", + "raw": "{\n \"attributes\": {\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -13202,12 +13642,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7675455f-529c-4942-bb05-d89a8e15507c", + "id": "ccfd5279-135e-4e21-9e72-4d3ba9c5e189", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13242,7 +13682,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {}\n}", + "raw": "{\n \"attributes\": {\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -13259,12 +13699,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93cf3534-df52-4966-affc-e68fbd34fe6e", + "id": "8d9cff8e-c223-4722-820c-dd5007c6ffbe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13299,7 +13739,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {}\n}", + "raw": "{\n \"attributes\": {\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -13316,12 +13756,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "66d6ab1e-59c5-47a1-ac3f-ebd0a2738db8", + "id": "6673f6ee-57a6-4353-aadc-3fadc1c52863", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13356,7 +13796,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {}\n}", + "raw": "{\n \"attributes\": {\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -13373,12 +13813,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "daeb6fcd-5548-44c6-8c8a-e4f9af5b65c2", + "id": "ecef0de5-daa1-41d2-81c7-1afd201d36dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13413,7 +13853,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {}\n}", + "raw": "{\n \"attributes\": {\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -13430,12 +13870,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5fa651a-825a-43af-a79d-9d7c14649c65", + "id": "ac873971-4eb9-4675-bbd0-cc5c3c00f02e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13470,7 +13910,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {}\n}", + "raw": "{\n \"attributes\": {\n \"city\": \"Austin\",\n \"displayName\": \"John Doe\",\n \"userName\": \"jdoe\",\n \"sAMAccountName\": \"jDoe\",\n \"mail\": \"john.doe@sailpoint.com\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -13487,7 +13927,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -13498,7 +13938,7 @@ } }, { - "id": "24499446-2d34-4aa0-af1e-e287a469bc9f", + "id": "d1616a48-e9b7-48fa-b3ea-ae6f590d18d1", "name": "Delete Account", "request": { "name": "Delete Account", @@ -13518,7 +13958,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -13539,7 +13979,7 @@ }, "response": [ { - "id": "2b7ca2d2-bf43-4b91-a59c-81208733002b", + "id": "2e7b0d6a-ed25-4136-9408-1c49fcc52ac7", "name": "Async task details", "originalRequest": { "url": { @@ -13578,12 +14018,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\"\n}", + "body": "{\n \"id\": \"2c91808474683da6017468693c260195\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "07af78e8-a0f0-47a5-984e-71d3f6eb55a2", + "id": "673228f5-a9e5-4db8-8a3b-af63f045a9fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13622,12 +14062,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "886b7997-3e30-4df0-bb66-6e6d06ff332e", + "id": "a914a36f-dfc7-49f4-af71-2cf586165a3f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13666,12 +14106,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a923bab-530c-41bb-b4e4-86a3c8a538eb", + "id": "a16d1676-6d60-4e52-a0e6-18f53960dc04", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13710,12 +14150,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7ae941fe-5e6c-4f39-89ad-00e4b25de89e", + "id": "ca4efb8b-e849-4a1c-a948-1bb940679ade", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13754,12 +14194,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e1a390ad-27c6-4d92-bc3c-70a0a939f58d", + "id": "3933370a-e53b-41c2-8867-c0637275e249", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13798,12 +14238,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d679353-9c71-4e42-a92f-a7b9c38a6dd8", + "id": "37731d67-5d2a-409e-85a4-e8f9992e9184", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13842,7 +14282,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -13853,7 +14293,7 @@ } }, { - "id": "67c66fd9-0130-4079-9ace-d48ac119174f", + "id": "a699c73c-abd1-4381-9ed3-83ba26772493", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -13896,13 +14336,13 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -13923,7 +14363,7 @@ }, "response": [ { - "id": "baafef45-7bc6-43cc-bf6b-58fa11d897cb", + "id": "8a60881d-4f2a-4960-b353-396211fcd310", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -13961,7 +14401,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -13991,12 +14431,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"dolore_59a\": -14064548.001217768,\n \"ad_0\": 88792807\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"reprehenderit_bb\": 84438357.51621753\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", + "body": "[\n {\n \"id\": \"2c91808874ff91550175097daaec161c\",\n \"name\": \"LauncherTest2\",\n \"created\": \"2020-10-08T18:33:52.029Z\",\n \"modified\": \"2020-10-08T18:33:52.029Z\",\n \"attribute\": \"memberOf\",\n \"value\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"sourceSchemaObjectType\": \"group\",\n \"privileged\": true,\n \"cloudGoverned\": true,\n \"description\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"requestable\": true,\n \"attributes\": {\n \"fieldName\": \"fieldValue\"\n },\n \"source\": {\n \"id\": \"2c9180827ca885d7017ca8ce28a000eb\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-Source\"\n },\n \"owner\": {\n \"id\": \"2a2fdacca5e345f18bf7970cfbb8fec2\",\n \"name\": \"identity 1\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n },\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n }\n ],\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n }\n },\n {\n \"id\": \"2c91808874ff91550175097daaec161c\",\n \"name\": \"LauncherTest2\",\n \"created\": \"2020-10-08T18:33:52.029Z\",\n \"modified\": \"2020-10-08T18:33:52.029Z\",\n \"attribute\": \"memberOf\",\n \"value\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"sourceSchemaObjectType\": \"group\",\n \"privileged\": true,\n \"cloudGoverned\": true,\n \"description\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"requestable\": true,\n \"attributes\": {\n \"fieldName\": \"fieldValue\"\n },\n \"source\": {\n \"id\": \"2c9180827ca885d7017ca8ce28a000eb\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-Source\"\n },\n \"owner\": {\n \"id\": \"2a2fdacca5e345f18bf7970cfbb8fec2\",\n \"name\": \"identity 1\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n },\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n }\n ],\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "28f50bf8-2f62-45f9-ac1c-e4a798b16316", + "id": "f136ed3d-c67e-41f3-8fdf-6405b361c810", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14034,7 +14474,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -14064,12 +14504,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e2862aa1-a872-4fe0-a008-74fab65be847", + "id": "57748e38-ab11-400f-bf36-cd8ab1d585ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14107,7 +14547,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -14137,12 +14577,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "740c76a6-bdeb-4c20-a2d4-ea56d19a05d3", + "id": "d9984ccf-201a-4e3d-aa26-27d04db853a4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14180,7 +14620,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -14210,12 +14650,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "561a64fd-fbf8-4aea-b20a-7de081c2f446", + "id": "7674b8a0-b8e5-4466-839d-1d45cf05ab29", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -14253,7 +14693,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -14283,12 +14723,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b277f449-7159-433e-b341-942d866bc7bd", + "id": "cff5c03e-7a06-4d1b-8388-cd203586cb0a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14326,7 +14766,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -14356,12 +14796,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ebaa789f-bcbf-421f-9c3d-45242d7243ce", + "id": "f4e2a3aa-1de4-4db8-86c2-a0de32a28a73", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14399,7 +14839,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -14429,7 +14869,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -14440,7 +14880,7 @@ } }, { - "id": "3ef0294e-0761-4b65-a7af-11c8053ac0f5", + "id": "47b60caf-e9f9-408e-b0bf-0737c438f3e6", "name": "Reload Account", "request": { "name": "Reload Account", @@ -14461,7 +14901,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -14482,7 +14922,7 @@ }, "response": [ { - "id": "9d2a2076-4d50-42f6-9f05-94de7d8624e6", + "id": "cdbe7a59-9f6e-414c-9fa5-a21ec4085493", "name": "Async task details", "originalRequest": { "url": { @@ -14522,12 +14962,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\"\n}", + "body": "{\n \"id\": \"2c91808474683da6017468693c260195\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35a4b382-37cb-4c42-945f-79f4842c3eb6", + "id": "aacf9a63-22e6-493e-9e65-6b977fec0b0a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14567,12 +15007,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4cb3eccf-cccb-462f-b6ed-4830f2706dcf", + "id": "8fb05ab2-52df-4ebe-a054-fe10104d8615", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14612,12 +15052,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "959c14c3-f90f-434a-a6a4-781c2671cce0", + "id": "17ffd622-649a-4409-ab71-05364ebe26b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14657,12 +15097,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "de5a1c5e-dd48-402f-ad34-d34b30b86bcb", + "id": "7f4c589e-9833-4d29-be49-6ffe91aa9d24", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -14702,12 +15142,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ae70d089-7785-4de8-9e73-664f64d3aa29", + "id": "c9cf1230-4c3f-478a-949e-2e73eb54c79f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14747,12 +15187,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "242920cd-8ad6-43c8-a7e5-4e61185a7db6", + "id": "83bf2ddf-f8d2-4624-94bc-a1cebdd913f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14792,7 +15232,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -14803,7 +15243,7 @@ } }, { - "id": "fd478f24-ae3f-43bb-825b-bd967f9504b8", + "id": "92881736-6afa-46dd-9985-bf101e4e3d7f", "name": "Enable Account", "request": { "name": "Enable Account", @@ -14824,7 +15264,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -14847,7 +15287,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -14858,7 +15298,7 @@ }, "response": [ { - "id": "2ac2470b-d4d7-442c-912a-d8db2336a02e", + "id": "d1db5ff6-f80f-4e0c-9c69-1614e7820a5b", "name": "Async task details", "originalRequest": { "url": { @@ -14894,7 +15334,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -14911,12 +15351,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\"\n}", + "body": "{\n \"id\": \"2c91808474683da6017468693c260195\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7ccacca4-6efc-4ded-9665-e85904fa4afc", + "id": "4d39f514-ab05-4c90-808c-9effb0df0c7f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14952,7 +15392,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -14969,12 +15409,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "16d9d971-d314-45db-9554-fe6748a195b2", + "id": "a269f16e-0d11-4569-8fde-e66f08eb0ebc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15010,7 +15450,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15027,12 +15467,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12ad2539-0d12-4df2-9ee8-e1992a29d311", + "id": "702f9e38-cc76-4fb8-8d68-ab7b405e286d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15068,7 +15508,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15085,12 +15525,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a89f2121-9f28-47bc-9165-61a067a4f2cd", + "id": "f173e4c6-d8bb-4b10-b505-ac71dfee0a39", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15126,7 +15566,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15143,12 +15583,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "54952d0a-688d-4188-9a63-4009deb129f5", + "id": "a8a3b565-aec3-4549-973c-d11664e0f78c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15184,7 +15624,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15201,12 +15641,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd92ebd8-45df-4c6c-9b0a-42fe92c625e3", + "id": "499ad729-3e5f-45e7-b8b4-16877fad527e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15242,7 +15682,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15259,7 +15699,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -15270,7 +15710,7 @@ } }, { - "id": "39214e87-b9c8-4ab6-866f-fd0fe26eeaf9", + "id": "4da7d830-8136-47df-b108-1ddd4590860f", "name": "Disable Account", "request": { "name": "Disable Account", @@ -15291,7 +15731,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -15314,7 +15754,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15325,7 +15765,7 @@ }, "response": [ { - "id": "0ba576c7-b6e5-4c49-b5ef-c56d90015c7d", + "id": "9bc9931f-1bcb-4b3d-b2b0-e810f0f78e9a", "name": "Async task details", "originalRequest": { "url": { @@ -15361,7 +15801,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15378,12 +15818,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\"\n}", + "body": "{\n \"id\": \"2c91808474683da6017468693c260195\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b13b486-f69e-4493-8781-456d9b05d7c3", + "id": "1eba2c14-800d-4776-9a52-a77062632693", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15419,7 +15859,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15436,12 +15876,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "64873e92-a1cb-4860-9eb4-6bd4a1176502", + "id": "59b56508-7b4e-46f2-8267-2e28b9662d98", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15477,7 +15917,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15494,12 +15934,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b6eeb09a-97a6-4c7f-9cd9-5dbf42ddbff9", + "id": "0225c5dc-2cd9-4307-bf5f-4059b41edbf8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15535,7 +15975,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15552,12 +15992,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "26643f05-68a1-42f4-b822-9efceea87735", + "id": "7accef7e-5d4b-4164-83f1-5df266e1bb93", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15593,7 +16033,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15610,12 +16050,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6750f967-a8a4-412e-aef7-4fee3f8e422a", + "id": "6cd706f6-7eae-4df1-be5b-540397a80841", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15651,7 +16091,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15668,12 +16108,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "58b69c44-059b-4a9a-b2fd-6c0d77174ae9", + "id": "96d56a59-2ce8-4694-9398-dc338033fca8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15709,7 +16149,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15726,7 +16166,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -15737,7 +16177,7 @@ } }, { - "id": "9b8e1a77-03b0-45aa-a429-ce70986161e0", + "id": "da4a5af5-4d8f-4788-acf2-1a6bb8b82470", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -15758,7 +16198,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -15781,7 +16221,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"unlockIDNAccount\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"unlockIDNAccount\": false,\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15792,7 +16232,7 @@ }, "response": [ { - "id": "4b07bd41-1857-4a95-9130-660892883c4f", + "id": "eb848011-b1f6-421d-97e5-7c343e615c23", "name": "Async task details", "originalRequest": { "url": { @@ -15828,7 +16268,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"unlockIDNAccount\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"unlockIDNAccount\": false,\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15845,12 +16285,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\"\n}", + "body": "{\n \"id\": \"2c91808474683da6017468693c260195\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "22b5a881-dba2-40e0-8ab6-8769ace2ddb2", + "id": "7f1f5a2d-ab30-4524-adb9-5335891a7d17", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15886,7 +16326,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"unlockIDNAccount\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"unlockIDNAccount\": false,\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15903,12 +16343,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f2c7adc6-da58-44c1-b307-34388dd1f634", + "id": "132acdbc-0b51-4133-8b15-57b2c8553214", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15944,7 +16384,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"unlockIDNAccount\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"unlockIDNAccount\": false,\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -15961,12 +16401,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ea01a72c-4596-4be3-bf7e-1c376203e77c", + "id": "8984a57b-c784-4361-8c88-4d501b75b3e2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16002,7 +16442,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"unlockIDNAccount\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"unlockIDNAccount\": false,\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -16019,12 +16459,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "cdafd58f-7b47-4021-9e95-82192427e83f", + "id": "0fb1dc1d-5e48-4384-8562-ba76682ca9ac", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16060,7 +16500,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"unlockIDNAccount\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"unlockIDNAccount\": false,\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -16077,12 +16517,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7f8c3da0-f18f-4ac4-bc1e-24767adb7e1c", + "id": "ff06596b-a92f-4976-96f3-ee0827f09116", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16118,7 +16558,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"unlockIDNAccount\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"unlockIDNAccount\": false,\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -16135,12 +16575,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "32b08d73-0203-47f4-a778-e1476055301a", + "id": "5ef780ca-681a-440c-88bc-4b2c9b753f79", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16176,7 +16616,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"externalVerificationId\": \"\",\n \"unlockIDNAccount\": \"\",\n \"forceProvisioning\": \"\"\n}", + "raw": "{\n \"externalVerificationId\": \"3f9180835d2e5168015d32f890ca1581\",\n \"unlockIDNAccount\": false,\n \"forceProvisioning\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -16193,7 +16633,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -16204,7 +16644,7 @@ } }, { - "id": "34fbfe28-fbe1-46de-9142-f91c6209dd1c", + "id": "a3ba1d7d-3f2a-4c17-80fe-fc1c76b2e676", "name": "Enable IDN Account for Identity", "request": { "name": "Enable IDN Account for Identity", @@ -16225,7 +16665,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808384203c2d018437e631158309", "key": "id", "disabled": true, "description": { @@ -16246,7 +16686,7 @@ }, "response": [ { - "id": "4613c973-2939-4c2d-bdae-cecd90c457f7", + "id": "997c04df-02c1-4c83-866a-9f7f5ec263fa", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -16291,7 +16731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c2ac5c5-180e-4456-9a50-d94585be478b", + "id": "97f62009-fa11-44cd-9988-4b052d2c55f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16331,12 +16771,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d7d59479-eb8c-425b-9972-5c5c5b4173c1", + "id": "65c1d375-b3fc-46d0-9e40-0e62998498cc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16376,12 +16816,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b5ae2c74-b785-4dad-9599-d514173507af", + "id": "0b4ae938-2c0b-4805-a9f2-a594cf26ae5a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16421,12 +16861,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fc88e716-6676-4f39-b18f-9dae4ad6c811", + "id": "f9041040-e855-436d-90c6-ad8d0b0f6f45", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16466,12 +16906,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f8fd4688-3c72-4e1d-a345-a6622b258661", + "id": "74be81bd-f09e-4f3f-8087-daeb0d366114", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16511,12 +16951,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d44b3384-4f09-447c-9118-4a48b6c02545", + "id": "a1f87e2d-4a06-4d78-afdb-54c14e9f29db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16556,7 +16996,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -16567,7 +17007,7 @@ } }, { - "id": "4a81c208-bd32-4053-a08a-85e605b80d87", + "id": "22a8a98b-3c96-45b2-847e-33b1b263478f", "name": "Disable IDN Account for Identity", "request": { "name": "Disable IDN Account for Identity", @@ -16588,7 +17028,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808384203c2d018437e631158309", "key": "id", "disabled": true, "description": { @@ -16609,7 +17049,7 @@ }, "response": [ { - "id": "56b869ad-5249-45ec-97d1-4841c1d143a0", + "id": "adbba431-10a4-45fa-a247-445842e75269", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -16654,7 +17094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3aab633-f34f-4af4-9eb4-26150153ac8c", + "id": "41dd89a8-2b8a-463b-8415-24435720d22b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16694,12 +17134,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5d1e5936-dcca-419e-a3c9-d9f415f78a68", + "id": "e39a6afd-2eba-49e2-9510-9e84c37f9598", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16739,12 +17179,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d1ebdcd-92ca-4c9a-b3e4-20e47584ff24", + "id": "45eb715a-a3da-400d-9641-9dd9352b251a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16784,12 +17224,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "94d2ea72-f801-44e6-9590-538dbba5151b", + "id": "0847e746-9a37-46c3-bd03-7760a2b0af03", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16829,12 +17269,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "16f6edfa-3731-4513-97dd-1d9fe10202e3", + "id": "3e56852d-89b0-4bbe-8d0a-9de9d8644776", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16874,12 +17314,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "38d3b9d1-c4c2-408b-95a2-c6a085706364", + "id": "b22aa049-e344-4cbf-836b-29e3ecd001ea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16919,7 +17359,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -16930,7 +17370,7 @@ } }, { - "id": "f3c58c30-c08c-48f5-83da-c8f867890a99", + "id": "97c9bf0b-0842-4cf8-aa39-d66ae3f5b4c9", "name": "Enable IDN Accounts for Identities", "request": { "name": "Enable IDN Accounts for Identities", @@ -16962,7 +17402,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"2c91808384203c2d018437e631158308\",\n \"2c9180858082150f0180893dbaf553fe\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16973,7 +17413,7 @@ }, "response": [ { - "id": "9ec50452-86b0-41f2-9604-97a1e0daad60", + "id": "d24b3b2c-1ed6-44af-b3c3-8cbf6a68aa88", "name": "Bulk response details.", "originalRequest": { "url": { @@ -17008,7 +17448,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"2c91808384203c2d018437e631158308\",\n \"2c9180858082150f0180893dbaf553fe\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17025,12 +17465,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"statusCode\": \"\",\n \"message\": \"\"\n },\n {\n \"id\": \"\",\n \"statusCode\": \"\",\n \"message\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"2c9180858082150f0180893dbaf553fe\",\n \"statusCode\": 404,\n \"message\": \"Referenced identity \\\"2c9180858082150f0180893dbaf553fe\\\" was not found.\"\n },\n {\n \"id\": \"2c91808384203c2d018437e631158308\",\n \"statusCode\": 202,\n \"message\": null\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0957ae47-aebc-499f-9579-c9543f214773", + "id": "e4a57359-880f-4e84-87c0-b12570d02260", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17065,7 +17505,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"2c91808384203c2d018437e631158308\",\n \"2c9180858082150f0180893dbaf553fe\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17082,12 +17522,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "745a6080-94e2-40bd-ade6-f5999ceeea97", + "id": "d1dde97d-68c5-4291-a0cf-6444bc2f017e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17122,7 +17562,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"2c91808384203c2d018437e631158308\",\n \"2c9180858082150f0180893dbaf553fe\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17139,12 +17579,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5c2cc175-542c-4bde-a0e6-d562881cf387", + "id": "24d73200-a36a-42dd-ac73-c076088334e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17179,7 +17619,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"2c91808384203c2d018437e631158308\",\n \"2c9180858082150f0180893dbaf553fe\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17196,12 +17636,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e9903970-b54f-4b00-a732-4e4c9a08e077", + "id": "cc4725f3-b7e8-4f89-ac52-10304ee1ab7a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17236,7 +17676,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"2c91808384203c2d018437e631158308\",\n \"2c9180858082150f0180893dbaf553fe\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17253,12 +17693,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e9bb9310-fc48-4f1a-8db0-2127d767a972", + "id": "736e8798-b823-48a1-90b1-d2194c71d960", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17293,7 +17733,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"2c91808384203c2d018437e631158308\",\n \"2c9180858082150f0180893dbaf553fe\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17310,7 +17750,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -17321,7 +17761,7 @@ } }, { - "id": "38b50b52-163f-45d8-99c7-cb28b11fbf77", + "id": "53e02e7d-befa-4fd6-afde-484f062eeb0a", "name": "Disable IDN Accounts for Identities", "request": { "name": "Disable IDN Accounts for Identities", @@ -17353,7 +17793,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"2c91808384203c2d018437e631158308\",\n \"2c9180858082150f0180893dbaf553fe\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17364,7 +17804,7 @@ }, "response": [ { - "id": "c4f06568-2f6d-45a9-8c1e-bafcbf2f6530", + "id": "5c802bd1-0783-42d7-9242-c218a1726a95", "name": "Bulk response details.", "originalRequest": { "url": { @@ -17399,7 +17839,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"2c91808384203c2d018437e631158308\",\n \"2c9180858082150f0180893dbaf553fe\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17416,12 +17856,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"statusCode\": \"\",\n \"message\": \"\"\n },\n {\n \"id\": \"\",\n \"statusCode\": \"\",\n \"message\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"2c9180858082150f0180893dbaf553fe\",\n \"statusCode\": 404,\n \"message\": \"Referenced identity \\\"2c9180858082150f0180893dbaf553fe\\\" was not found.\"\n },\n {\n \"id\": \"2c91808384203c2d018437e631158308\",\n \"statusCode\": 202,\n \"message\": null\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1fb1d677-e87b-4e0b-bf79-2cfff836838f", + "id": "9b73a1aa-84b7-4c1a-847c-34a0379c5df6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17456,7 +17896,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"2c91808384203c2d018437e631158308\",\n \"2c9180858082150f0180893dbaf553fe\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17473,12 +17913,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2a85edbd-524e-431e-8045-88231f17c570", + "id": "25dc03dd-5585-4a48-b363-6766abc93427", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17513,7 +17953,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"2c91808384203c2d018437e631158308\",\n \"2c9180858082150f0180893dbaf553fe\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17530,12 +17970,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "203c6bb4-7d5f-4055-9c2e-d491ffd452d8", + "id": "549b6595-e0d7-4077-b8f0-c089456dcd57", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17570,7 +18010,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"2c91808384203c2d018437e631158308\",\n \"2c9180858082150f0180893dbaf553fe\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17587,12 +18027,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "51756e83-f7cb-4bd6-958f-acef5f3321de", + "id": "71a66ba6-e2d4-472b-bf57-78561b4fe1ab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17627,7 +18067,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"2c91808384203c2d018437e631158308\",\n \"2c9180858082150f0180893dbaf553fe\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17644,12 +18084,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ff985b8f-c600-4d17-ad7f-b45cf360a6e3", + "id": "39de281c-65be-4c12-a414-5fbd599aa5e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17684,7 +18124,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"2c91808384203c2d018437e631158308\",\n \"2c9180858082150f0180893dbaf553fe\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17701,7 +18141,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -17718,7 +18158,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": "14db92eb-169c-4d8a-94bb-8e4f7da4b452", + "id": "10558937-1135-4c13-891e-b2d73085017d", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -17741,7 +18181,7 @@ "type": "text/plain" }, "key": "detail", - "value": "SLIM" + "value": "FULL" }, { "disabled": true, @@ -17768,7 +18208,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -17777,7 +18217,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Manager Campaign\"" }, { "disabled": true, @@ -17786,7 +18226,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -17802,8 +18242,8 @@ }, "response": [ { - "id": "d9fefbb2-2c44-4620-8a0a-91fb5db916af", - "name": "A list of campaign objects. By default list of SLIM campaigns is returned.", + "id": "574a4146-774e-4558-9089-dd5824405fe1", + "name": "Slim Campaign", "originalRequest": { "url": { "path": [ @@ -17820,7 +18260,7 @@ "type": "text/plain" }, "key": "detail", - "value": "SLIM" + "value": "FULL" }, { "disabled": true, @@ -17847,7 +18287,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -17856,7 +18296,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Manager Campaign\"" }, { "disabled": true, @@ -17865,7 +18305,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -17895,13 +18335,13 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ]\n }\n]", + "body": "[\n {\n \"id\": \"2c918086719eec070171a7e3355a360a\",\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadline\": \"2020-12-25T06:00:00.123Z\",\n \"type\": \"MANAGER\",\n \"status\": \"ACTIVE\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"created\": \"2022-08-02T20:29:51.065Z\",\n \"totalCertifications\": 10,\n \"completedCertifications\": 3,\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"en\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"Composite criterion must have children non-composite criterion must not.\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"7e1a731e3fb845cfbe58112ba4673ee4\",\n \"name\": \"Search Campaign\",\n \"description\": \"Search Campaign Info\",\n \"deadline\": \"2022-07-26T15:42:44.000Z\",\n \"type\": \"SEARCH\",\n \"status\": \"ACTIVE\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"created\": \"2022-08-02T19:00:27.731Z\",\n \"totalCertifications\": 5,\n \"completedCertifications\": 3,\n \"alerts\": null\n },\n {\n \"id\": \"2c918086719eec070171a7e3355a412b\",\n \"name\": \"AD Source Review\",\n \"description\": \"A review of our AD source.\",\n \"deadline\": \"2020-12-25T06:00:00.123Z\",\n \"type\": \"SOURCE_OWNER\",\n \"status\": \"STAGED\",\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"created\": \"2022-07-25T15:42:18.276Z\",\n \"totalCertifications\": 7,\n \"completedCertifications\": 3,\n \"alerts\": [\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"en\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"Composite criterion is in wrong format.\"\n }\n ]\n }\n ],\n \"correlatedStatus\": \"CORRELATED\"\n },\n {\n \"id\": \"3b2e2e5821e84127b6d693d41c40623b\",\n \"name\": \"Role Composition Campaign\",\n \"description\": \"A review done by a role owner.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"ROLE_COMPOSITION\",\n \"status\": \"ACTIVE\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"created\": \"2022-07-27T17:04:19.027Z\",\n \"totalCertifications\": 1,\n \"completedCertifications\": 1,\n \"alerts\": null\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a4ce56e5-0ff8-4470-ab2e-a43fb714bf21", - "name": "Client Error - Returned if the request body is invalid.", + "id": "e025738c-6af2-4918-9b3e-88d0dfedea0f", + "name": "Full Campaign", "originalRequest": { "url": { "path": [ @@ -17918,7 +18358,7 @@ "type": "text/plain" }, "key": "detail", - "value": "SLIM" + "value": "FULL" }, { "disabled": true, @@ -17945,7 +18385,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -17954,7 +18394,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Manager Campaign\"" }, { "disabled": true, @@ -17963,7 +18403,105 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"id\": \"078696a575e045c68d6722ccdb9f101d\",\n \"name\": \"Role Composition Campaign\",\n \"description\": \"A review done by a role owner.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"ROLE_COMPOSITION\",\n \"status\": \"ERROR\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"modified\": \"2022-08-02T20:29:51.331Z\",\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0fbe863c063c4c88a35fd7f17e8a3df5\",\n \"name\": \"Test Role Composition Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"reviewerId\": null,\n \"reviewer\": null,\n \"roleIds\": [\n \"b15d609fc5c8434b865fe552315fda8f\"\n ],\n \"query\": null,\n \"description\": null\n },\n \"sourcesWithOrphanEntitlements\": null,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n {\n \"id\": \"1be8fc1103914bf0a4e14e316b6a7b7c\",\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"MANAGER\",\n \"status\": \"STAGED\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"modified\": \"2022-08-02T19:00:34.391Z\",\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0fbe863c063c4c88a35fd7f17e8a3df5\",\n \"name\": \"Test Manager Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": null,\n \"sourcesWithOrphanEntitlements\": [],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n {\n \"id\": \"7e1a731e3fb845cfbe58112ba4673ee4\",\n \"name\": \"Search Campaign\",\n \"description\": \"Search Campaign for Identities\",\n \"deadline\": \"2022-07-26T15:42:44.000Z\",\n \"type\": \"SEARCH\",\n \"status\": \"ACTIVE\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"modified\": \"2022-07-25T15:42:53.718Z\",\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0fbe863c063c4c88a35fd7f17e8a3df5\",\n \"name\": \"Test Search Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"Example of Search Campaign\",\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": null\n },\n \"query\": \"user\",\n \"identityIds\": null,\n \"accessConstraints\": []\n },\n \"roleCompositionCampaignInfo\": null,\n \"sourcesWithOrphanEntitlements\": [],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n {\n \"id\": \"ad3cf3dd50394b1bad646de4bc51b999\",\n \"name\": \"Source Owner Campaign\",\n \"description\": \"Example for Source Owner Campaign\",\n \"deadline\": \"2022-08-10T17:09:02.000Z\",\n \"type\": \"SOURCE_OWNER\",\n \"status\": \"ACTIVE\",\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"modified\": \"2022-07-27T17:09:13.925Z\",\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0fbe863c063c4c88a35fd7f17e8a3df5\",\n \"name\": \"Test Source Owner Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"2c91808781fd5aea01821200dc88318e\"\n ]\n },\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": null,\n \"sourcesWithOrphanEntitlements\": [],\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "e4e72311-c5fd-46ec-8086-ecd8f6120dec", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "campaigns" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Determines whether slim, or increased level of detail is provided for each campaign in the returned list. Slim is the default behavior.", + "type": "text/plain" + }, + "key": "detail", + "value": "FULL" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**status**: *eq, in*", + "type": "text/plain" + }, + "key": "filters", + "value": "name eq \"Manager Campaign\"" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **name, created**", + "type": "text/plain" + }, + "key": "sorters", + "value": "name" } ], "variable": [] @@ -17993,12 +18531,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "614ebe4c-cb62-4379-a088-3abec500b5df", + "id": "93625ac8-7c4d-4f81-ae23-7752c9ab4e4b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18016,7 +18554,7 @@ "type": "text/plain" }, "key": "detail", - "value": "SLIM" + "value": "FULL" }, { "disabled": true, @@ -18043,7 +18581,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -18052,7 +18590,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Manager Campaign\"" }, { "disabled": true, @@ -18061,7 +18599,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -18091,12 +18629,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bd6cef2f-6ec4-4f96-9b60-e92640901448", + "id": "e81e8208-b50c-4242-877d-1ae662bc29b3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18114,7 +18652,7 @@ "type": "text/plain" }, "key": "detail", - "value": "SLIM" + "value": "FULL" }, { "disabled": true, @@ -18141,7 +18679,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -18150,7 +18688,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Manager Campaign\"" }, { "disabled": true, @@ -18159,7 +18697,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -18189,12 +18727,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "60f46e66-f50d-4e59-b5df-f44826d5d2d6", + "id": "78f84163-2a26-4c9c-a6a4-dc4df866b5e6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18212,7 +18750,7 @@ "type": "text/plain" }, "key": "detail", - "value": "SLIM" + "value": "FULL" }, { "disabled": true, @@ -18239,7 +18777,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -18248,7 +18786,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Manager Campaign\"" }, { "disabled": true, @@ -18257,7 +18795,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -18287,12 +18825,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80fc7c55-346c-43f6-9f86-9775c7c1d87b", + "id": "c72daffa-1ddc-4157-969b-852f32da1e19", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18310,7 +18848,7 @@ "type": "text/plain" }, "key": "detail", - "value": "SLIM" + "value": "FULL" }, { "disabled": true, @@ -18337,7 +18875,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -18346,7 +18884,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Manager Campaign\"" }, { "disabled": true, @@ -18355,7 +18893,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -18385,7 +18923,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -18396,7 +18934,7 @@ } }, { - "id": "d22fdfee-9ed9-447b-a731-2eff4a805da8", + "id": "b2374942-1146-4142-ae97-27a8ddfc1427", "name": "Create a campaign", "request": { "name": "Create a campaign", @@ -18427,7 +18965,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"STAGED\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ROLE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "raw": "{\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"MANAGER\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0c46fb26c6b20967a55517ee90d15b93\"\n },\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -18438,8 +18976,8 @@ }, "response": [ { - "id": "77b4d24c-4034-4e85-8db8-062306e6bd59", - "name": "Indicates that the campaign requested was successfully created and returns its representation.", + "id": "8345ac9d-7769-4eab-8d60-4d1d864ee505", + "name": "Manager", "originalRequest": { "url": { "path": [ @@ -18472,7 +19010,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"STAGED\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ROLE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "raw": "{\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"MANAGER\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0c46fb26c6b20967a55517ee90d15b93\"\n },\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -18489,13 +19027,13 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"STAGED\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ROLE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "body": "{\n \"id\": \"5594f43b76804a6980ece5fdccf74be7\",\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"MANAGER\",\n \"status\": \"PENDING\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"created\": \"2022-08-02T20:21:18.421Z\",\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0fbe863c063c4c88a35fd7f17e8a3df5\",\n \"name\": \"Test Manager Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": 0,\n \"completedCertifications\": 0,\n \"sourcesWithOrphanEntitlements\": null,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a95060f-945e-45c4-8471-1d8c91339f19", - "name": "Client Error - Returned if the request body is invalid.", + "id": "a49b3a44-fb98-4d0b-9fea-a8bbbd64365d", + "name": "Search", "originalRequest": { "url": { "path": [ @@ -18528,7 +19066,175 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"STAGED\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ROLE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "raw": "{\n \"name\": \"Search Campaign\",\n \"description\": \"Search Campaign\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"SEARCH\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0c46fb26c6b20967a55517ee90d15b93\"\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"query\": \"user\"\n },\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"ec041831cb2147778b594feb9d8db44a\",\n \"name\": \"Search Campaign\",\n \"description\": \"Search Campaign\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"SEARCH\",\n \"status\": \"PENDING\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"created\": \"2022-08-03T13:54:34.344Z\",\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0fbe863c063c4c88a35fd7f17e8a3df5\",\n \"name\": \"Test Search Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"user\",\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": null\n },\n \"query\": \"user\",\n \"identityIds\": null,\n \"accessConstraints\": []\n },\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": 0,\n \"completedCertifications\": 0,\n \"sourcesWithOrphanEntitlements\": null,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "258e693e-dd8b-4a11-95ba-6f15508d3f7b", + "name": "Source Owner", + "originalRequest": { + "url": { + "path": [ + "campaigns" + ], + "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\": \"Source Owner\",\n \"description\": \"Source Owner Info\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"SOURCE_OWNER\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0c46fb26c6b20967a55517ee90d15b93\"\n },\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"612b31b1a0f04aaf83123bdb80e70db6\"\n ]\n },\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"fd7b76ba4ea042de8a9414aa12fc977a\",\n \"name\": \"Source Owner\",\n \"description\": \"Source Owner Info\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"SOURCE_OWNER\",\n \"status\": \"PENDING\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"created\": \"2022-08-03T13:34:19.541Z\",\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0fbe863c063c4c88a35fd7f17e8a3df5\",\n \"name\": \"Test Source Owner Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"sourceIds\": [\n \"612b31b1a0f04aaf83123bdb80e70db6\"\n ],\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": 0,\n \"completedCertifications\": 0,\n \"sourcesWithOrphanEntitlements\": null,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "855dba44-336d-4aab-bd11-2f4852b326f7", + "name": "Role Composition", + "originalRequest": { + "url": { + "path": [ + "campaigns" + ], + "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\": \"Role Composition Campaign\",\n \"description\": \"A review done by a role owner.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"ROLE_COMPOSITION\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0c46fb26c6b20967a55517ee90d15b93\"\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"roleIds\": [\n \"b15d609fc5c8434b865fe552315fda8f\"\n ],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"3b2e2e5821e84127b6d693d41c40623b\",\n \"name\": \"Role Composition Campaign\",\n \"description\": \"A review done by a role owner.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"ROLE_COMPOSITION\",\n \"status\": \"PENDING\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"created\": \"2022-08-02T20:30:46.083Z\",\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0fbe863c063c4c88a35fd7f17e8a3df5\",\n \"name\": \"Test Role Composition Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"reviewerId\": null,\n \"reviewer\": null,\n \"roleIds\": [\n \"b15d609fc5c8434b865fe552315fda8f\"\n ],\n \"query\": null,\n \"description\": null\n },\n \"alerts\": null,\n \"totalCertifications\": 0,\n \"completedCertifications\": 0,\n \"sourcesWithOrphanEntitlements\": null,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "4d6c7890-9dc1-45d8-a586-cdbd2cbf8735", + "name": "Manager", + "originalRequest": { + "url": { + "path": [ + "campaigns" + ], + "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\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"MANAGER\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0c46fb26c6b20967a55517ee90d15b93\"\n },\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -18545,13 +19251,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "aaf53390-1a00-4a0c-b25b-86b73361bf37", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "50d535bd-b09e-4095-b7d1-d3befdfc0f92", + "name": "Manager", "originalRequest": { "url": { "path": [ @@ -18584,7 +19290,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"STAGED\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ROLE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "raw": "{\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"MANAGER\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0c46fb26c6b20967a55517ee90d15b93\"\n },\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -18601,13 +19307,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "286a353d-7cb6-4fa6-91b5-4df62d2e174c", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "32fb3a67-be3e-465e-9902-4ca81974bb8c", + "name": "An example of a 403 response object", "originalRequest": { "url": { "path": [ @@ -18640,7 +19346,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"STAGED\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ROLE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "raw": "{\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"MANAGER\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0c46fb26c6b20967a55517ee90d15b93\"\n },\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -18657,13 +19363,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3a626346-1c61-48af-a491-2b6c51fdaced", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "7b270641-b738-45a3-a91f-761c8aad057a", + "name": "Manager", "originalRequest": { "url": { "path": [ @@ -18696,7 +19402,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"STAGED\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ROLE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "raw": "{\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"MANAGER\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0c46fb26c6b20967a55517ee90d15b93\"\n },\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -18713,13 +19419,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f8164684-5f22-406f-9f25-6fb17ab6a9c7", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "a3070433-7971-4acb-ba51-d8346807f224", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -18752,7 +19458,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"STAGED\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ROLE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "raw": "{\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"MANAGER\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"0c46fb26c6b20967a55517ee90d15b93\"\n },\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -18769,7 +19475,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -18780,7 +19486,7 @@ } }, { - "id": "3b139439-42cb-4567-a554-f38a1f81bf58", + "id": "7ecd6548-5111-4de8-b162-0e3f873d0d2e", "name": "Deletes Campaigns", "request": { "name": "Deletes Campaigns", @@ -18812,7 +19518,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"2c9180887335cee10173490db1776c26\",\n \"2c9180836a712436016a7125a90c0021\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18823,7 +19529,7 @@ }, "response": [ { - "id": "91c1dc25-68fb-452d-a43b-2d58303b6c66", + "id": "65a518e2-e4e2-404c-a2f4-fe72e54a1cf8", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -18858,7 +19564,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"2c9180887335cee10173490db1776c26\",\n \"2c9180836a712436016a7125a90c0021\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18880,7 +19586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "726a2b2e-2674-485e-95f2-8e27d99c1c67", + "id": "db2f88c0-3177-48bd-9306-1653c848f899", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18915,7 +19621,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"2c9180887335cee10173490db1776c26\",\n \"2c9180836a712436016a7125a90c0021\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18932,12 +19638,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "dc44de37-7733-4763-8b8d-fe70dd687058", + "id": "5006c310-5135-454e-90ce-da65c92129c8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18972,7 +19678,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"2c9180887335cee10173490db1776c26\",\n \"2c9180836a712436016a7125a90c0021\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18989,12 +19695,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7479be9b-6f59-4877-9b09-ed92bfbce05a", + "id": "8ef27a65-b7b0-4c1d-8d2a-c533f2b27c38", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19029,7 +19735,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"2c9180887335cee10173490db1776c26\",\n \"2c9180836a712436016a7125a90c0021\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19046,12 +19752,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "59916250-9505-4785-b77b-c36a8c975ab2", + "id": "b190c7a9-79cd-4dfd-b388-8a526180066c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19086,7 +19792,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"2c9180887335cee10173490db1776c26\",\n \"2c9180836a712436016a7125a90c0021\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19103,12 +19809,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "97f150a7-df4e-4b98-89ff-08ef9b767156", + "id": "c2290511-5a4d-4286-a85f-ed159a191cf7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19143,7 +19849,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"2c9180887335cee10173490db1776c26\",\n \"2c9180836a712436016a7125a90c0021\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19160,12 +19866,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ecd1ecf7-6067-409c-ae0f-861a3623c0df", + "id": "2f4324e5-e0f8-47b3-ba08-f0b507144160", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19200,7 +19906,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"2c9180887335cee10173490db1776c26\",\n \"2c9180836a712436016a7125a90c0021\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19217,7 +19923,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -19228,7 +19934,7 @@ } }, { - "id": "1d7b7402-5eb0-4b17-bb0b-efb8a05951f6", + "id": "194051d1-7fcf-466e-8893-7d20b7f32567", "name": "Get a campaign", "request": { "name": "Get a campaign", @@ -19248,7 +19954,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808571bcfcf80171c23e4b4221fc", "key": "id", "disabled": true, "description": { @@ -19269,8 +19975,8 @@ }, "response": [ { - "id": "3565277e-4158-44cc-a564-f7f8f8428511", - "name": "A campaign object", + "id": "a6f89b25-f911-4b8c-9ce3-408ec80c099c", + "name": "Manager", "originalRequest": { "url": { "path": [ @@ -19308,12 +20014,144 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ERROR\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"id\": \"2c918086719eec070171a7e3355a360a\",\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadline\": \"2020-12-25T06:00:00.123Z\",\n \"type\": \"MANAGER\",\n \"status\": \"ACTIVE\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "34d5bc74-49ad-48e4-85f1-67a3a0be03b5", + "id": "e2cbaea6-b6f4-401b-a49f-648d4519262b", + "name": "Search", + "originalRequest": { + "url": { + "path": [ + "campaigns", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"7e1a731e3fb845cfbe58112ba4673ee4\",\n \"name\": \"Search Campaign\",\n \"description\": \"Search Campaign Info\",\n \"deadline\": \"2022-07-26T15:42:44.000Z\",\n \"type\": \"SEARCH\",\n \"status\": \"ACTIVE\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "4fa4b3fa-ff86-40ba-980d-5e6a1075ec0f", + "name": "Source Owner", + "originalRequest": { + "url": { + "path": [ + "campaigns", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"2c918086719eec070171a7e3355a412b\",\n \"name\": \"AD Source Review\",\n \"description\": \"A review of our AD source.\",\n \"deadline\": \"2020-12-25T06:00:00.123Z\",\n \"type\": \"SOURCE_OWNER\",\n \"status\": \"STAGED\",\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "9a4ec5db-10bf-4f65-bb55-e82999a035ad", + "name": "RoleComposition", + "originalRequest": { + "url": { + "path": [ + "campaigns", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"3b2e2e5821e84127b6d693d41c40623b\",\n \"name\": \"Role Composition Campaign\",\n \"description\": \"A review done by a role owner.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"ROLE_COMPOSITION\",\n \"status\": \"ACTIVE\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "216eb189-394a-4b76-a4df-d6da29559fd6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19352,12 +20190,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2d174c27-b252-494d-afcf-12e591a25e25", + "id": "5aaa21dc-f03d-41a8-b37d-fbf9228d3573", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19396,12 +20234,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c597c60-fc22-49d4-a94d-7c6c5e938703", + "id": "ff45d4c7-521a-4e7a-9226-44e137dc7df2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19440,12 +20278,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "03328251-9676-4bd2-a6d2-c369d2bc0287", + "id": "732c0f57-f141-4333-9dfc-5edec6e490c1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19484,12 +20322,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e4627e7a-7d50-46bb-97ad-2cdb28313e6f", + "id": "2cdc57b0-fcb8-4b4f-851d-4260df0d55c1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19528,12 +20366,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b7b12c39-5652-4e3a-a984-4cb2d6f10627", + "id": "524b5b97-86fb-4842-a0ad-35f58bcdc9f1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19572,7 +20410,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -19583,7 +20421,7 @@ } }, { - "id": "9826a0d7-17ba-490d-9fcc-176d52587f4c", + "id": "f28eaa8a-6ff4-4e9c-ac01-8bff220f4782", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -19603,7 +20441,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808571bcfcf80171c23e4b4221fc", "key": "id", "disabled": true, "description": { @@ -19626,7 +20464,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"This field has been updated!\"\n },\n {\n \"op\": \"copy\",\n \"from\": \"/name\",\n \"path\": \"/description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -19637,8 +20475,8 @@ }, "response": [ { - "id": "95335294-11b0-4173-aca3-610bffade905", - "name": "Indicates the PATCH operation succeeded, and returns the campaign's new representation.", + "id": "7736c0da-3b77-4446-9d77-a115e2425430", + "name": "Manager", "originalRequest": { "url": { "path": [ @@ -19672,7 +20510,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"This field has been updated!\"\n },\n {\n \"op\": \"copy\",\n \"from\": \"/name\",\n \"path\": \"/description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -19689,12 +20527,183 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ERROR\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"id\": \"2c918086719eec070171a7e3355a360a\",\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadline\": \"2020-12-25T06:00:00.123Z\",\n \"type\": \"MANAGER\",\n \"status\": \"ACTIVE\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aa138ef1-660f-49e0-b0ef-4ccd09c3ec92", + "id": "58dff657-e7dd-4910-8ca2-a02c8c5a7eba", + "name": "Search", + "originalRequest": { + "url": { + "path": [ + "campaigns", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"This field has been updated!\"\n },\n {\n \"op\": \"copy\",\n \"from\": \"/name\",\n \"path\": \"/description\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"7e1a731e3fb845cfbe58112ba4673ee4\",\n \"name\": \"Search Campaign\",\n \"description\": \"Search Campaign Info\",\n \"deadline\": \"2022-07-26T15:42:44.000Z\",\n \"type\": \"SEARCH\",\n \"status\": \"ACTIVE\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "7dfa5c5c-3a89-4fa5-a7d1-cbcbfaf18e32", + "name": "Source Owner", + "originalRequest": { + "url": { + "path": [ + "campaigns", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"This field has been updated!\"\n },\n {\n \"op\": \"copy\",\n \"from\": \"/name\",\n \"path\": \"/description\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"2c918086719eec070171a7e3355a412b\",\n \"name\": \"AD Source Review\",\n \"description\": \"A review of our AD source.\",\n \"deadline\": \"2020-12-25T06:00:00.123Z\",\n \"type\": \"SOURCE_OWNER\",\n \"status\": \"STAGED\",\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "47506bde-d05a-43ab-bf86-9aaa1c9dcd02", + "name": "RoleComposition", + "originalRequest": { + "url": { + "path": [ + "campaigns", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"This field has been updated!\"\n },\n {\n \"op\": \"copy\",\n \"from\": \"/name\",\n \"path\": \"/description\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"3b2e2e5821e84127b6d693d41c40623b\",\n \"name\": \"Role Composition Campaign\",\n \"description\": \"A review done by a role owner.\",\n \"deadline\": \"2020-12-25T06:00:00.468Z\",\n \"type\": \"ROLE_COMPOSITION\",\n \"status\": \"ACTIVE\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "51a797b7-7300-4622-ab9c-e129c4fa01f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19729,7 +20738,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"This field has been updated!\"\n },\n {\n \"op\": \"copy\",\n \"from\": \"/name\",\n \"path\": \"/description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -19746,12 +20755,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ff8c6cb4-b12f-468c-8f2d-fe403cbe48fc", + "id": "0b0ab827-250f-44eb-b655-1d19d26a1007", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19786,7 +20795,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"This field has been updated!\"\n },\n {\n \"op\": \"copy\",\n \"from\": \"/name\",\n \"path\": \"/description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -19803,12 +20812,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "da38fde0-5261-426d-95d0-f5870aa46055", + "id": "4e091edd-bff3-47fb-84ac-426da08bda5d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19843,7 +20852,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"This field has been updated!\"\n },\n {\n \"op\": \"copy\",\n \"from\": \"/name\",\n \"path\": \"/description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -19860,12 +20869,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6e0458d1-dbe5-45c8-a5e5-a08244541895", + "id": "b869e01d-b833-4e45-b84e-00eccca53128", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19900,7 +20909,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"This field has been updated!\"\n },\n {\n \"op\": \"copy\",\n \"from\": \"/name\",\n \"path\": \"/description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -19917,12 +20926,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "91ef49f4-5fd7-48ca-96f4-9c88be5e1c05", + "id": "ebb5269b-8c6b-4c5a-84d0-74e08528f7b5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19957,7 +20966,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"This field has been updated!\"\n },\n {\n \"op\": \"copy\",\n \"from\": \"/name\",\n \"path\": \"/description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -19974,12 +20983,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7d56187a-f437-4ce2-8073-5459c40fa052", + "id": "1d36542d-c47d-4b76-8f0c-372edc50af76", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20014,7 +21023,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"This field has been updated!\"\n },\n {\n \"op\": \"copy\",\n \"from\": \"/name\",\n \"path\": \"/description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -20031,7 +21040,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -20042,7 +21051,7 @@ } }, { - "id": "34ed889c-1aa4-40cc-a353-2db83520f334", + "id": "6bcf0f57-2c7a-4844-ac40-815c4f1a57d4", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -20063,7 +21072,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -20086,7 +21095,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"timeZone\": \"Z\"\n}", + "raw": "{\n \"timeZone\": \"-05:00\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20097,7 +21106,7 @@ }, "response": [ { - "id": "d73e1ccb-b7de-4ad4-9873-7f15a29f7a7a", + "id": "8489210d-eb19-4020-9def-6f446ec66958", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -20133,7 +21142,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"timeZone\": \"Z\"\n}", + "raw": "{\n \"timeZone\": \"-05:00\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20155,7 +21164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5dfc205-4b04-4019-972d-a00ce004fa81", + "id": "196faa54-b04a-4e43-93f1-68b7ff9c2353", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20191,7 +21200,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"timeZone\": \"Z\"\n}", + "raw": "{\n \"timeZone\": \"-05:00\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20208,12 +21217,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "35f81452-5976-46f6-8025-3943321681ee", + "id": "a11ac300-29f1-441d-a00e-24e859997632", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20249,7 +21258,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"timeZone\": \"Z\"\n}", + "raw": "{\n \"timeZone\": \"-05:00\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20266,12 +21275,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5ec01ffa-9330-4067-9d96-c47e6263114d", + "id": "9092e6af-666b-4eaa-8a8e-502b7294da92", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20307,7 +21316,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"timeZone\": \"Z\"\n}", + "raw": "{\n \"timeZone\": \"-05:00\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20324,12 +21333,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e686e4e8-6cbf-4b08-9fca-c6c6e1187db4", + "id": "e069e870-fde0-498e-8069-7932c8fe69aa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20365,7 +21374,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"timeZone\": \"Z\"\n}", + "raw": "{\n \"timeZone\": \"-05:00\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20382,12 +21391,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3e09d191-5278-4bc0-b5c3-9da7c524738a", + "id": "c8b7cb49-9739-4115-abec-1657b5b14077", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20423,7 +21432,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"timeZone\": \"Z\"\n}", + "raw": "{\n \"timeZone\": \"-05:00\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20440,12 +21449,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2ae5209d-5599-4622-a6ed-993eb9f8a465", + "id": "cf884f6e-d45e-44d0-a9cf-2732adccab5b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20481,7 +21490,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"timeZone\": \"Z\"\n}", + "raw": "{\n \"timeZone\": \"-05:00\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20498,7 +21507,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -20509,7 +21518,7 @@ } }, { - "id": "7ca9305c-8fcb-4d00-be17-9b1d7a6740d9", + "id": "f5d1053a-d63a-43d8-985a-331d0fdbaed8", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -20530,7 +21539,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -20553,7 +21562,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"autoCompleteAction\": \"APPROVE\"\n}", + "raw": "{\n \"autoCompleteAction\": \"REVOKE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20564,7 +21573,7 @@ }, "response": [ { - "id": "ae35e395-dcd4-47ae-9eb7-a855e82fb5c9", + "id": "0e2a46c3-6d14-4f37-8b85-54926c3d8e2c", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -20600,7 +21609,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"autoCompleteAction\": \"APPROVE\"\n}", + "raw": "{\n \"autoCompleteAction\": \"REVOKE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20622,7 +21631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e3cf056-3539-49ad-a49f-7b9fc20d723f", + "id": "ff72f1d7-7bca-4d17-96ca-8eafd4137393", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20658,7 +21667,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"autoCompleteAction\": \"APPROVE\"\n}", + "raw": "{\n \"autoCompleteAction\": \"REVOKE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20675,12 +21684,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3f944e57-8700-4adc-ab78-f536df12a2df", + "id": "bc1a5974-e3c9-433e-8de1-8dbb125308db", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20716,7 +21725,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"autoCompleteAction\": \"APPROVE\"\n}", + "raw": "{\n \"autoCompleteAction\": \"REVOKE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20733,12 +21742,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "482ff516-4e2a-4e2b-b1f2-df9a1b0fd78a", + "id": "c982256d-957b-4a02-8e66-4d93910ca169", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20774,7 +21783,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"autoCompleteAction\": \"APPROVE\"\n}", + "raw": "{\n \"autoCompleteAction\": \"REVOKE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20791,12 +21800,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "88ee2b1d-4f3f-423a-a4f2-5844ee7c468b", + "id": "fd6242e6-860c-4531-8976-3074d96cd121", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20832,7 +21841,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"autoCompleteAction\": \"APPROVE\"\n}", + "raw": "{\n \"autoCompleteAction\": \"REVOKE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20849,12 +21858,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ac60d8f9-b51a-40ab-833c-7dc40e551987", + "id": "a5d1b03b-a784-4483-b887-ae9c6a65961f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20890,7 +21899,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"autoCompleteAction\": \"APPROVE\"\n}", + "raw": "{\n \"autoCompleteAction\": \"REVOKE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20907,12 +21916,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7ed29ff1-d7bd-4951-8fa9-ea4e16b34ac0", + "id": "27373b7b-bde8-4253-a228-6abc88a4377f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20948,7 +21957,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"autoCompleteAction\": \"APPROVE\"\n}", + "raw": "{\n \"autoCompleteAction\": \"REVOKE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -20965,7 +21974,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -20976,7 +21985,7 @@ } }, { - "id": "b228dbbb-3a94-4459-aa40-a9a1158c0d19", + "id": "c37b2276-c770-4d71-bc55-8d9b9cc9bbfd", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -20997,7 +22006,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808571bcfcf80171c23e4b4221fc", "key": "id", "disabled": true, "description": { @@ -21018,7 +22027,7 @@ }, "response": [ { - "id": "c65f5ca0-9f5d-46cc-8bbf-82faf3ec4b29", + "id": "133cf800-721f-4a3a-be35-793591e3895e", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -21063,7 +22072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdc3feeb-685b-4d6f-8be3-68b4ff0e08cb", + "id": "90e6fe51-100b-46e7-9f49-c4f193ec0dbe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21103,12 +22112,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "902e11a2-d841-427e-a7d0-71cbb65031f6", + "id": "b2007ed4-24aa-419b-9138-f2903ea315eb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21148,12 +22157,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e067f44-945b-40b0-9d88-a4421e347555", + "id": "80472a49-a5a5-4a3b-9fb7-b5181f5650bd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21193,12 +22202,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d3fcb425-ce53-4cda-9d83-4ace2d0ea4a1", + "id": "c2614a1e-dae3-4997-853d-fa8d3cf1d404", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21238,12 +22247,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3d064992-3023-4ed1-b973-0b3b525de024", + "id": "b3423e06-ac47-4c23-88b2-685774e396d3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21283,12 +22292,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f54c343e-af4e-4da9-b814-3be75839ddc4", + "id": "d0c60d1f-57b2-4d66-a0a4-2383d3e9619f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21328,7 +22337,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -21339,7 +22348,7 @@ } }, { - "id": "57774e71-a0c0-47a5-a459-2e9b56163481", + "id": "345ecce7-1f0e-4afb-9b11-d9f0088c5f3d", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -21360,7 +22369,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -21383,7 +22392,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"certificationIds\": [\n \"\"\n ],\n \"reassignTo\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"\"\n}", + "raw": "{\n \"certificationIds\": [\n \"af3859464779471211bb8424a563abc1\",\n \"af3859464779471211bb8424a563abc2\",\n \"af3859464779471211bb8424a563abc3\"\n ],\n \"reassignTo\": {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -21394,7 +22403,7 @@ }, "response": [ { - "id": "5e104a84-c078-469b-9dff-8246217cb37f", + "id": "749380cd-9e47-42f8-b517-ebd1f4b4495d", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -21430,7 +22439,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"certificationIds\": [\n \"\"\n ],\n \"reassignTo\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"\"\n}", + "raw": "{\n \"certificationIds\": [\n \"af3859464779471211bb8424a563abc1\",\n \"af3859464779471211bb8424a563abc2\",\n \"af3859464779471211bb8424a563abc3\"\n ],\n \"reassignTo\": {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -21447,12 +22456,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"type\": \"CAMPAIGN_DELETE\",\n \"targetType\": \"CERTIFICATION\",\n \"targetId\": \"\",\n \"status\": \"ERROR\",\n \"errors\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"2c918086719eec070171a7e3355a360a\",\n \"type\": \"ADMIN_REASSIGN\",\n \"targetType\": \"CAMPAIGN\",\n \"targetId\": \"2c918086719eec070171a7e3355a834c\",\n \"status\": \"QUEUED\",\n \"errors\": [],\n \"created\": \"2020-09-24T18:10:47.693Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d908848-8b41-4f16-81c6-141528175a36", + "id": "b6277eaa-19d7-4e6a-b3b1-919c68cb87b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21488,7 +22497,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"certificationIds\": [\n \"\"\n ],\n \"reassignTo\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"\"\n}", + "raw": "{\n \"certificationIds\": [\n \"af3859464779471211bb8424a563abc1\",\n \"af3859464779471211bb8424a563abc2\",\n \"af3859464779471211bb8424a563abc3\"\n ],\n \"reassignTo\": {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -21505,12 +22514,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "78d838df-a070-4909-885d-c143957775ee", + "id": "9c2e4031-8767-458a-86aa-5644590b3fda", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21546,7 +22555,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"certificationIds\": [\n \"\"\n ],\n \"reassignTo\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"\"\n}", + "raw": "{\n \"certificationIds\": [\n \"af3859464779471211bb8424a563abc1\",\n \"af3859464779471211bb8424a563abc2\",\n \"af3859464779471211bb8424a563abc3\"\n ],\n \"reassignTo\": {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -21563,12 +22572,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed287a16-bea8-44a1-b682-8a87696b96de", + "id": "e43f1466-a130-4153-8ec7-537f1c7614bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21604,7 +22613,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"certificationIds\": [\n \"\"\n ],\n \"reassignTo\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"\"\n}", + "raw": "{\n \"certificationIds\": [\n \"af3859464779471211bb8424a563abc1\",\n \"af3859464779471211bb8424a563abc2\",\n \"af3859464779471211bb8424a563abc3\"\n ],\n \"reassignTo\": {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -21621,12 +22630,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5b13e18d-e938-42bb-88e1-bec83b0a0c26", + "id": "371c7149-b257-4cc3-ac9f-4a084c990fe1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21662,7 +22671,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"certificationIds\": [\n \"\"\n ],\n \"reassignTo\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"\"\n}", + "raw": "{\n \"certificationIds\": [\n \"af3859464779471211bb8424a563abc1\",\n \"af3859464779471211bb8424a563abc2\",\n \"af3859464779471211bb8424a563abc3\"\n ],\n \"reassignTo\": {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -21679,12 +22688,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "417604be-d49a-42e4-8949-248a202be2cc", + "id": "28c8f423-2faa-491e-9f31-8bc486689a3e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21720,7 +22729,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"certificationIds\": [\n \"\"\n ],\n \"reassignTo\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"\"\n}", + "raw": "{\n \"certificationIds\": [\n \"af3859464779471211bb8424a563abc1\",\n \"af3859464779471211bb8424a563abc2\",\n \"af3859464779471211bb8424a563abc3\"\n ],\n \"reassignTo\": {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -21737,12 +22746,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb0b12cb-d769-4331-83d5-ea82b8984c86", + "id": "42792c77-d145-4b8e-8e2d-452caeaf1cde", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21778,7 +22787,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"certificationIds\": [\n \"\"\n ],\n \"reassignTo\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"\"\n}", + "raw": "{\n \"certificationIds\": [\n \"af3859464779471211bb8424a563abc1\",\n \"af3859464779471211bb8424a563abc2\",\n \"af3859464779471211bb8424a563abc3\"\n ],\n \"reassignTo\": {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"IDENTITY\"\n },\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -21795,7 +22804,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -21806,7 +22815,7 @@ } }, { - "id": "ff9f903c-51c6-46c2-9b80-3ee5a1c57226", + "id": "29642498-3699-4afe-8dc0-d31c4aa1704e", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -21827,7 +22836,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808571bcfcf80171c23e4b4221fc", "key": "id", "disabled": true, "description": { @@ -21848,7 +22857,7 @@ }, "response": [ { - "id": "debc0ba7-0101-4bfc-aadf-1a3d8e78a8bc", + "id": "73fe9222-40c1-4c06-83b2-36a399669582", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -21888,12 +22897,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"reportType\": \"CERTIFICATION_SIGNOFF_REPORT\",\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"WARNING\",\n \"lastRunAt\": \"\"\n },\n {\n \"reportType\": \"CAMPAIGN_REMEDIATION_STATUS_REPORT\",\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"SUCCESS\",\n \"lastRunAt\": \"\"\n }\n]", + "body": "[\n {\n \"type\": \"REPORT_RESULT\",\n \"name\": \"Campaign Composition Report\",\n \"status\": \"SUCCESS\",\n \"reportType\": \"CAMPAIGN_COMPOSITION_REPORT\",\n \"lastRunAt\": \"2019-12-19T13:49:37.385Z\"\n },\n {\n \"type\": \"REPORT_RESULT\",\n \"name\": \"Campaign Composition Report\",\n \"status\": \"SUCCESS\",\n \"reportType\": \"CAMPAIGN_COMPOSITION_REPORT\",\n \"lastRunAt\": \"2019-12-19T13:49:37.385Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0f1a454b-d169-48d7-b95c-eb652d1ee2aa", + "id": "f611ebd3-81a4-420a-9f3a-359217fca948", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21933,12 +22942,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "93c61774-8c16-4097-b6e8-6f43cb30929f", + "id": "a3fdce10-574d-4b4c-9ae6-6185f6ec99a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21978,12 +22987,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "547baffa-3700-478a-b195-56aac72f6236", + "id": "ec9e6056-c86f-402d-88df-7e95c60d05c0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22023,12 +23032,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ece74e1e-5b78-442c-a90e-a8a1ff20eaf1", + "id": "c2e25c18-250d-4471-b277-97086794406b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -22068,12 +23077,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "cf442f5d-7d5b-4690-bb0a-0729ae97f8a9", + "id": "9d67107a-acf3-426e-997c-094d816e7050", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22113,12 +23122,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "be89564e-105b-4ae8-9ee8-1262707935ae", + "id": "2a892a36-bac6-47ce-99db-731457818091", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22158,7 +23167,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -22169,7 +23178,7 @@ } }, { - "id": "cf720617-bd13-4429-915c-521391cb4693", + "id": "1ec3823e-b15f-46b4-a1cb-3e51a48fa731", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -22191,7 +23200,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808571bcfcf80171c23e4b4221fc", "key": "id", "disabled": true, "description": { @@ -22201,7 +23210,7 @@ }, { "type": "any", - "value": "CERTIFICATION_SIGNOFF_REPORT", + "value": "CAMPAIGN_COMPOSITION_REPORT", "key": "type", "disabled": true, "description": { @@ -22222,7 +23231,7 @@ }, "response": [ { - "id": "31effe73-d273-4456-992a-70a11c121293", + "id": "8e704ab2-8f6d-4189-a3e3-808dea72c1c0", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -22268,7 +23277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01e6bbfa-fbe9-45ca-a2ff-d45360ffde31", + "id": "823a0604-a26e-455c-920a-07c0d0f10a01", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22309,12 +23318,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f134e009-56f5-47e4-ab7d-37bee39cd6a7", + "id": "8f98563c-fc47-4207-a5cb-23163bb5ae99", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22355,12 +23364,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "981d7c92-b5a4-475d-be49-58885d11360b", + "id": "753b691f-a054-431f-b68d-9ce0b4c2937e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22401,12 +23410,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b480565e-7bbc-4c8c-8ad0-7390e6376794", + "id": "57ecf07f-7fbc-48f5-b679-c8e08c1af46f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -22447,12 +23456,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5a106218-b07d-4b1b-a2c0-6b56d0053e9b", + "id": "e59b5a44-37ed-4aff-9d7e-02f8ebcd679b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22493,12 +23502,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dc48d700-6c0a-44ad-b458-a45229cf76cf", + "id": "3d824d09-b591-4df5-9923-1d53575d9c90", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22539,7 +23548,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -22550,7 +23559,7 @@ } }, { - "id": "9419bc9c-2f30-4dff-a701-aaf033311c0a", + "id": "b5a65562-e318-4ddf-be2b-cdf086789a06", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -22580,7 +23589,7 @@ }, "response": [ { - "id": "cec77850-34f4-41c1-b435-cf6b5fc65560", + "id": "540f0012-5ea6-447e-b245-83226e4f5e46", "name": "Campaign Report Configuration", "originalRequest": { "url": { @@ -22619,12 +23628,12 @@ "value": "application/json" } ], - "body": "{\n \"identityAttributeColumns\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"identityAttributeColumns\": [\n \"firstname\",\n \"lastname\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a47697d6-db79-44ea-96c9-8465f6e8506d", + "id": "816a8dbe-a8b2-4374-8ad3-7d6d062bc2f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22663,12 +23672,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b01b24a5-09fb-4e4c-adbf-38dd167e7302", + "id": "2239f388-aed2-4736-8ca9-852d6336bd24", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22707,12 +23716,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8a19075d-67bf-4e4f-a23f-06b30bc6cc6e", + "id": "7fd4d0b3-c6b6-4170-bab0-e740d1ccbdb9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22751,12 +23760,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "91fc75f0-9a16-435b-8acc-91b02708275b", + "id": "792eb7c5-6bd0-4789-9c0b-fa9dffdf68e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22795,12 +23804,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "465e80e2-6829-4cf7-8e19-e18ec0486378", + "id": "97941919-f74f-42a2-9e84-4377f4085cf5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22839,7 +23848,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -22850,7 +23859,7 @@ } }, { - "id": "d674fa47-3078-4e02-a312-12b44e85a71e", + "id": "34382a52-d834-4e06-8ee1-3d2e9c150548", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -22882,7 +23891,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"identityAttributeColumns\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityAttributeColumns\": [\n \"firstname\",\n \"lastname\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -22893,7 +23902,7 @@ }, "response": [ { - "id": "03de8d1b-8641-449d-b7d7-84f64e9ae6a1", + "id": "c9118578-35b5-4243-be74-f6b18d24bc36", "name": "The persisted Campaign Report Configuration", "originalRequest": { "url": { @@ -22928,7 +23937,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"identityAttributeColumns\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityAttributeColumns\": [\n \"firstname\",\n \"lastname\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -22945,12 +23954,12 @@ "value": "application/json" } ], - "body": "{\n \"identityAttributeColumns\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"identityAttributeColumns\": [\n \"firstname\",\n \"lastname\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ab2d4eac-6305-4f3e-b625-35f942cf9679", + "id": "731892d5-6f4c-4024-94f0-285be02ce1c8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22985,7 +23994,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"identityAttributeColumns\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityAttributeColumns\": [\n \"firstname\",\n \"lastname\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -23002,12 +24011,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5146f423-1f55-43c5-a102-d3af780da7d5", + "id": "340de3ca-5fe8-4b37-b081-753d3c4e2429", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23042,7 +24051,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"identityAttributeColumns\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityAttributeColumns\": [\n \"firstname\",\n \"lastname\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -23059,12 +24068,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7fe1cfd4-15ef-43b5-b7a5-154c739454f0", + "id": "e10490c8-ace4-4c50-b8ac-19a28908a386", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23099,7 +24108,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"identityAttributeColumns\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityAttributeColumns\": [\n \"firstname\",\n \"lastname\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -23116,12 +24125,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "242b1460-290a-4317-aec2-04b747e20ba8", + "id": "abcf28ae-6ae3-405c-89e5-280ad5b054ab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23156,7 +24165,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"identityAttributeColumns\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityAttributeColumns\": [\n \"firstname\",\n \"lastname\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -23173,12 +24182,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dffed34c-367b-4b40-8d5b-a082026fb989", + "id": "fd461159-5f73-4a5d-ac15-e006f34a881a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23213,7 +24222,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"identityAttributeColumns\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"identityAttributeColumns\": [\n \"firstname\",\n \"lastname\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -23230,7 +24239,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -23241,7 +24250,7 @@ } }, { - "id": "868663cc-c887-477e-b11e-e0f0c9061a70", + "id": "f3a0d22a-8a1a-4a91-a5c4-5c2eb6278239", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -23282,7 +24291,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -23291,7 +24300,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -23300,7 +24309,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"manager template\"" } ], "variable": [] @@ -23316,7 +24325,7 @@ }, "response": [ { - "id": "2a9dec61-2a19-48f7-964a-9d18df16e5b1", + "id": "4c0d0a98-edc7-4035-8007-40af7a046814", "name": "List of campaign template objects", "originalRequest": { "url": { @@ -23352,7 +24361,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -23361,7 +24370,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -23370,7 +24379,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"manager template\"" } ], "variable": [] @@ -23400,12 +24409,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ROLE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": false,\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"CANCELING\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ROLE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"ALL_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": false,\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"e7dbec99d49349c8951bd84f58a05120\",\n \"name\": \"Manager Review\",\n \"created\": \"2022-08-02T19:16:42.632Z\",\n \"modified\": null,\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadlineDuration\": \"P14D\",\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\",\n \"name\": \"Test Manager Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"Manager Review\",\n \"description\": \"Review everyone's access.\",\n \"deadline\": null,\n \"type\": \"MANAGER\",\n \"status\": null,\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n },\n {\n \"id\": \"b7e6459eed5247ac8b98a5fed81fe27f\",\n \"name\": \"Reporting Access Review\",\n \"created\": \"2022-07-28T19:19:40.035Z\",\n \"modified\": null,\n \"description\": \"A review of everyone's access to the reporting system.\",\n \"deadlineDuration\": \"P14D\",\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\",\n \"name\": \"Test Search Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"Identities with reporting abilities\",\n \"reviewerId\": null,\n \"reviewer\": null,\n \"query\": \"@access(name: (\\\"reporter\\\"))\",\n \"identityIds\": null,\n \"accessConstraints\": []\n },\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"Search Campaign\",\n \"description\": \"Review everyone's access to the reporting system.\",\n \"deadline\": null,\n \"type\": \"SEARCH\",\n \"status\": null,\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n },\n {\n \"id\": \"b9f41bc69e7a4291b9de0630396d030d\",\n \"name\": \"Campaign With Admin Role\",\n \"created\": \"2022-08-02T13:40:36.857Z\",\n \"modified\": null,\n \"description\": \"Campaign With Admin Role\",\n \"deadlineDuration\": null,\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": null,\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"reviewerId\": null,\n \"reviewer\": null,\n \"roleIds\": [\n \"b15d609fc5c8434b865fe552315fda8f\"\n ],\n \"query\": null,\n \"description\": null\n },\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"Campaign With Admin Role\",\n \"description\": \"Campaign With Admin Role\",\n \"deadline\": null,\n \"type\": \"ROLE_COMPOSITION\",\n \"status\": null,\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n },\n {\n \"id\": \"b9f41bc69e7a4291b9de0630396d030d\",\n \"name\": \"AD Source Review\",\n \"created\": \"2022-08-02T13:40:36.857Z\",\n \"modified\": null,\n \"description\": \"A review of our AD source.\",\n \"deadlineDuration\": \"P1M\",\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\",\n \"name\": \"Test Source Owner Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"2c918084707deba501709d45ce4e5569\"\n ]\n },\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"AD Source Review\",\n \"description\": \"Review everyone's access.\",\n \"deadline\": null,\n \"type\": \"SOURCE_OWNER\",\n \"status\": null,\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ccb192d2-a570-4d60-8560-b37818f27543", + "id": "24590d94-a9e8-4ddf-b550-193fbbbc12f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23441,7 +24450,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -23450,7 +24459,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -23459,7 +24468,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"manager template\"" } ], "variable": [] @@ -23489,12 +24498,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "08cecfc9-ff4b-4687-a6e3-796f677f9b25", + "id": "acf8f689-e3e2-4eca-bef5-c1209e64c180", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23530,7 +24539,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -23539,7 +24548,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -23548,7 +24557,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"manager template\"" } ], "variable": [] @@ -23578,12 +24587,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12a76617-3bf3-49f9-9d2e-3bd729f44220", + "id": "ef734c25-51a7-45f4-83bd-53e2d6e9e7bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23619,7 +24628,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -23628,7 +24637,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -23637,7 +24646,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"manager template\"" } ], "variable": [] @@ -23667,12 +24676,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b663adf6-b25e-4909-9d94-9c0198f97236", + "id": "f5dea859-b427-479d-96e2-97df0f22c88a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23708,7 +24717,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -23717,7 +24726,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -23726,7 +24735,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"manager template\"" } ], "variable": [] @@ -23756,12 +24765,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f042a46-123d-48c3-9e65-98050f25fc5e", + "id": "aecd012d-cac0-475a-a433-815b864faa84", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23797,7 +24806,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -23806,7 +24815,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -23815,7 +24824,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"manager template\"" } ], "variable": [] @@ -23845,7 +24854,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -23856,7 +24865,7 @@ } }, { - "id": "192ee5c0-6fec-4091-afba-db242ce39ac2", + "id": "dd759658-2869-4199-a1d5-c85b168a3984", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -23887,7 +24896,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ROLE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": false,\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "raw": "{\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadlineDuration\": \"P2W\",\n \"campaign\": {\n \"name\": \"Manager Review\",\n \"description\": \"Review everyone's access.\",\n \"type\": \"MANAGER\",\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n },\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23898,8 +24907,8 @@ }, "response": [ { - "id": "2232fcbc-7ae1-4bb3-b91a-a1b5ba86c942", - "name": "Created successfully.", + "id": "10c58240-c868-4028-a295-3edf445be564", + "name": "Manager", "originalRequest": { "url": { "path": [ @@ -23932,7 +24941,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ROLE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": false,\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "raw": "{\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadlineDuration\": \"P2W\",\n \"campaign\": {\n \"name\": \"Manager Review\",\n \"description\": \"Review everyone's access.\",\n \"type\": \"MANAGER\",\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n },\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23949,13 +24958,13 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ROLE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": false,\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "body": "{\n \"id\": \"e7dbec99d49349c8951bd84f58a05120\",\n \"name\": \"Manager Review\",\n \"created\": \"2022-08-02T19:16:42.632Z\",\n \"modified\": null,\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadlineDuration\": \"P14D\",\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\",\n \"name\": \"Test Manager Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"Manager Review\",\n \"description\": \"Review everyone's access.\",\n \"deadline\": null,\n \"type\": \"MANAGER\",\n \"status\": null,\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "53ed2892-8576-4a33-8e42-5233fa097e3b", - "name": "Client Error - Returned if the request body is invalid.", + "id": "cb3a88b2-319d-4c93-bb4f-414660267fed", + "name": "Search", "originalRequest": { "url": { "path": [ @@ -23988,7 +24997,175 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ROLE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": false,\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "raw": "{\n \"name\": \"Reporting Access Review\",\n \"description\": \"A review of everyone's access to the reporting system.\",\n \"deadlineDuration\": \"P2W\",\n \"campaign\": {\n \"name\": \"Search Review\",\n \"description\": \"Review everyone's access to the reporting system.\",\n \"type\": \"SEARCH\",\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"query\": \"@access(name: (\\\"reporter\\\"))\",\n \"description\": \"Identities with reporting abilities\"\n },\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"b7e6459eed5247ac8b98a5fed81fe27f\",\n \"name\": \"Reporting Access Review\",\n \"created\": \"2022-07-28T19:19:40.035Z\",\n \"modified\": null,\n \"description\": \"A review of everyone's access to the reporting system.\",\n \"deadlineDuration\": \"P14D\",\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\",\n \"name\": \"Test Search Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"Identities with reporting abilities\",\n \"reviewerId\": null,\n \"reviewer\": null,\n \"query\": \"@access(name: (\\\"reporter\\\"))\",\n \"identityIds\": null,\n \"accessConstraints\": []\n },\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"Search Campaign Review\",\n \"description\": \"Review everyone's access to the reporting system.\",\n \"deadline\": null,\n \"type\": \"SEARCH\",\n \"status\": null,\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "0fd5248f-6862-49cd-a6ad-28ec4ba7d2be", + "name": "Source Owner", + "originalRequest": { + "url": { + "path": [ + "campaign-templates" + ], + "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\": \"AD Source Review\",\n \"description\": \"A review of our AD source.\",\n \"deadlineDuration\": \"P1M\",\n \"campaign\": {\n \"name\": \"Source Review\",\n \"description\": \"Review everyone's access.\",\n \"type\": \"SOURCE_OWNER\",\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n },\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"2c918084707deba501709d45ce4e5569\"\n ]\n },\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"b9f41bc69e7a4291b9de0630396d030d\",\n \"name\": \"AD Source Review\",\n \"created\": \"2022-08-02T13:40:36.857Z\",\n \"modified\": null,\n \"description\": \"A review of our AD source.\",\n \"deadlineDuration\": \"P1M\",\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\",\n \"name\": \"Test Source Owner Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"2c918084707deba501709d45ce4e5569\"\n ]\n },\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"AD Source Review\",\n \"description\": \"Review everyone's access.\",\n \"deadline\": null,\n \"type\": \"SOURCE_OWNER\",\n \"status\": null,\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "f9b4e30b-1c41-459f-8010-ac0c38b3d889", + "name": "RoleComposition", + "originalRequest": { + "url": { + "path": [ + "campaign-templates" + ], + "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\": \"Role Composition Review\",\n \"description\": \"A review of every role's access items, by the specified reviewer.\",\n \"deadlineDuration\": \"P2W\",\n \"campaign\": {\n \"name\": \"Role Composition Review\",\n \"description\": \"Review all our roles.\",\n \"type\": \"ROLE_COMPOSITION\",\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180876ab2c053016ab6f65dfd5aaa\"\n }\n },\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"b9f41bc69e7a4291b9de0630396d030d\",\n \"name\": \"Campaign With Admin Role\",\n \"created\": \"2022-08-02T13:40:36.857Z\",\n \"modified\": null,\n \"description\": \"Campaign With Admin Role\",\n \"deadlineDuration\": null,\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": null,\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"reviewerId\": null,\n \"reviewer\": null,\n \"roleIds\": [\n \"b15d609fc5c8434b865fe552315fda8f\"\n ],\n \"query\": null,\n \"description\": null\n },\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"Campaign With Admin Role\",\n \"description\": \"Campaign With Admin Role\",\n \"deadline\": null,\n \"type\": \"ROLE_COMPOSITION\",\n \"status\": null,\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "7521183e-43ff-425d-8495-5c652796fb0d", + "name": "Manager", + "originalRequest": { + "url": { + "path": [ + "campaign-templates" + ], + "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\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadlineDuration\": \"P2W\",\n \"campaign\": {\n \"name\": \"Manager Review\",\n \"description\": \"Review everyone's access.\",\n \"type\": \"MANAGER\",\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n },\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24005,13 +25182,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0b1b3b29-dedf-4e86-b25a-a356ec6df414", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "02d07988-d2f1-46c4-991f-4900624c2f6a", + "name": "Manager", "originalRequest": { "url": { "path": [ @@ -24044,7 +25221,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ROLE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": false,\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "raw": "{\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadlineDuration\": \"P2W\",\n \"campaign\": {\n \"name\": \"Manager Review\",\n \"description\": \"Review everyone's access.\",\n \"type\": \"MANAGER\",\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n },\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24061,13 +25238,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0514092a-14f2-4a72-b1a7-6c41d10b6151", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "2c8186bd-5590-488a-b169-466108fb532d", + "name": "An example of a 403 response object", "originalRequest": { "url": { "path": [ @@ -24100,7 +25277,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ROLE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": false,\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "raw": "{\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadlineDuration\": \"P2W\",\n \"campaign\": {\n \"name\": \"Manager Review\",\n \"description\": \"Review everyone's access.\",\n \"type\": \"MANAGER\",\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n },\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24117,13 +25294,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "318f5818-9cdb-4b40-a482-39c74ac2a759", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "358cb6fc-a050-46cf-8b8b-7563dcf67b8e", + "name": "Manager", "originalRequest": { "url": { "path": [ @@ -24156,7 +25333,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ROLE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": false,\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "raw": "{\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadlineDuration\": \"P2W\",\n \"campaign\": {\n \"name\": \"Manager Review\",\n \"description\": \"Review everyone's access.\",\n \"type\": \"MANAGER\",\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n },\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24173,13 +25350,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ac782f70-5e5c-4d1d-a216-ff7f42d48714", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "1763b0f8-377c-4056-beb9-05bfc77a5deb", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -24212,7 +25389,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ROLE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": false,\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "raw": "{\n \"name\": \"Manager Review\",\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadlineDuration\": \"P2W\",\n \"campaign\": {\n \"name\": \"Manager Review\",\n \"description\": \"Review everyone's access.\",\n \"type\": \"MANAGER\",\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n },\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24229,7 +25406,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -24240,7 +25417,7 @@ } }, { - "id": "7e5206f3-47ac-4cf4-bb47-6add949b5330", + "id": "903e7cc0-5025-4389-bf77-1b53baf86dd0", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -24260,7 +25437,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "id", "disabled": true, "description": { @@ -24281,8 +25458,8 @@ }, "response": [ { - "id": "264ad9b8-4ab1-4363-96f8-352ff71c8b42", - "name": "The data for the campaign matching the given ID.", + "id": "ac2ef0ce-e20c-426e-bc34-ad242e6816e9", + "name": "Manager", "originalRequest": { "url": { "path": [ @@ -24320,12 +25497,144 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ROLE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": false,\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "body": "{\n \"id\": \"e7dbec99d49349c8951bd84f58a05120\",\n \"name\": \"Manager Review\",\n \"created\": \"2022-08-02T19:16:42.632Z\",\n \"modified\": null,\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadlineDuration\": \"P14D\",\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\",\n \"name\": \"Test Manager Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"Manager Review\",\n \"description\": \"Review everyone's access.\",\n \"deadline\": null,\n \"type\": \"MANAGER\",\n \"status\": null,\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "43ea617e-eaae-45c0-805a-c488ad055f55", + "id": "6980b7b1-1001-41e8-aab8-19b8f94d158a", + "name": "Search", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"b7e6459eed5247ac8b98a5fed81fe27f\",\n \"name\": \"Reporting Access Review\",\n \"created\": \"2022-07-28T19:19:40.035Z\",\n \"modified\": null,\n \"description\": \"A review of everyone's access to the reporting system.\",\n \"deadlineDuration\": \"P14D\",\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\",\n \"name\": \"Test Search Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"Identities with reporting abilities\",\n \"reviewerId\": null,\n \"reviewer\": null,\n \"query\": \"@access(name: (\\\"reporter\\\"))\",\n \"identityIds\": null,\n \"accessConstraints\": []\n },\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"Search Campaign Review\",\n \"description\": \"Review everyone's access to the reporting system.\",\n \"deadline\": null,\n \"type\": \"SEARCH\",\n \"status\": null,\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "b82f86f2-2662-4057-ae20-2bbdffd8d8c2", + "name": "Source Owner", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"b9f41bc69e7a4291b9de0630396d030d\",\n \"name\": \"AD Source Review\",\n \"created\": \"2022-08-02T13:40:36.857Z\",\n \"modified\": null,\n \"description\": \"A review of our AD source.\",\n \"deadlineDuration\": \"P1M\",\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\",\n \"name\": \"Test Source Owner Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"2c918084707deba501709d45ce4e5569\"\n ]\n },\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"AD Source Review\",\n \"description\": \"Review everyone's access.\",\n \"deadline\": null,\n \"type\": \"SOURCE_OWNER\",\n \"status\": null,\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "cdc358ab-9767-4034-b1b4-01472be60bee", + "name": "RoleComposition", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"b9f41bc69e7a4291b9de0630396d030d\",\n \"name\": \"Campaign With Admin Role\",\n \"created\": \"2022-08-02T13:40:36.857Z\",\n \"modified\": null,\n \"description\": \"Campaign With Admin Role\",\n \"deadlineDuration\": null,\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": null,\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"reviewerId\": null,\n \"reviewer\": null,\n \"roleIds\": [\n \"b15d609fc5c8434b865fe552315fda8f\"\n ],\n \"query\": null,\n \"description\": null\n },\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"Campaign With Admin Role\",\n \"description\": \"Campaign With Admin Role\",\n \"deadline\": null,\n \"type\": \"ROLE_COMPOSITION\",\n \"status\": null,\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "902d065f-1475-415e-ae8b-b52a0586474b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24364,12 +25673,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8c3348f4-4390-4b97-83ff-830fa82f4498", + "id": "5333cfeb-ed46-43f1-9f9f-8b62820b6aff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24408,12 +25717,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "01232923-beb4-4692-a01f-4084ed19c344", + "id": "dbfbf8c0-289f-4b26-b44b-d4b68671ca51", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24452,12 +25761,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "58b27462-cced-4317-b7bc-8955714c08a7", + "id": "e2e7570d-5d93-43b3-8162-4ce8d55c6029", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24496,12 +25805,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "19908644-16d0-4178-b9e7-a764f376a705", + "id": "b581a3c3-fa23-426e-a348-09d675dc197a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24540,12 +25849,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "07a506a2-0a3a-4c3e-a06c-c3dd5c804b5f", + "id": "061a592a-dc55-40cd-b272-1154edf99a4e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24584,7 +25893,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -24595,7 +25904,7 @@ } }, { - "id": "b100bdb8-847d-476e-b63e-79433e88b0c2", + "id": "69dc52a3-a9b6-4b5a-a521-6c4c845867ca", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -24615,7 +25924,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "id", "disabled": true, "description": { @@ -24638,7 +25947,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/campaign/filter/id\",\n \"value\": \"ff80818155fe8c080155fe8d925b0316\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -24649,8 +25958,8 @@ }, "response": [ { - "id": "d83c0f31-e70f-4714-8c04-171270937992", - "name": "Indicates the PATCH operation succeeded, and returns the template's new representation.", + "id": "709709db-1553-445a-a538-6fd24402b6cf", + "name": "Manager", "originalRequest": { "url": { "path": [ @@ -24684,7 +25993,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/campaign/filter/id\",\n \"value\": \"ff80818155fe8c080155fe8d925b0316\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -24701,12 +26010,183 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ROLE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": false,\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "body": "{\n \"id\": \"e7dbec99d49349c8951bd84f58a05120\",\n \"name\": \"Manager Review\",\n \"created\": \"2022-08-02T19:16:42.632Z\",\n \"modified\": null,\n \"description\": \"A review of everyone's access by their manager.\",\n \"deadlineDuration\": \"P14D\",\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\",\n \"name\": \"Test Manager Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"Manager Review\",\n \"description\": \"Review everyone's access.\",\n \"deadline\": null,\n \"type\": \"MANAGER\",\n \"status\": null,\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "05920a97-af50-4d63-83ff-75148c490e96", + "id": "f92f6324-48aa-4e6c-be5e-5140859b7e88", + "name": "Search", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/campaign/filter/id\",\n \"value\": \"ff80818155fe8c080155fe8d925b0316\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"b7e6459eed5247ac8b98a5fed81fe27f\",\n \"name\": \"Reporting Access Review\",\n \"created\": \"2022-07-28T19:19:40.035Z\",\n \"modified\": null,\n \"description\": \"A review of everyone's access to the reporting system.\",\n \"deadlineDuration\": \"P14D\",\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\",\n \"name\": \"Test Search Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"Identities with reporting abilities\",\n \"reviewerId\": null,\n \"reviewer\": null,\n \"query\": \"@access(name: (\\\"reporter\\\"))\",\n \"identityIds\": null,\n \"accessConstraints\": []\n },\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"Search Campaign Review\",\n \"description\": \"Review everyone's access to the reporting system.\",\n \"deadline\": null,\n \"type\": \"SEARCH\",\n \"status\": null,\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "2c53fffd-fead-4317-9cd9-b169f94f347f", + "name": "Source Owner", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/campaign/filter/id\",\n \"value\": \"ff80818155fe8c080155fe8d925b0316\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"b9f41bc69e7a4291b9de0630396d030d\",\n \"name\": \"AD Source Review\",\n \"created\": \"2022-08-02T13:40:36.857Z\",\n \"modified\": null,\n \"description\": \"A review of our AD source.\",\n \"deadlineDuration\": \"P1M\",\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"e0adaae69852e8fe8b8a3d48e5ce757c\",\n \"name\": \"Test Source Owner Filter\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"2c918084707deba501709d45ce4e5569\"\n ]\n },\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": null,\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"AD Source Review\",\n \"description\": \"Review everyone's access.\",\n \"deadline\": null,\n \"type\": \"SOURCE_OWNER\",\n \"status\": null,\n \"emailNotificationEnabled\": true,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "7e9a0d27-5f9f-41dd-918d-158e3198c0ed", + "name": "RoleComposition", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/campaign/filter/id\",\n \"value\": \"ff80818155fe8c080155fe8d925b0316\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"b9f41bc69e7a4291b9de0630396d030d\",\n \"name\": \"Campaign With Admin Role\",\n \"created\": \"2022-08-02T13:40:36.857Z\",\n \"modified\": null,\n \"description\": \"Campaign With Admin Role\",\n \"deadlineDuration\": null,\n \"ownerRef\": {\n \"email\": \"support@testmail.identitysoon.com\",\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"scheduled\": false,\n \"campaign\": {\n \"created\": null,\n \"modified\": null,\n \"filter\": null,\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": null,\n \"searchCampaignInfo\": null,\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"7ec252acbd4245548bc25df22348cb75\",\n \"name\": \"SailPoint Support\"\n },\n \"reviewerId\": null,\n \"reviewer\": null,\n \"roleIds\": [\n \"b15d609fc5c8434b865fe552315fda8f\"\n ],\n \"query\": null,\n \"description\": null\n },\n \"alerts\": null,\n \"totalCertifications\": null,\n \"completedCertifications\": null,\n \"sourcesWithOrphanEntitlements\": null,\n \"id\": null,\n \"name\": \"Campaign With Admin Role\",\n \"description\": \"Campaign With Admin Role\",\n \"deadline\": null,\n \"type\": \"ROLE_COMPOSITION\",\n \"status\": null,\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "8e8ee533-d794-4ac1-9ab2-c93137b545d6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24741,7 +26221,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/campaign/filter/id\",\n \"value\": \"ff80818155fe8c080155fe8d925b0316\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -24758,12 +26238,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f30fecd2-e0b0-4eda-a7b7-9e02ce9cbd1f", + "id": "369a7d41-5b8f-4313-abde-0278a16a6476", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24798,7 +26278,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/campaign/filter/id\",\n \"value\": \"ff80818155fe8c080155fe8d925b0316\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -24815,12 +26295,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "05889c00-6653-4871-b3df-acd163fdbc54", + "id": "5cbba671-ca64-43c6-94bd-2984f9d26af8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24855,7 +26335,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/campaign/filter/id\",\n \"value\": \"ff80818155fe8c080155fe8d925b0316\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -24872,12 +26352,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bf9e3ef0-3feb-43da-bb35-f26b78f4d792", + "id": "ded62765-5c8e-46be-8807-fb15e145bfd4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24912,7 +26392,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/campaign/filter/id\",\n \"value\": \"ff80818155fe8c080155fe8d925b0316\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -24929,12 +26409,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "268c85a7-e2ae-4908-a959-4b5fe1adf1a9", + "id": "5991463a-4396-4d2b-aba6-34e3902147d4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24969,7 +26449,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/campaign/filter/id\",\n \"value\": \"ff80818155fe8c080155fe8d925b0316\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -24986,12 +26466,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4065d980-a460-4174-8fe1-2cee9fbcca26", + "id": "c9d4540d-7091-446e-8f65-53e31a878ab9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25026,7 +26506,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/campaign/filter/id\",\n \"value\": \"ff80818155fe8c080155fe8d925b0316\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -25043,7 +26523,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -25054,7 +26534,7 @@ } }, { - "id": "91bb4731-8f2f-4217-af33-4d321ddb90c4", + "id": "8232bb64-2cbb-4a2b-8aee-40926dafe15d", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -25074,7 +26554,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "id", "disabled": true, "description": { @@ -25095,7 +26575,7 @@ }, "response": [ { - "id": "7a2acf99-2346-4463-821d-c6f7f7be2f5e", + "id": "5218c04f-4edb-47fb-834d-a144bed96202", "name": "The campaign template was successfully deleted.", "originalRequest": { "url": { @@ -25129,7 +26609,7 @@ "_postman_previewlanguage": "text" }, { - "id": "80efb80a-7f37-4296-a301-0cbc8d0ba693", + "id": "573aa56e-58fc-4369-98af-db3f41bb1a75", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25168,12 +26648,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5bb90315-76e1-49c3-8d7b-154c88197cfb", + "id": "51017792-f18a-44c7-859a-b727b00e2aa6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25212,12 +26692,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad144513-e004-4b9b-ad4b-c07be6664968", + "id": "84e99405-aeb3-4e0d-8e15-57afcfde0dae", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25256,12 +26736,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "de17e56f-3272-4318-967d-821e8b1bee2f", + "id": "ceffdbd6-6c00-4e73-a1c2-6751a9d139d5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25300,12 +26780,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2561c1fb-0b94-4dcb-ac5c-c2bc3204dd36", + "id": "1cb3e02c-484b-4421-ab48-d914ef7b2164", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25344,12 +26824,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26ff25ba-1b3a-4149-b95c-06752536958b", + "id": "4577af79-18b2-4457-b38e-286d7dd7ec83", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25388,7 +26868,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -25399,7 +26879,7 @@ } }, { - "id": "c055d449-27a7-4fd8-adf1-69455a3257b8", + "id": "2b6328e4-8d21-4914-b413-cff98dd1b157", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -25420,7 +26900,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "id", "disabled": true, "description": { @@ -25441,7 +26921,7 @@ }, "response": [ { - "id": "89439096-42f0-4d24-969d-7280307eb45d", + "id": "ac9f351e-e382-4ec6-8f68-f785ab581c9e", "name": "Indicates a campaign was successfully generated from this template, and returns a reference to the new campaign.", "originalRequest": { "url": { @@ -25481,12 +26961,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"CAMPAIGN\",\n \"campaignType\": \"MANAGER\",\n \"description\": \"\",\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", + "body": "{\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"name\": \"Campaign Name\",\n \"type\": \"CAMPAIGN\",\n \"campaignType\": \"MANAGER\",\n \"description\": \"A description of the campaign\",\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "673cff89-9042-4e6b-a8f1-d2cfdd9b08fe", + "id": "9bf45ad4-5192-4fb8-9d3c-655f8722fd0d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25526,12 +27006,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "93d9611f-5f2f-4603-8b59-7463c90b9729", + "id": "7840a663-a826-4047-9937-87d3cbfb503a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25571,12 +27051,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c0930dd-d3b6-493c-a2a5-55249dab83e0", + "id": "db81b07d-b15a-40b6-b83a-fb5c5751f1aa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25616,12 +27096,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ef323b8c-2c4f-438e-8411-71bcc03eb925", + "id": "a38c59e1-5b3c-42a9-a96c-0fabdd5f5392", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25661,12 +27141,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "00ae83b7-06c9-41b7-92f4-5554804e6a19", + "id": "035d1eb7-79c1-4f81-9bd5-5c66c40f6e58", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25706,7 +27186,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -25717,7 +27197,7 @@ } }, { - "id": "6e6ba5f8-e3d1-42c5-a2ea-c039ca6e79f3", + "id": "311394da-6dc7-471a-bfb8-5fe12cd7d6d3", "name": "Gets a Campaign Template's Schedule", "request": { "name": "Gets a Campaign Template's Schedule", @@ -25738,7 +27218,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "04bedce387bd47b2ae1f86eb0bb36dee", "key": "id", "disabled": true, "description": { @@ -25759,7 +27239,7 @@ }, "response": [ { - "id": "5f737638-df75-43a8-b3ab-585ea509b090", + "id": "12703816-7f26-4f5e-a46a-164e88d1e4f8", "name": "The current schedule for the campaign template. See the PUT endpoint documentation for more examples.", "originalRequest": { "url": { @@ -25799,12 +27279,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "body": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ],\n \"interval\": 2\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ],\n \"interval\": 2\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ],\n \"interval\": 2\n },\n \"expiration\": \"2022-09-19 13:55:26\",\n \"timeZoneId\": \"CST\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3f55b4cd-236e-4cc0-bfcf-2418d903b0b4", + "id": "3525430e-2a8c-4c50-ba17-01bd5e97bbde", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25844,12 +27324,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0ae802d8-22bc-4b89-b89a-1049539c96b4", + "id": "ca2b93a1-c184-4daf-9cdb-72505bb3d255", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25889,12 +27369,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7b11126f-2a23-43f8-af6e-fa324ade8901", + "id": "2359d5a0-2d6c-49ce-a08e-ca57386b27fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25934,12 +27414,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bb6b3952-d691-4809-aa26-cd72b5e6b5dd", + "id": "c0e193c2-a813-4f3f-8e26-62fb3fdfee21", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25979,12 +27459,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "79f740b2-d7cf-495e-bf44-76aa8d86789a", + "id": "d61c82ed-edfa-4367-9380-170b7efdbc2b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26024,12 +27504,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d09b7162-d2b0-4b51-bf96-73c1ff40ecac", + "id": "00a85b9a-f2f7-408b-a6c9-516ed7000009", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26069,7 +27549,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -26080,7 +27560,7 @@ } }, { - "id": "aee66d41-b175-4a10-9ed5-500320208f11", + "id": "ece25d87-6bf0-43f3-b87c-5f4f616df343", "name": "Sets a Campaign Template's Schedule", "request": { "name": "Sets a Campaign Template's Schedule", @@ -26101,7 +27581,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "04bedce387bd47b2ae1f86eb0bb36dee", "key": "id", "disabled": true, "description": { @@ -26124,7 +27604,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"MONTHLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"17\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"15\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26135,7 +27615,7 @@ }, "response": [ { - "id": "360bfd66-ad96-4c29-8773-b38f43d12334", + "id": "1f86f7b1-39ad-42f4-9003-9f2ab7c8ed7a", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -26167,7 +27647,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"MONTHLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"17\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"15\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26183,8 +27663,8 @@ "_postman_previewlanguage": "text" }, { - "id": "8931a089-88a8-49e6-a347-1d437f9d4164", - "name": "Client Error - Returned if the request body is invalid.", + "id": "c004c454-fc46-4b59-9315-b9166025c480", + "name": "Monthly", "originalRequest": { "url": { "path": [ @@ -26219,7 +27699,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"MONTHLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"17\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"15\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26236,13 +27716,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d7255717-4139-4b0c-a373-deab4174e937", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "190e0c9c-9208-44cd-90fb-4f81b04b5ff1", + "name": "Once a year", "originalRequest": { "url": { "path": [ @@ -26277,7 +27757,239 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"0\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"--01-01\"\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "0152e81e-bf61-4a5e-9f79-03e8ab562a5f", + "name": "Quarterly", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id", + "schedule" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ],\n \"interval\": 3\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "d6e515b9-98d7-4ee9-92d4-8b9ebe2a1970", + "name": "Yearly on Specific Days", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id", + "schedule" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"--03-12\",\n \"--12-05\"\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "187cece1-026e-4871-ab01-cc1ab87f7efa", + "name": "On a Specific Date", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id", + "schedule" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"2020-02-18\"\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "7687819e-c046-4041-8032-6848be257a7c", + "name": "Once a year", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id", + "schedule" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"0\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"--01-01\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26294,13 +28006,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e9fb69f8-fb72-40d5-ab2e-1ddba3224f18", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "3a929dd7-ea0e-46f0-8502-4c4e2e8f980d", + "name": "Quarterly", "originalRequest": { "url": { "path": [ @@ -26335,7 +28047,181 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ],\n \"interval\": 3\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "96135f54-5c7a-4cbf-abae-bc6141a56cab", + "name": "Yearly on Specific Days", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id", + "schedule" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"--03-12\",\n \"--12-05\"\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "c5f31001-7384-4991-8a27-771bc9d1e13f", + "name": "On a Specific Date", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id", + "schedule" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"2020-02-18\"\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "541d7a1b-8224-47af-a743-05f13a688319", + "name": "An example of a 403 response object", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id", + "schedule" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ],\n \"interval\": 3\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26352,13 +28238,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d0226097-14e7-4b69-ae09-301a598a3467", - "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "id": "8a0caf50-dd9f-4f1b-8e22-ff573e1542f2", + "name": "Yearly on Specific Days", "originalRequest": { "url": { "path": [ @@ -26393,7 +28279,123 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"--03-12\",\n \"--12-05\"\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "c259eb84-d6bd-4fa9-a990-0f9b7e6eca4b", + "name": "On a Specific Date", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id", + "schedule" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"2020-02-18\"\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "15e413fe-9045-47f2-8354-bce34726c850", + "name": "An example of a 404 response object", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id", + "schedule" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"--03-12\",\n \"--12-05\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26410,13 +28412,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1049ff5e-ba09-48f1-9e9b-b89f0e97c369", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "b88636a8-15ba-468f-a87b-9e4e7ec8d2a7", + "name": "On a Specific Date", "originalRequest": { "url": { "path": [ @@ -26451,7 +28453,65 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"2020-02-18\"\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Not Found", + "code": 404, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"404 Not found\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server did not find a current representation for the target resource.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "72d11fd3-997d-4169-9f66-03a0ed05aba4", + "name": "On a Specific Date", + "originalRequest": { + "url": { + "path": [ + "campaign-templates", + ":id", + "schedule" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"1\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"2020-02-18\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26468,13 +28528,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "339a8e0b-9cb4-462a-a9fd-68e2f88c1529", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "9e18379c-1ccf-4d24-b455-bbd0cbacaf8a", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -26509,7 +28569,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"ANNUALLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"MONTHLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"17\"\n ]\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"15\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26526,7 +28586,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -26537,7 +28597,7 @@ } }, { - "id": "64608f99-65e7-46be-90b4-370211e8cf2f", + "id": "749f8e9a-125e-4110-95b7-15f9d3e90a6d", "name": "Deletes a Campaign Template's Schedule", "request": { "name": "Deletes a Campaign Template's Schedule", @@ -26558,7 +28618,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "04bedce387bd47b2ae1f86eb0bb36dee", "key": "id", "disabled": true, "description": { @@ -26579,7 +28639,7 @@ }, "response": [ { - "id": "08c9c8df-ac08-4249-a583-4f92b7c24b62", + "id": "5621060d-a891-4367-b163-0413a6f69181", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -26614,7 +28674,7 @@ "_postman_previewlanguage": "text" }, { - "id": "38a43fb4-0063-4c09-8582-fd8a2ac0b3fe", + "id": "70f5a546-370f-4cb4-96be-0b23c4d9d873", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26654,12 +28714,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2d4d5316-9c71-49d4-a14c-2af95856407f", + "id": "b54c9889-6851-439a-9558-9ea831f53c3b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26699,12 +28759,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "88d22a34-e489-425a-b928-254bd18cfecb", + "id": "feed6e58-6a58-41b5-b615-2dee438b2d77", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26744,12 +28804,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c40ce3d1-2ff1-476d-afbe-85b343b5d85f", + "id": "49f29713-dc07-41e1-937f-171d33f064ad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -26789,12 +28849,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a1aba00f-9c8b-445c-b69d-f8b8dc502194", + "id": "c159bb6c-8b57-4210-99a4-f28ce8752dec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26834,12 +28894,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "46d95dc5-e049-43f3-9706-7db416b7f9f2", + "id": "7aab8ce1-abc3-44c0-b462-1f7ffe0efe5c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26879,7 +28939,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -26896,7 +28956,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": "e20b453a-c5de-4836-854f-e56b2c51fc64", + "id": "373db9e4-9e9d-4d84-a995-7c9a05bb2d15", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -26917,7 +28977,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -26940,7 +29000,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26951,7 +29011,7 @@ }, "response": [ { - "id": "c7b865be-6ffb-477a-9e10-24aee99b6920", + "id": "61a1afef-da46-42e1-942c-62f5556f2590", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -26987,7 +29047,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -27004,12 +29064,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"IN_PROGRESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5470d748-85b2-432a-8051-c5e4ae84fd0e", + "id": "cd280865-b36b-4832-86e6-2becc1c99285", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27045,7 +29105,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -27062,12 +29122,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4029f617-b848-4bd3-850c-0d09a751f794", + "id": "0bd91d6a-028d-4502-857a-3732765ddad0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27103,7 +29163,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -27120,12 +29180,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ddce5df-8bb4-4cbb-9474-bc8444fbb08e", + "id": "c7c9aaf0-7b7e-4c59-b3ca-aad08c94064d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27161,7 +29221,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -27178,12 +29238,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0f7c5175-e385-4b13-918a-d4676526551e", + "id": "960b5b11-9fc6-4e62-ad7a-6248afee8fa3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -27219,7 +29279,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -27236,12 +29296,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bb0b7714-58ac-45bf-b316-3e0d88d535c2", + "id": "3af318e4-4beb-40ff-9799-edf4e8bfad3a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27277,7 +29337,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -27294,12 +29354,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "022b5efb-9cc3-46c4-b466-1d88d6f41257", + "id": "6f8a7a12-5c6f-4693-aaa1-633c240dfe79", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27335,7 +29395,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"reason\": \"reassigned for some reason\"\n}", "options": { "raw": { "headerFamily": "json", @@ -27352,7 +29412,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -27363,7 +29423,7 @@ } }, { - "id": "dc2f0d93-10cc-4d02-8aff-047b5f5ac718", + "id": "33a7f77b-9753-466f-ad90-45fffa3c8d20", "name": "Certification Task Status", "request": { "name": "Certification Task Status", @@ -27385,7 +29445,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "velit aliquip", "key": "id", "disabled": true, "description": { @@ -27395,7 +29455,7 @@ }, { "type": "any", - "value": "", + "value": "velit aliquip", "key": "taskId", "disabled": true, "description": { @@ -27416,7 +29476,7 @@ }, "response": [ { - "id": "bd4a0a58-c384-4ebb-820d-f43431a43b0d", + "id": "c30eef61-9403-43e0-a39d-b9723549597b", "name": "A certification task object.", "originalRequest": { "url": { @@ -27457,12 +29517,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"IN_PROGRESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97cb8b95-ad87-4e81-9286-ef46a6e6319b", + "id": "dcbfd4f3-ec9d-4576-8f74-5ee2f215a065", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27503,12 +29563,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "28e4118e-e95b-44fd-9bc8-9182b38efbbf", + "id": "93533604-d31d-4be1-b4d2-68b766e92159", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27549,12 +29609,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "defcec1b-27b7-4f4e-938a-c72d980eab58", + "id": "1b3fa25c-17ea-4aec-8f9f-047a2b7cba79", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27595,12 +29655,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e6be532e-9fb1-4bff-8ee3-6fb4a3324f15", + "id": "160189ac-841d-4361-9941-bb3aea81108d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -27641,12 +29701,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6f6327b3-65e9-4c4b-be78-3b8078194a7c", + "id": "58b26b2e-4425-47a3-b5ff-7fade73cecc1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27687,12 +29747,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "82fd6d25-7e4d-493f-9b4e-595afe4adfc9", + "id": "30e0fb6a-c131-40a5-bf6c-9e60093ce4bf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27733,7 +29793,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -27744,7 +29804,7 @@ } }, { - "id": "19561808-120b-4810-8f97-b9d00e289e3a", + "id": "10d31a07-3e50-494d-88cb-ce22ec28bb13", "name": "Pending Certification Tasks", "request": { "name": "Pending Certification Tasks", @@ -27765,7 +29825,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "velit aliquip", "key": "id", "disabled": true, "description": { @@ -27786,7 +29846,7 @@ }, "response": [ { - "id": "76286d93-382f-4154-b1cb-dd34ec033f38", + "id": "f58b6645-a553-4034-a9aa-dd11151a94b0", "name": "A list of pending (`QUEUED` or `IN_PROGRESS`) certification task objects.", "originalRequest": { "url": { @@ -27826,12 +29886,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"IN_PROGRESS\",\n \"errors\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"ERROR\"\n },\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d0882651-529d-4ac2-a641-5278fb523528", + "id": "9a2cab61-5b6a-4999-8be5-5928b439d8fa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27871,12 +29931,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c25a7273-a403-4ad1-93d0-4fe58eee6142", + "id": "5aa97405-d824-4175-82b7-b609b10a317d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27916,12 +29976,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d97be50a-bb86-4a06-8714-35ac6ddb19c1", + "id": "265e925b-a75c-438a-9744-ce1b89f73162", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27961,12 +30021,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "80a17797-fa66-442d-bc6a-7b5b2e6d0a93", + "id": "25128071-de76-459f-b218-595c71799b72", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28006,12 +30066,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d9699e36-8c62-46a2-b4b1-a7d3d3595b2d", + "id": "f7253704-a7fa-4dae-aebc-6589628df510", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28051,12 +30111,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5dd1178-c237-4a43-8175-ef2700b6eabe", + "id": "2cc46568-71a6-4328-8093-129718e5ab5e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28096,7 +30156,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -28107,7 +30167,7 @@ } }, { - "id": "b0af28f3-2038-4e32-8bc0-ca6077a57714", + "id": "48017ebf-e01d-4d03-9938-d8e93342bbbc", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -28134,7 +30194,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "target eq \"SYS.OBJAUTH2\"" }, { "disabled": true, @@ -28161,13 +30221,13 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "certificationId", "disabled": true, "description": { @@ -28177,7 +30237,7 @@ }, { "type": "any", - "value": "", + "value": "2c91808671bcbab40171bd945d961227", "key": "itemId", "disabled": true, "description": { @@ -28198,7 +30258,7 @@ }, "response": [ { - "id": "7add93b3-5c44-44c5-adaf-5c76d5ce2743", + "id": "815b3de2-8265-46d7-a022-6da06e39cc99", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -28220,7 +30280,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "target eq \"SYS.OBJAUTH2\"" }, { "disabled": true, @@ -28247,7 +30307,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -28277,12 +30337,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n]", + "body": "[\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n },\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b8919fe2-a91e-44ce-96d9-e571a89ac96d", + "id": "f7393a89-27c1-432c-9cba-b0912f16ace6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28304,7 +30364,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "target eq \"SYS.OBJAUTH2\"" }, { "disabled": true, @@ -28331,7 +30391,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -28361,12 +30421,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "489882e0-e62d-4d65-9de9-42c53588d0aa", + "id": "a949aa02-f01a-4536-812e-774bc99fe290", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28388,7 +30448,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "target eq \"SYS.OBJAUTH2\"" }, { "disabled": true, @@ -28415,7 +30475,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -28445,12 +30505,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a9c128c0-041f-4829-a2b8-15985c5f6fe6", + "id": "45d70871-1e4f-466c-8332-f3a1ec449f59", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28472,7 +30532,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "target eq \"SYS.OBJAUTH2\"" }, { "disabled": true, @@ -28499,7 +30559,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -28529,12 +30589,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5a41d37d-c158-4c18-826c-ef0d219825a3", + "id": "111b1620-a7af-44b5-bc21-9c6e96ffacba", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28556,7 +30616,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "target eq \"SYS.OBJAUTH2\"" }, { "disabled": true, @@ -28583,7 +30643,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -28613,12 +30673,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "727788da-aa84-4639-8373-3c0503ed892f", + "id": "204cac13-67c5-4345-bd19-c2f71566f7df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28640,7 +30700,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "target eq \"SYS.OBJAUTH2\"" }, { "disabled": true, @@ -28667,7 +30727,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -28697,12 +30757,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b385f334-b311-4d28-92fe-c160fe82c22a", + "id": "f8cc75aa-610f-4701-87ff-88677862385e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28724,7 +30784,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "target eq \"SYS.OBJAUTH2\"" }, { "disabled": true, @@ -28751,7 +30811,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -28781,7 +30841,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -28792,7 +30852,7 @@ } }, { - "id": "baf9d456-dd17-47e4-9ee6-e318244ffacd", + "id": "0f137847-6c62-49bb-8163-ddbbe594e352", "name": "List of Reviewers for certification", "request": { "name": "List of Reviewers for certification", @@ -28835,7 +30895,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -28844,7 +30904,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Bob\"" }, { "disabled": true, @@ -28853,13 +30913,13 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -28880,7 +30940,7 @@ }, "response": [ { - "id": "2b2265d4-e2fe-4d44-bd51-e681cbd56d77", + "id": "d1cdec27-0889-43e2-b4ce-a088f00d7f00", "name": "A list of reviewers", "originalRequest": { "url": { @@ -28918,7 +30978,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -28927,7 +30987,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Bob\"" }, { "disabled": true, @@ -28936,7 +30996,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -28966,12 +31026,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n },\n {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n }\n]", + "body": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\",\n \"name\": \"Alison Ferguso\",\n \"email\": \"alison.ferguso@identitysoon.com\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\",\n \"name\": \"Alison Ferguso\",\n \"email\": \"alison.ferguso@identitysoon.com\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d3bd3f3-ca9e-418a-9f16-db58384f702f", + "id": "55ab4271-be51-4386-b7c0-de681c8cc3a5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29009,7 +31069,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -29018,7 +31078,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Bob\"" }, { "disabled": true, @@ -29027,7 +31087,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -29057,12 +31117,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3efe5bef-6878-4f9f-8886-947c13683ef2", + "id": "21cadfcb-fab7-4b26-b86d-aa6f7e077e91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29100,7 +31160,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -29109,7 +31169,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Bob\"" }, { "disabled": true, @@ -29118,7 +31178,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -29148,12 +31208,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3670e6f8-0b64-4781-81d1-1a71a294da36", + "id": "88c08365-1fd5-43cb-9264-ee0d2a27bdfe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29191,7 +31251,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -29200,7 +31260,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Bob\"" }, { "disabled": true, @@ -29209,7 +31269,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -29239,12 +31299,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "88a27460-638e-4971-a2a6-24c393f9a019", + "id": "6ef989f2-d561-44b6-acba-34356622d7da", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29282,7 +31342,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -29291,7 +31351,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Bob\"" }, { "disabled": true, @@ -29300,7 +31360,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -29330,12 +31390,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6534e6c1-4b26-4312-a441-12f5faa79cda", + "id": "1539602c-8321-4cee-af50-155ebabf061b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29373,7 +31433,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -29382,7 +31442,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Bob\"" }, { "disabled": true, @@ -29391,7 +31451,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -29421,12 +31481,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cbc00eb0-5f66-447f-b46d-868e9384e2bc", + "id": "81aa0d13-b27b-4f79-bf23-b0db6f13f1fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29464,7 +31524,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -29473,7 +31533,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Bob\"" }, { "disabled": true, @@ -29482,7 +31542,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -29512,7 +31572,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -29529,7 +31589,7 @@ "description": "", "item": [ { - "id": "999b3ede-81c4-4235-80af-5ba8705f7efb", + "id": "2f353bef-764c-439c-a962-22376b92a50d", "name": "List Connector Rules", "request": { "name": "List Connector Rules", @@ -29558,7 +31618,7 @@ }, "response": [ { - "id": "d4487b3f-5ced-4f99-bde1-6ff3b918e32e", + "id": "5e27ce8d-cc92-459a-b33f-527b18daf9db", "name": "A list of connector rules", "originalRequest": { "url": { @@ -29596,12 +31656,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"ConnectorAfterDelete\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n },\n {\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"ConnectorBeforeCreate\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n }\n]", + "body": "[\n {\n \"created\": \"021-07-22T15:59:23Z\",\n \"id\": \"8113d48c0b914f17b4c6072d4dcb9dfe\",\n \"name\": \"WebServiceBeforeOperationRule\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"type\": \"BuildMap\",\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {},\n \"modified\": \"021-07-22T15:59:23Z\"\n },\n {\n \"created\": \"021-07-22T15:59:23Z\",\n \"id\": \"8113d48c0b914f17b4c6072d4dcb9dfe\",\n \"name\": \"WebServiceBeforeOperationRule\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"type\": \"BuildMap\",\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {},\n \"modified\": \"021-07-22T15:59:23Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b0e8d2f5-83bd-437b-99e7-d6a4f65b7c5a", + "id": "b5ba5100-0fdc-4055-9d56-2732e83cfa69", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29639,12 +31699,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "11f800b2-4ec6-466b-8ac7-3e9352199a1c", + "id": "f52be665-7c53-4053-9c4a-3602ec127b45", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29682,12 +31742,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e15f1936-26ab-48a5-8be1-6f27e550b95a", + "id": "d743bf4b-fc7c-4323-9fea-f691a0fc69da", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29725,12 +31785,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bcc4c0f8-702c-4ac2-97a6-0c5569851a21", + "id": "fa9663e4-65d1-43f6-a289-3d54dc1e5b75", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29768,12 +31828,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4783783d-b5ea-4a00-8561-2470f6310e48", + "id": "0b713437-cf30-4ae2-af6f-5ae45fe161db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29811,7 +31871,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -29822,7 +31882,7 @@ } }, { - "id": "ed9a6e26-c29a-41b7-8f62-e59f7cafcc5b", + "id": "246838c9-0b36-4618-80b5-7e39796b7c5b", "name": "Create Connector Rule", "request": { "name": "Create Connector Rule", @@ -29853,7 +31913,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"RACFPermissionCustomization\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"name\": \"WebServiceBeforeOperationRule\",\n \"type\": \"BuildMap\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -29864,7 +31924,7 @@ }, "response": [ { - "id": "114e343a-1a13-4e3a-b761-760f22e22885", + "id": "1fbfc0a5-5569-4af0-9d8d-d9d048b7c4ee", "name": "The created connector rule", "originalRequest": { "url": { @@ -29898,7 +31958,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"RACFPermissionCustomization\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"name\": \"WebServiceBeforeOperationRule\",\n \"type\": \"BuildMap\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -29915,12 +31975,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"ConnectorAfterModify\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n}", + "body": "{\n \"created\": \"021-07-22T15:59:23Z\",\n \"id\": \"8113d48c0b914f17b4c6072d4dcb9dfe\",\n \"name\": \"WebServiceBeforeOperationRule\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"type\": \"BuildMap\",\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {},\n \"modified\": \"021-07-22T15:59:23Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "361f1c29-6ce4-40e0-a4ef-a7571d0cfcff", + "id": "5c8cfdf6-be89-4a16-954e-bf173986f669", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29954,7 +32014,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"RACFPermissionCustomization\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"name\": \"WebServiceBeforeOperationRule\",\n \"type\": \"BuildMap\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -29971,12 +32031,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "78bec48d-6231-4167-ad39-24fae013bb5e", + "id": "651b2182-cd7d-4c9f-aa56-6743d33326d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30010,7 +32070,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"RACFPermissionCustomization\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"name\": \"WebServiceBeforeOperationRule\",\n \"type\": \"BuildMap\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -30027,12 +32087,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "475b8db7-5b6d-4255-bf6c-88c7c15e2a18", + "id": "edb91690-3358-47c2-9fb0-1ca11830c98b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30066,7 +32126,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"RACFPermissionCustomization\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"name\": \"WebServiceBeforeOperationRule\",\n \"type\": \"BuildMap\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -30083,12 +32143,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0dcc9e08-c9a9-4b1b-9c10-153ec66351b7", + "id": "8e8a4985-c8b1-44a3-bca2-252e8e2d3dea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30122,7 +32182,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"RACFPermissionCustomization\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"name\": \"WebServiceBeforeOperationRule\",\n \"type\": \"BuildMap\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -30139,12 +32199,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bca48bd6-cb25-4765-bd6b-df8d17a6a0bf", + "id": "3c70d26d-e47a-4dc8-b861-8a0508de6904", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30178,7 +32238,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"RACFPermissionCustomization\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"name\": \"WebServiceBeforeOperationRule\",\n \"type\": \"BuildMap\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -30195,7 +32255,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -30206,7 +32266,7 @@ } }, { - "id": "8904730b-d7a7-41f4-8521-5533576e1c43", + "id": "f5e69180-1beb-42b5-80b1-674ce7e3890a", "name": "Connector-Rule by ID", "request": { "name": "Connector-Rule by ID", @@ -30226,7 +32286,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -30247,7 +32307,7 @@ }, "response": [ { - "id": "86e130c6-be56-4652-a1e1-8b9a70e353ea", + "id": "16bb7a51-ba5f-4823-aabd-e04d2e3dda11", "name": "Connector rule with the given ID", "originalRequest": { "url": { @@ -30286,12 +32346,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"ConnectorAfterModify\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n}", + "body": "{\n \"created\": \"021-07-22T15:59:23Z\",\n \"id\": \"8113d48c0b914f17b4c6072d4dcb9dfe\",\n \"name\": \"WebServiceBeforeOperationRule\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"type\": \"BuildMap\",\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {},\n \"modified\": \"021-07-22T15:59:23Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b98aea21-3f24-4600-ac2c-26c46970afbd", + "id": "fb60966c-f885-45e7-b4a3-d462fc1fcb8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30330,12 +32390,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0e1744a6-11ac-4736-bdfd-3cd90bf8ba24", + "id": "7292ee7e-9d71-43e8-9f0e-196af1cc2070", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30374,12 +32434,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9c5db227-0770-41a2-bdaf-aa8ac4378ff1", + "id": "7ab5fc16-fcd9-4fa5-97ce-792f89b88862", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30418,12 +32478,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3dc263c0-eb6e-43ce-aaef-47cb298909d6", + "id": "a05917ba-5515-49df-9a98-b61637c7abd8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30462,12 +32522,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "707404ff-b011-4c28-8b22-16aaa2defaa7", + "id": "8cb6aa90-dd9d-4986-8d2e-2b8f8060c7a2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30506,12 +32566,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aa643d4d-bc8f-4bbb-b887-0b171018ad71", + "id": "a760695c-8d45-48cb-9106-7ef5827f409a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30550,7 +32610,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -30561,7 +32621,7 @@ } }, { - "id": "34212c16-fdc1-4a88-8c2c-e95a12240bc2", + "id": "676cac37-a167-4171-a030-3f5b90b425c3", "name": "Update a Connector Rule", "request": { "name": "Update a Connector Rule", @@ -30581,7 +32641,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -30604,7 +32664,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"JDBCOperationProvisioning\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"id\": \"8113d48c0b914f17b4c6072d4dcb9dfe\",\n \"name\": \"WebServiceBeforeOperationRule\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"type\": \"BuildMap\",\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -30615,7 +32675,7 @@ }, "response": [ { - "id": "eef86b54-d79d-4517-9475-3aa12bba596a", + "id": "3a9d5818-1d2d-4443-9a11-578137750312", "name": "The updated connector rule", "originalRequest": { "url": { @@ -30650,7 +32710,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"JDBCOperationProvisioning\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"id\": \"8113d48c0b914f17b4c6072d4dcb9dfe\",\n \"name\": \"WebServiceBeforeOperationRule\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"type\": \"BuildMap\",\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -30667,12 +32727,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"ConnectorAfterModify\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n}", + "body": "{\n \"created\": \"021-07-22T15:59:23Z\",\n \"id\": \"8113d48c0b914f17b4c6072d4dcb9dfe\",\n \"name\": \"WebServiceBeforeOperationRule\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"type\": \"BuildMap\",\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {},\n \"modified\": \"021-07-22T15:59:23Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fe4d3957-6238-458e-b11e-e48f813fe696", + "id": "2bfe570b-66e8-4d13-9974-2407c32bf978", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30707,7 +32767,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"JDBCOperationProvisioning\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"id\": \"8113d48c0b914f17b4c6072d4dcb9dfe\",\n \"name\": \"WebServiceBeforeOperationRule\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"type\": \"BuildMap\",\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -30724,12 +32784,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1a99cdbc-e442-436e-8634-ccdf14e3b636", + "id": "b50ec532-247a-4457-bba0-495aa47811ed", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30764,7 +32824,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"JDBCOperationProvisioning\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"id\": \"8113d48c0b914f17b4c6072d4dcb9dfe\",\n \"name\": \"WebServiceBeforeOperationRule\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"type\": \"BuildMap\",\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -30781,12 +32841,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fc0a66a4-9007-41e8-8fd5-aac7c7996440", + "id": "c7861354-a06a-4640-beba-2a762e2efe47", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30821,7 +32881,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"JDBCOperationProvisioning\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"id\": \"8113d48c0b914f17b4c6072d4dcb9dfe\",\n \"name\": \"WebServiceBeforeOperationRule\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"type\": \"BuildMap\",\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -30838,12 +32898,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7ddfac27-ecf5-41e1-aa21-de80abac48ae", + "id": "67910dd8-3c4b-477b-a959-a0418df8418a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30878,7 +32938,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"JDBCOperationProvisioning\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"id\": \"8113d48c0b914f17b4c6072d4dcb9dfe\",\n \"name\": \"WebServiceBeforeOperationRule\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"type\": \"BuildMap\",\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -30895,12 +32955,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "71f8b813-b5ae-4cde-b705-a1355c0cb310", + "id": "f5433d52-540c-4835-a854-b119050be42c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30935,7 +32995,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"JDBCOperationProvisioning\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"id\": \"8113d48c0b914f17b4c6072d4dcb9dfe\",\n \"name\": \"WebServiceBeforeOperationRule\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"type\": \"BuildMap\",\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -30952,12 +33012,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4b0143e0-5ef6-40f6-b473-c1c2cb5e6551", + "id": "c57b6759-31a6-4b01-81de-c7212e19c3bb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30992,7 +33052,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"JDBCOperationProvisioning\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"id\": \"8113d48c0b914f17b4c6072d4dcb9dfe\",\n \"name\": \"WebServiceBeforeOperationRule\",\n \"sourceCode\": {\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n },\n \"type\": \"BuildMap\",\n \"description\": \"This rule does that\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n },\n {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n ],\n \"output\": {\n \"name\": \"firstName\",\n \"description\": \"the first name of the identity\",\n \"type\": \"String\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -31009,7 +33069,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -31020,7 +33080,7 @@ } }, { - "id": "3352d18f-1dd1-4cd5-993c-e5eb468add0b", + "id": "ae1b61f6-bc26-4d27-8670-6cbb423ef525", "name": "Delete a Connector-Rule", "request": { "name": "Delete a Connector-Rule", @@ -31040,7 +33100,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -31061,7 +33121,7 @@ }, "response": [ { - "id": "171e67d8-74eb-4ad9-b609-fe4d5e5b5307", + "id": "ebd3bca9-4e77-42c2-a0ba-ac93825e23e5", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -31095,7 +33155,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b7dad8cf-ec7f-4f75-a06b-8459d1803dbc", + "id": "a41c1004-be0e-4009-be32-c38126fdc94b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31134,12 +33194,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "65d26664-50c6-4562-a375-bbada17dd905", + "id": "af016644-a2a3-4617-afd0-5284bea8f6b6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31178,12 +33238,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5816fabb-76b3-459a-86b4-ec9e8074a298", + "id": "25cfb311-67a9-48e1-b4cf-7f6d862eadde", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31222,12 +33282,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8261d1c0-51be-4a2d-9641-d94ca1fe28cc", + "id": "9af5be1a-aefa-474a-86b8-e36f4f78583d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31266,12 +33326,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "58bfb4bd-796d-409e-a844-abbc53e7ff29", + "id": "c77f2197-1216-4aa1-96d6-e39908ae3333", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31310,12 +33370,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c882040c-67a1-4e90-8e68-2361a3474e4a", + "id": "104b6f07-48c3-4bca-96b9-e2af4b75d9b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31354,7 +33414,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -31365,7 +33425,7 @@ } }, { - "id": "62c5a109-8aa6-4ea5-a233-ead3508a4845", + "id": "8e411575-d648-4406-a040-f15e4e1c135c", "name": "Validate Connector Rule", "request": { "name": "Validate Connector Rule", @@ -31397,7 +33457,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"version\": \"\",\n \"script\": \"\"\n}", + "raw": "{\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n}", "options": { "raw": { "headerFamily": "json", @@ -31408,7 +33468,7 @@ }, "response": [ { - "id": "e98e0741-200f-44f8-9197-a9168a5c685a", + "id": "dd1187f3-540b-4d63-901c-c2dbeb9f54c9", "name": "The status of the code's eligibility as a connector rule", "originalRequest": { "url": { @@ -31443,7 +33503,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"version\": \"\",\n \"script\": \"\"\n}", + "raw": "{\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n}", "options": { "raw": { "headerFamily": "json", @@ -31460,12 +33520,12 @@ "value": "application/json" } ], - "body": "{\n \"state\": \"OK\",\n \"details\": [\n {\n \"line\": \"\",\n \"column\": \"\",\n \"messsage\": \"\"\n },\n {\n \"line\": \"\",\n \"column\": \"\",\n \"messsage\": \"\"\n }\n ]\n}", + "body": "{\n \"state\": \"ERROR\",\n \"details\": [\n {\n \"line\": 2,\n \"column\": 5,\n \"messsage\": \"Remove reference to .decrypt(\"\n },\n {\n \"line\": 2,\n \"column\": 5,\n \"messsage\": \"Remove reference to .decrypt(\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7b913228-98c8-4bc4-ba11-faf15d9e3815", + "id": "24b91b40-c2de-4d8d-9ecd-e3a7f9272ca4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31500,7 +33560,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"version\": \"\",\n \"script\": \"\"\n}", + "raw": "{\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n}", "options": { "raw": { "headerFamily": "json", @@ -31517,12 +33577,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7529f626-23b6-45d9-b6d1-423f9b43bc5c", + "id": "6b3b4b83-8571-4b25-a97c-2bbe508318bd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31557,7 +33617,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"version\": \"\",\n \"script\": \"\"\n}", + "raw": "{\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n}", "options": { "raw": { "headerFamily": "json", @@ -31574,12 +33634,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ceff49f5-7695-46f9-a871-b21c7db13344", + "id": "42536303-ddd7-4acd-a8b1-de8183b1e12f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31614,7 +33674,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"version\": \"\",\n \"script\": \"\"\n}", + "raw": "{\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n}", "options": { "raw": { "headerFamily": "json", @@ -31631,12 +33691,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "97b89d94-3fba-490a-a635-2ef47000e8c0", + "id": "027aa859-8215-4a8d-b032-b8a7e8f111ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31671,7 +33731,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"version\": \"\",\n \"script\": \"\"\n}", + "raw": "{\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n}", "options": { "raw": { "headerFamily": "json", @@ -31688,12 +33748,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4eeab203-27a8-48c4-9199-b7c958bd9102", + "id": "711282d3-3a94-44e5-bf85-9e2b23f51ce1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31728,7 +33788,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"version\": \"\",\n \"script\": \"\"\n}", + "raw": "{\n \"version\": \"1.0\",\n \"script\": \"return \\\"Mr. \\\" + firstName;\"\n}", "options": { "raw": { "headerFamily": "json", @@ -31745,7 +33805,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -31762,7 +33822,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": "a9370bfa-993a-4738-8dfd-c93a643ea079", + "id": "08f54415-524c-4c93-8ac3-46b09851f0a9", "name": "Gets connector list", "request": { "name": "Gets connector list", @@ -31785,7 +33845,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "directConnect eq \"true\"" }, { "disabled": true, @@ -31812,7 +33872,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -31821,7 +33881,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "de" } ], "variable": [] @@ -31837,7 +33897,7 @@ }, "response": [ { - "id": "7f5a6a74-50ec-4e42-a9f2-2285c7545bc2", + "id": "4ad72f0b-a3dd-48bf-8c94-daa54ee02ed6", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -31855,7 +33915,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "directConnect eq \"true\"" }, { "disabled": true, @@ -31882,7 +33942,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -31891,7 +33951,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "de" } ], "variable": [] @@ -31921,12 +33981,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"type\": \"\",\n \"scriptName\": \"\",\n \"features\": [\n \"\",\n \"\"\n ],\n \"directConnect\": false,\n \"connectorMetadata\": {},\n \"status\": \"\"\n },\n {\n \"name\": \"\",\n \"type\": \"\",\n \"scriptName\": \"\",\n \"features\": [\n \"\",\n \"\"\n ],\n \"directConnect\": false,\n \"connectorMetadata\": {},\n \"status\": \"\"\n }\n]", + "body": "[\n {\n \"name\": \"name\",\n \"type\": \"ServiceNow\",\n \"scriptName\": \"servicenow\",\n \"features\": [\n \"PROVISIONING\",\n \"SYNC_PROVISIONING\",\n \"SEARCH\",\n \"UNSTRUCTURED_TARGETS\"\n ],\n \"directConnect\": true,\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\",\n \"platform\": \"ccg\",\n \"shortDesc\": \"connector description\"\n },\n \"status\": \"RELEASED\"\n },\n {\n \"name\": \"name\",\n \"type\": \"ServiceNow\",\n \"scriptName\": \"servicenow\",\n \"features\": [\n \"PROVISIONING\",\n \"SYNC_PROVISIONING\",\n \"SEARCH\",\n \"UNSTRUCTURED_TARGETS\"\n ],\n \"directConnect\": true,\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\",\n \"platform\": \"ccg\",\n \"shortDesc\": \"connector description\"\n },\n \"status\": \"RELEASED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8682f489-aa53-4ea0-9d79-ebb12f8d9770", + "id": "68f7dac5-745d-4883-978e-6126fcc8fda7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31944,7 +34004,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "directConnect eq \"true\"" }, { "disabled": true, @@ -31971,7 +34031,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -31980,7 +34040,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "de" } ], "variable": [] @@ -32010,12 +34070,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b20d4e0e-d187-4467-9fac-0a399f0bfbc6", + "id": "799034c2-903b-4be4-bcaa-fdc75c43923d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32033,7 +34093,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "directConnect eq \"true\"" }, { "disabled": true, @@ -32060,7 +34120,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -32069,7 +34129,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "de" } ], "variable": [] @@ -32099,12 +34159,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d60048a-25fd-4b3e-a2d4-6f05e81f2bdb", + "id": "0b881130-cf00-46cb-b000-699cac5c9885", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32122,7 +34182,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "directConnect eq \"true\"" }, { "disabled": true, @@ -32149,7 +34209,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -32158,7 +34218,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "de" } ], "variable": [] @@ -32188,12 +34248,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ae148660-a99d-445c-a6c4-91dd8b2ec001", + "id": "d41849bd-22f3-4bc0-b497-90eb337c781a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -32211,7 +34271,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "directConnect eq \"true\"" }, { "disabled": true, @@ -32238,7 +34298,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -32247,7 +34307,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "de" } ], "variable": [] @@ -32277,12 +34337,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0a9c1f67-3a54-4e7f-9cc9-ddc94ef5056f", + "id": "a2875921-346f-47f0-b103-5ee6041e81e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32300,7 +34360,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "directConnect eq \"true\"" }, { "disabled": true, @@ -32327,7 +34387,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -32336,7 +34396,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "de" } ], "variable": [] @@ -32366,12 +34426,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bd8b5700-e961-45e3-b0b0-9313fcf3b617", + "id": "03035b4a-8318-4aef-9dd4-02c9c405d3b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32389,7 +34449,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "directConnect eq \"true\"" }, { "disabled": true, @@ -32416,7 +34476,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -32425,7 +34485,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "de" } ], "variable": [] @@ -32455,7 +34515,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -32472,7 +34532,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": "ab8639d1-335a-4f12-8bcc-65237ec008a1", + "id": "0213bd42-7cd3-4d65-a1c4-6c6ba3ca4457", "name": "Export form definitions by tenant.", "request": { "name": "Export form definitions by tenant.", @@ -32495,7 +34555,7 @@ "type": "text/plain" }, "key": "offset", - "value": "0" + "value": "250" }, { "disabled": true, @@ -32513,7 +34573,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"my form\"" }, { "disabled": true, @@ -32538,7 +34598,7 @@ }, "response": [ { - "id": "a0f8f6cf-c350-404f-b98d-5c34d3554f92", + "id": "071ccc0f-bb03-4f83-ad2a-c6edead31a69", "name": "Returns a list of form definitions by tenant", "originalRequest": { "url": { @@ -32556,7 +34616,7 @@ "type": "text/plain" }, "key": "offset", - "value": "0" + "value": "250" }, { "disabled": true, @@ -32574,7 +34634,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"my form\"" }, { "disabled": true, @@ -32613,12 +34673,12 @@ "value": "application/json" } ], - "body": "{\n \"count\": \"\",\n \"results\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"Lorembe\": {},\n \"quis_5a\": {},\n \"proident__8a\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"dolor_af\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"EW\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EW\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SET_DEFAULT_VALUE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_CO\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"DISABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"SECTION\",\n \"config\": {\n \"Duisd9d\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"PHONE\",\n \"config\": {\n \"utf70\": {},\n \"minim0\": {},\n \"estb\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"SW\",\n \"valueType\": \"INPUT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"CO\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"CO\",\n \"valueType\": \"INPUT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"DISABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\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\": \"veniam ullamco dolor dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ut exercitation\"\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\": \"consectetu\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"officia anim\"\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\": \"pro\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore Lorem dolor 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\": \"ipsum fugiat dolor Ut nisi\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ipsum laboris Excepteur co\"\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": "803c9c62-3288-4b09-ade3-422a194ea0bf", + "id": "bfa98683-5a56-4979-aaca-8ded3b601503", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -32636,7 +34696,7 @@ "type": "text/plain" }, "key": "offset", - "value": "0" + "value": "250" }, { "disabled": true, @@ -32654,7 +34714,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"my form\"" }, { "disabled": true, @@ -32693,12 +34753,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2bb2f3af-dfbf-4191-99f3-f18a5a8a32b3", + "id": "e6b03802-9505-4dcd-b16c-5c82f7225c2d", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -32716,7 +34776,7 @@ "type": "text/plain" }, "key": "offset", - "value": "0" + "value": "250" }, { "disabled": true, @@ -32734,7 +34794,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"my form\"" }, { "disabled": true, @@ -32773,12 +34833,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "538486eb-a254-42a0-bcbc-78bd33523ac3", + "id": "964e40a5-bf74-48c3-9e66-3c3393fd4037", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -32796,7 +34856,7 @@ "type": "text/plain" }, "key": "offset", - "value": "0" + "value": "250" }, { "disabled": true, @@ -32814,7 +34874,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"my form\"" }, { "disabled": true, @@ -32853,12 +34913,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c4d92975-2e5b-4d52-9e5a-33a760a2ec3b", + "id": "aaa838c4-25f1-4c90-82bf-1b2e68928ea2", "name": "Too many requests", "originalRequest": { "url": { @@ -32876,7 +34936,7 @@ "type": "text/plain" }, "key": "offset", - "value": "0" + "value": "250" }, { "disabled": true, @@ -32894,7 +34954,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"my form\"" }, { "disabled": true, @@ -32933,12 +34993,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "433b5cd7-b429-4f4c-99ce-200453b166f7", + "id": "ead6b75b-dbec-4679-8def-069e22d4f9f1", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -32956,7 +35016,7 @@ "type": "text/plain" }, "key": "offset", - "value": "0" + "value": "250" }, { "disabled": true, @@ -32974,7 +35034,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"my form\"" }, { "disabled": true, @@ -33013,7 +35073,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -33024,7 +35084,7 @@ } }, { - "id": "20b0bd90-b6c4-46bc-9fd1-5e7a45fc09b3", + "id": "557d3317-afd3-4f8b-998e-0d26708571ee", "name": "Creates a form definition.", "request": { "name": "Creates a form definition.", @@ -33052,7 +35112,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EQ\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SHOW\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"sunt_9\": {},\n \"dolore__\": {},\n \"sita\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"Duis__6a\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"name\": \"my form\",\n \"description\": \"my form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -33063,7 +35123,7 @@ }, "response": [ { - "id": "d9e453b6-d662-4f49-8ef2-f475bce77739", + "id": "dc32a485-9fc9-4fb7-ae65-85e26c10aa2e", "name": "Returns a new form definition", "originalRequest": { "url": { @@ -33097,7 +35157,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EQ\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SHOW\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"sunt_9\": {},\n \"dolore__\": {},\n \"sita\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"Duis__6a\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"name\": \"my form\",\n \"description\": \"my form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -33114,12 +35174,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"DATE\",\n \"config\": {\n \"incididunt947\": {},\n \"ea_80a\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"deserunte36\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"INPUT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_IN\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"EQ\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\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\": \"et\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"proident in dolore\"\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 dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur in Excepteur qui\"\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": "8cf9db3c-4bb1-42eb-81c1-be4110e64574", + "id": "d984a080-8235-4eb7-8463-51c51b4e65c3", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -33153,7 +35213,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EQ\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SHOW\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"sunt_9\": {},\n \"dolore__\": {},\n \"sita\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"Duis__6a\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"name\": \"my form\",\n \"description\": \"my form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -33170,12 +35230,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a12f481c-a0ab-44bf-846f-df645b08936b", + "id": "d75f71ae-04b5-4456-ab84-a215513f0286", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -33209,7 +35269,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EQ\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SHOW\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"sunt_9\": {},\n \"dolore__\": {},\n \"sita\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"Duis__6a\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"name\": \"my form\",\n \"description\": \"my form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -33226,12 +35286,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a690eb34-3256-45a4-a1bf-a50f788b065b", + "id": "1418e1f6-cf34-465c-8d8e-d7d698dae667", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -33265,7 +35325,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EQ\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SHOW\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"sunt_9\": {},\n \"dolore__\": {},\n \"sita\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"Duis__6a\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"name\": \"my form\",\n \"description\": \"my form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -33282,12 +35342,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fca1d2d0-1585-463b-ac7a-ede39700a918", + "id": "001723a1-791a-4b18-8433-b1024a1fbb1f", "name": "Too many requests", "originalRequest": { "url": { @@ -33321,7 +35381,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EQ\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SHOW\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"sunt_9\": {},\n \"dolore__\": {},\n \"sita\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"Duis__6a\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"name\": \"my form\",\n \"description\": \"my form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -33338,12 +35398,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0efbbcf6-32fe-4c24-9f35-482d47e26780", + "id": "aadf5de8-0c94-43b2-b62e-d7fccd44e186", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -33377,7 +35437,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EQ\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SHOW\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"sunt_9\": {},\n \"dolore__\": {},\n \"sita\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"Duis__6a\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"name\": \"my form\",\n \"description\": \"my form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -33394,7 +35454,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -33405,7 +35465,7 @@ } }, { - "id": "2117e29f-9d5e-474f-b7fb-f99e1505850d", + "id": "7c4f0bcd-3f59-467d-850a-2b24b0d2552a", "name": "Return a form definition.", "request": { "name": "Return a form definition.", @@ -33425,7 +35485,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "00000000-0000-0000-0000-000000000000", "key": "formDefinitionID", "disabled": true, "description": { @@ -33446,7 +35506,7 @@ }, "response": [ { - "id": "393e2518-2d92-47d4-8e3f-35e46f871607", + "id": "b0bef712-7c76-47a0-ad87-c3d2444ebf0f", "name": "Returns a form definition", "originalRequest": { "url": { @@ -33485,12 +35545,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"DATE\",\n \"config\": {\n \"incididunt947\": {},\n \"ea_80a\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"deserunte36\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"INPUT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_IN\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"EQ\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\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\": \"et\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"proident in dolore\"\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 dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur in Excepteur qui\"\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": "f2712a03-22d9-4786-a66b-96ae40b6ce5a", + "id": "f79bb86b-8b27-4e06-b6f7-c6e64c5c32b8", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -33529,12 +35589,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2574b784-a7e7-4098-bbcd-6937e4ab0ee9", + "id": "c268a00c-90f1-4978-a7a9-c8a55e160445", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -33573,12 +35633,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d1941b77-a959-460b-8cce-b8442dfd5d5f", + "id": "f38d8102-2b42-4d49-b206-5a0b77617c89", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -33617,12 +35677,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f6cbb7c-be98-4a76-b439-603d54205fde", + "id": "c890a3d1-d7a7-4db6-8afe-c2f7e978c485", "name": "An error with the item not found", "originalRequest": { "url": { @@ -33661,12 +35721,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd428cd7-5fdc-4e58-8ecf-75e4bcf62367", + "id": "9b1bbc06-623a-495e-be5c-ca080384bbe8", "name": "Too many requests", "originalRequest": { "url": { @@ -33705,12 +35765,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1b13448e-7890-47b2-bbb4-e84ee11837c5", + "id": "27fe4a9a-d177-476f-a985-9b05ae95bf82", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -33749,7 +35809,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -33760,7 +35820,7 @@ } }, { - "id": "c6fcd803-463e-438b-8e11-21d2d2edb933", + "id": "240d7496-270d-41d1-83f1-98cf105a96a5", "name": "Deletes a form definition.", "request": { "name": "Deletes a form definition.", @@ -33780,7 +35840,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "00000000-0000-0000-0000-000000000000", "key": "formDefinitionID", "disabled": true, "description": { @@ -33801,7 +35861,7 @@ }, "response": [ { - "id": "6a3dc4df-a6e9-44e1-9883-e2f046157c30", + "id": "1da89a52-a99a-457a-912f-529224846735", "name": "Returns an empty body", "originalRequest": { "url": { @@ -33845,7 +35905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "404de6af-8ecb-4c5b-959d-35d245bce887", + "id": "65276efd-a0eb-4568-9631-3605fafebcb0", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -33884,12 +35944,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a0470a06-b634-40b2-8bff-86a1be962e04", + "id": "edd2202d-e28b-4b42-aedc-5645ecfdebf6", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -33928,12 +35988,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a3f30370-f12d-4232-a8bc-558e8b3978b4", + "id": "a592e62b-ff3e-4f33-88ad-61ab8d7772ec", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -33972,12 +36032,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ea78cdb-2d5c-4132-b6f5-6bf349d76d6d", + "id": "d4eb3b8a-39e3-4fa8-b0d7-32c5c80a5ea7", "name": "An error with the item not found", "originalRequest": { "url": { @@ -34016,12 +36076,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb520468-46e8-4349-8b6a-82aeaee02262", + "id": "1d9dd5e6-3bb6-4702-b4c0-aeaf7ba8537c", "name": "Too many requests", "originalRequest": { "url": { @@ -34060,12 +36120,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7d898ae9-fde4-4c77-9bdb-02a8caef80e3", + "id": "1977b96d-b21e-453d-9b46-40b5c2cd7152", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -34104,7 +36164,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -34115,7 +36175,7 @@ } }, { - "id": "c9bbbaa7-b22f-4bc2-b3eb-02e6e0e7e944", + "id": "5652d1a7-c341-412c-9154-7ddd49ca8bfd", "name": "Patch a form definition.", "request": { "name": "Patch a form definition.", @@ -34135,7 +36195,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "00000000-0000-0000-0000-000000000000", "key": "formDefinitionID", "disabled": true, "description": { @@ -34158,7 +36218,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"test-description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -34169,7 +36229,7 @@ }, "response": [ { - "id": "d00bf112-f8a7-468c-a563-87e8ad6a40e3", + "id": "d21e7fe2-8918-4794-a1b5-1ebb5b2047a3", "name": "Returns the form definition updated", "originalRequest": { "url": { @@ -34204,7 +36264,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"test-description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -34221,12 +36281,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"DATE\",\n \"config\": {\n \"incididunt947\": {},\n \"ea_80a\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"deserunte36\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"INPUT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_IN\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"EQ\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\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\": \"et\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"proident in dolore\"\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 dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur in Excepteur qui\"\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": "af53e0d0-dd3d-4dd1-b228-244ea9bc8355", + "id": "d68cfdb2-141c-4d38-bace-8c1b8935e793", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -34261,7 +36321,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"test-description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -34278,12 +36338,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "62648bef-ba92-4e36-800b-adab1b2debbf", + "id": "f99943a6-3dce-48ae-a6e3-c056661f9e04", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -34318,7 +36378,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"test-description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -34335,12 +36395,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2371a1dc-45dc-4e33-9c29-2e5434f57be2", + "id": "3617f544-6838-4c5e-b71e-abfee691fe38", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -34375,7 +36435,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"test-description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -34392,12 +36452,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "711d9017-8aa0-4782-8ff5-c8e5079a3c9f", + "id": "2db1796d-e92c-4b49-8af5-a37fce2e0f0f", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -34432,7 +36492,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"test-description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -34449,12 +36509,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b6d59a2f-fa95-4731-8615-c2c03960bae0", + "id": "492c2537-09fd-4a86-b023-5a9794363e70", "name": "Too many requests", "originalRequest": { "url": { @@ -34489,7 +36549,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"test-description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -34506,12 +36566,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "22162ee9-672f-433f-8a8c-c3eb6a0f6bca", + "id": "d47b52e2-467d-44f3-83d0-694f2bb86b88", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -34546,7 +36606,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"test-description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -34563,7 +36623,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -34574,7 +36634,7 @@ } }, { - "id": "426d1de2-27d4-4aeb-a6d7-59163c342a80", + "id": "c5bd9bdb-1a56-4afa-8b7f-8b4ecfb3d70b", "name": "Preview form definition data source.", "request": { "name": "Preview form definition data source.", @@ -34605,7 +36665,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" }, { "disabled": true, @@ -34614,13 +36674,13 @@ "type": "text/plain" }, "key": "query", - "value": "" + "value": "support" } ], "variable": [ { "type": "any", - "value": "", + "value": "00000000-0000-0000-0000-000000000000", "key": "formDefinitionID", "disabled": true, "description": { @@ -34643,7 +36703,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"roles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"attributes.cloudStatus.exact\",\n \"indices\": [\n \"identities\"\n ],\n \"objectType\": \"IDENTITY\",\n \"query\": \"*\"\n },\n \"dataSourceType\": \"STATIC\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34654,7 +36714,7 @@ }, "response": [ { - "id": "59ff1076-e159-4859-9dbb-3daffc7b40cc", + "id": "148200f1-2594-4879-b267-c5db57c45ba9", "name": "Returns a preview of a form definition data source", "originalRequest": { "url": { @@ -34683,7 +36743,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" }, { "disabled": true, @@ -34692,7 +36752,7 @@ "type": "text/plain" }, "key": "query", - "value": "" + "value": "support" } ], "variable": [] @@ -34718,7 +36778,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"roles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"attributes.cloudStatus.exact\",\n \"indices\": [\n \"identities\"\n ],\n \"objectType\": \"IDENTITY\",\n \"query\": \"*\"\n },\n \"dataSourceType\": \"STATIC\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34735,12 +36795,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"label\": \"\",\n \"subLabel\": \"\",\n \"value\": \"\"\n },\n {\n \"label\": \"\",\n \"subLabel\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "body": "{\n \"results\": [\n {\n \"label\": \"regression-test-access-request-07c55dd6-3056-430a-86b5-fccc395bb6c5\",\n \"subLabel\": \"\",\n \"value\": \"e96674448eba4ca1ba04eee999a8f3cd\"\n },\n {\n \"label\": \"regression-test-access-request-07c55dd6-3056-430a-86b5-fccc395bb6c5\",\n \"subLabel\": \"\",\n \"value\": \"e96674448eba4ca1ba04eee999a8f3cd\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "91a19c97-7e53-4d07-8672-7a0c0e00d4a6", + "id": "1c1d6845-84fb-464f-b09d-594dbe99531a", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -34769,7 +36829,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" }, { "disabled": true, @@ -34778,7 +36838,7 @@ "type": "text/plain" }, "key": "query", - "value": "" + "value": "support" } ], "variable": [] @@ -34804,7 +36864,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"roles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"attributes.cloudStatus.exact\",\n \"indices\": [\n \"identities\"\n ],\n \"objectType\": \"IDENTITY\",\n \"query\": \"*\"\n },\n \"dataSourceType\": \"STATIC\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34821,12 +36881,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d4522116-c4cf-442d-8f99-7b5f26604f94", + "id": "10f92c94-4615-4c1a-ac2c-9efc4dcf66b7", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -34855,7 +36915,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" }, { "disabled": true, @@ -34864,7 +36924,7 @@ "type": "text/plain" }, "key": "query", - "value": "" + "value": "support" } ], "variable": [] @@ -34890,7 +36950,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"roles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"attributes.cloudStatus.exact\",\n \"indices\": [\n \"identities\"\n ],\n \"objectType\": \"IDENTITY\",\n \"query\": \"*\"\n },\n \"dataSourceType\": \"STATIC\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34907,12 +36967,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "858fe4bf-b382-441d-929d-4216c522aeee", + "id": "f4f5f31b-eff0-4b35-99e6-3ad87e6d2af6", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -34941,7 +37001,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" }, { "disabled": true, @@ -34950,7 +37010,7 @@ "type": "text/plain" }, "key": "query", - "value": "" + "value": "support" } ], "variable": [] @@ -34976,7 +37036,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"roles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"attributes.cloudStatus.exact\",\n \"indices\": [\n \"identities\"\n ],\n \"objectType\": \"IDENTITY\",\n \"query\": \"*\"\n },\n \"dataSourceType\": \"STATIC\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34993,12 +37053,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f75995a1-3d15-44b7-b61a-7b20e9a77ff3", + "id": "0175afe9-6202-4d57-8959-7fb93d627c32", "name": "An error with the item not found", "originalRequest": { "url": { @@ -35027,7 +37087,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" }, { "disabled": true, @@ -35036,7 +37096,7 @@ "type": "text/plain" }, "key": "query", - "value": "" + "value": "support" } ], "variable": [] @@ -35062,7 +37122,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"roles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"attributes.cloudStatus.exact\",\n \"indices\": [\n \"identities\"\n ],\n \"objectType\": \"IDENTITY\",\n \"query\": \"*\"\n },\n \"dataSourceType\": \"STATIC\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -35079,12 +37139,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bf473094-0735-4185-9e97-816d9be594c7", + "id": "46d4cd55-b096-48d0-be6e-52558ebba974", "name": "Too many requests", "originalRequest": { "url": { @@ -35113,7 +37173,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" }, { "disabled": true, @@ -35122,7 +37182,7 @@ "type": "text/plain" }, "key": "query", - "value": "" + "value": "support" } ], "variable": [] @@ -35148,7 +37208,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"roles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"attributes.cloudStatus.exact\",\n \"indices\": [\n \"identities\"\n ],\n \"objectType\": \"IDENTITY\",\n \"query\": \"*\"\n },\n \"dataSourceType\": \"STATIC\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -35165,12 +37225,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "399b7eda-a0b1-4cab-94a8-3224b8273769", + "id": "0b3f0bfa-69db-43d6-9a9e-ab901f9a5f80", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -35199,7 +37259,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" }, { "disabled": true, @@ -35208,7 +37268,7 @@ "type": "text/plain" }, "key": "query", - "value": "" + "value": "support" } ], "variable": [] @@ -35234,7 +37294,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"roles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"attributes.cloudStatus.exact\",\n \"indices\": [\n \"identities\"\n ],\n \"objectType\": \"IDENTITY\",\n \"query\": \"*\"\n },\n \"dataSourceType\": \"STATIC\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -35251,7 +37311,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -35262,7 +37322,7 @@ } }, { - "id": "adf6199e-dd32-41f0-b0b1-2037f0c8d204", + "id": "9e891ef8-5420-4aa0-977c-9c8883622c70", "name": "List form definitions by tenant.", "request": { "name": "List form definitions by tenant.", @@ -35304,7 +37364,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"my form\"" }, { "disabled": true, @@ -35329,7 +37389,7 @@ }, "response": [ { - "id": "d1379162-0f7b-4a67-b263-255bab5b9b4c", + "id": "d74298ef-cc59-4388-98a8-a5f8d3f223dc", "name": "Returns a list of form definition objects by tenant used by SP-Config", "originalRequest": { "url": { @@ -35366,7 +37426,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"my form\"" }, { "disabled": true, @@ -35405,12 +37465,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"TOGGLE\",\n \"config\": {\n \"adipisicing_31\": {},\n \"doa8e\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"magnac\": {},\n \"enim_dc_\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_IN\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_CO\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"PHONE\",\n \"config\": {\n \"pariature\": {},\n \"et7\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"DATE\",\n \"config\": {\n \"occaecat0\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EW\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EW\",\n \"valueType\": \"INPUT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\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\": \"id occaecat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nulla irure\"\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\": \"nulla culpa mollit nisi\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sed incididunt non\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"velit elit\",\n \"version\": 49081244\n },\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"est eu pariatur cupidatat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"laboris Excepteur pariatur sed\"\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\": \"fugiat dolor sed\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"magna anim dolore aliquip\",\n \"version\": -8958351\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a1ccf8a-552c-44ed-9d04-27af09901e8f", + "id": "0007d99c-1f04-4049-aa48-f3123832cca9", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -35447,7 +37507,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"my form\"" }, { "disabled": true, @@ -35486,12 +37546,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7df4316b-0eab-4084-9a47-c7395f8bd4a5", + "id": "c04f6580-66c5-41fe-a440-171ba6ffe4e0", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -35528,7 +37588,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"my form\"" }, { "disabled": true, @@ -35567,12 +37627,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "562905f3-ae6f-462f-8796-c02459a26810", + "id": "c22e1cec-b7f6-435f-87c9-6321dc9b46f0", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -35609,7 +37669,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"my form\"" }, { "disabled": true, @@ -35648,12 +37708,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a41204bb-b492-44ee-a458-d729db60059c", + "id": "4dc7d5e4-a614-4840-940a-c5e8fd94a545", "name": "Too many requests", "originalRequest": { "url": { @@ -35690,7 +37750,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"my form\"" }, { "disabled": true, @@ -35729,12 +37789,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52476f03-66cf-400b-bb24-ee7d3687d68c", + "id": "6d98f947-c41a-4aba-a20c-3554be73861e", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -35771,7 +37831,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"my form\"" }, { "disabled": true, @@ -35810,7 +37870,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -35821,7 +37881,7 @@ } }, { - "id": "fec73e40-1b19-4473-a1b9-d4faf99abd00", + "id": "c6ea7599-68f5-4fda-b126-e2c01bf0d681", "name": "Generate JSON Schema dynamically.", "request": { "name": "Generate JSON Schema dynamically.", @@ -35850,7 +37910,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"formDefinitionId\": \"\"\n },\n \"description\": \"\",\n \"id\": \"\",\n \"type\": \"\",\n \"versionNumber\": \"\"\n}", + "raw": "{\n \"id\": \"sp:forms\",\n \"attributes\": {\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"description\": \"AnotherDescription\",\n \"type\": \"action\",\n \"versionNumber\": 1\n}", "options": { "raw": { "headerFamily": "json", @@ -35861,7 +37921,7 @@ }, "response": [ { - "id": "3d404d50-301a-4f56-8acf-4bdf98afd502", + "id": "f85b7eae-d0f6-4de3-9260-c3ea22ae85c3", "name": "Returns a form elements dynamic schema", "originalRequest": { "url": { @@ -35896,7 +37956,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"formDefinitionId\": \"\"\n },\n \"description\": \"\",\n \"id\": \"\",\n \"type\": \"\",\n \"versionNumber\": \"\"\n}", + "raw": "{\n \"id\": \"sp:forms\",\n \"attributes\": {\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"description\": \"AnotherDescription\",\n \"type\": \"action\",\n \"versionNumber\": 1\n}", "options": { "raw": { "headerFamily": "json", @@ -35913,12 +37973,12 @@ "value": "application/json" } ], - "body": "{\n \"outputSchema\": {\n \"nond\": {}\n }\n}", + "body": "{\n \"outputSchema\": {\n \"outputSchema\": {\n \"$schema\": \"https://json-schema.org/draft/2020-12/schema\",\n \"additionalProperties\": false,\n \"properties\": {\n \"firstName\": {\n \"title\": \"First Name\",\n \"type\": \"string\"\n },\n \"fullName\": {\n \"title\": \"Full Name\",\n \"type\": \"string\"\n },\n \"lastName\": {\n \"title\": \"Last Name\",\n \"type\": \"string\"\n },\n \"startDate\": {\n \"format\": \"date-time\",\n \"title\": \"Start Date\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cd32012e-97f1-4be5-9fcb-bf71f521f108", + "id": "61e1b4b8-65bb-4bcc-9708-f71eb8022da8", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -35953,7 +38013,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"formDefinitionId\": \"\"\n },\n \"description\": \"\",\n \"id\": \"\",\n \"type\": \"\",\n \"versionNumber\": \"\"\n}", + "raw": "{\n \"id\": \"sp:forms\",\n \"attributes\": {\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"description\": \"AnotherDescription\",\n \"type\": \"action\",\n \"versionNumber\": 1\n}", "options": { "raw": { "headerFamily": "json", @@ -35970,12 +38030,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a9007219-b479-4444-8f35-7add8bbd2f60", + "id": "3c428c6e-d273-4f6c-9471-26f3ba04f7fd", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36010,7 +38070,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"formDefinitionId\": \"\"\n },\n \"description\": \"\",\n \"id\": \"\",\n \"type\": \"\",\n \"versionNumber\": \"\"\n}", + "raw": "{\n \"id\": \"sp:forms\",\n \"attributes\": {\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"description\": \"AnotherDescription\",\n \"type\": \"action\",\n \"versionNumber\": 1\n}", "options": { "raw": { "headerFamily": "json", @@ -36027,12 +38087,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9129bf1d-ee86-487e-9583-277083b5ed07", + "id": "472c1d15-eec6-4b75-95c9-23c7f9c8684d", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36067,7 +38127,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"formDefinitionId\": \"\"\n },\n \"description\": \"\",\n \"id\": \"\",\n \"type\": \"\",\n \"versionNumber\": \"\"\n}", + "raw": "{\n \"id\": \"sp:forms\",\n \"attributes\": {\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"description\": \"AnotherDescription\",\n \"type\": \"action\",\n \"versionNumber\": 1\n}", "options": { "raw": { "headerFamily": "json", @@ -36084,12 +38144,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4758b1a8-ab0e-45b0-a83b-9512817e02d3", + "id": "4deb451c-e241-4c3a-bb9e-c1bddcf32a36", "name": "An error with the item not found", "originalRequest": { "url": { @@ -36124,7 +38184,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"formDefinitionId\": \"\"\n },\n \"description\": \"\",\n \"id\": \"\",\n \"type\": \"\",\n \"versionNumber\": \"\"\n}", + "raw": "{\n \"id\": \"sp:forms\",\n \"attributes\": {\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"description\": \"AnotherDescription\",\n \"type\": \"action\",\n \"versionNumber\": 1\n}", "options": { "raw": { "headerFamily": "json", @@ -36141,12 +38201,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3ca18e9e-7062-4079-b2e3-eb799df0004b", + "id": "b7324be5-fe02-48e1-88bb-7cc257f31b06", "name": "Too many requests", "originalRequest": { "url": { @@ -36181,7 +38241,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"formDefinitionId\": \"\"\n },\n \"description\": \"\",\n \"id\": \"\",\n \"type\": \"\",\n \"versionNumber\": \"\"\n}", + "raw": "{\n \"id\": \"sp:forms\",\n \"attributes\": {\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"description\": \"AnotherDescription\",\n \"type\": \"action\",\n \"versionNumber\": 1\n}", "options": { "raw": { "headerFamily": "json", @@ -36198,12 +38258,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8dd3c34b-9dc3-41eb-b7b5-e8faf2c953a3", + "id": "c7327716-fa67-47ef-8606-240d435c7466", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -36238,7 +38298,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"formDefinitionId\": \"\"\n },\n \"description\": \"\",\n \"id\": \"\",\n \"type\": \"\",\n \"versionNumber\": \"\"\n}", + "raw": "{\n \"id\": \"sp:forms\",\n \"attributes\": {\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"description\": \"AnotherDescription\",\n \"type\": \"action\",\n \"versionNumber\": 1\n}", "options": { "raw": { "headerFamily": "json", @@ -36255,7 +38315,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -36266,7 +38326,7 @@ } }, { - "id": "0b8ba9e7-c9e9-48ac-a730-efd9687c00db", + "id": "35df5184-7a14-4889-9cac-55691bb7b86d", "name": "Import form definitions from export.", "request": { "name": "Import form definitions from export.", @@ -36295,7 +38355,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"TOGGLE\",\n \"config\": {\n \"adipisicing_31\": {},\n \"doa8e\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"magnac\": {},\n \"enim_dc_\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_IN\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_CO\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"PHONE\",\n \"config\": {\n \"pariature\": {},\n \"et7\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"DATE\",\n \"config\": {\n \"occaecat0\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EW\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EW\",\n \"valueType\": \"INPUT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "raw": "[\n {\n \"version\": 1,\n \"self\": {\n \"name\": \"All fields not required\",\n \"id\": \"05ed4edb-d0a9-41d9-ad0c-2f6e486ec4aa\",\n \"type\": \"FORM_DEFINITION\"\n },\n \"object\": {\n \"id\": \"05ed4edb-d0a9-41d9-ad0c-2f6e486ec4aa\",\n \"name\": \"All fields not required\",\n \"description\": \"description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"3447d8ec2602455ab6f1e8408a0f0150\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"5008594c-dacc-4295-8fee-41df60477304\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"97e75a75-c179-4fbc-a2da-b5fa4aaa8743\"\n }\n ],\n \"formInput\": [\n {\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\": \"3069272797630701\",\n \"elementType\": \"SECTION\",\n \"config\": {\n \"label\": \"First Section\",\n \"formElements\": [\n {\n \"id\": \"3069272797630700\",\n \"elementType\": \"TEXT\",\n \"key\": \"firstName\",\n \"config\": {\n \"label\": \"First Name\"\n }\n },\n {\n \"id\": \"3498415402897539\",\n \"elementType\": \"TEXT\",\n \"key\": \"lastName\",\n \"config\": {\n \"label\": \"Last Name\"\n }\n }\n ]\n }\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"Department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Sales\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"element\": \"2614088730489570\"\n }\n }\n ]\n }\n ],\n \"created\": \"2022-10-04T19:27:04.456Z\",\n \"modified\": \"2022-11-16T20:45:02.172Z\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -36306,7 +38366,7 @@ }, "response": [ { - "id": "51fbeacc-2d9a-44c8-83f4-cfd8fb7d1aac", + "id": "3c318818-5fce-4d4a-9e4a-31bec1e71141", "name": "Returns statuses of those form definition objects imported", "originalRequest": { "url": { @@ -36341,7 +38401,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"TOGGLE\",\n \"config\": {\n \"adipisicing_31\": {},\n \"doa8e\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"magnac\": {},\n \"enim_dc_\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_IN\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_CO\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"PHONE\",\n \"config\": {\n \"pariature\": {},\n \"et7\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"DATE\",\n \"config\": {\n \"occaecat0\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EW\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EW\",\n \"valueType\": \"INPUT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "raw": "[\n {\n \"version\": 1,\n \"self\": {\n \"name\": \"All fields not required\",\n \"id\": \"05ed4edb-d0a9-41d9-ad0c-2f6e486ec4aa\",\n \"type\": \"FORM_DEFINITION\"\n },\n \"object\": {\n \"id\": \"05ed4edb-d0a9-41d9-ad0c-2f6e486ec4aa\",\n \"name\": \"All fields not required\",\n \"description\": \"description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"3447d8ec2602455ab6f1e8408a0f0150\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"5008594c-dacc-4295-8fee-41df60477304\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"97e75a75-c179-4fbc-a2da-b5fa4aaa8743\"\n }\n ],\n \"formInput\": [\n {\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\": \"3069272797630701\",\n \"elementType\": \"SECTION\",\n \"config\": {\n \"label\": \"First Section\",\n \"formElements\": [\n {\n \"id\": \"3069272797630700\",\n \"elementType\": \"TEXT\",\n \"key\": \"firstName\",\n \"config\": {\n \"label\": \"First Name\"\n }\n },\n {\n \"id\": \"3498415402897539\",\n \"elementType\": \"TEXT\",\n \"key\": \"lastName\",\n \"config\": {\n \"label\": \"Last Name\"\n }\n }\n ]\n }\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"Department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Sales\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"element\": \"2614088730489570\"\n }\n }\n ]\n }\n ],\n \"created\": \"2022-10-04T19:27:04.456Z\",\n \"modified\": \"2022-11-16T20:45:02.172Z\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -36358,12 +38418,12 @@ "value": "application/json" } ], - "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"elit_5f1\": {},\n \"sit_ab\": {},\n \"Excepteur_5\": {},\n \"add\": {},\n \"minim_d\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"doe47\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n }\n ],\n \"importedObjects\": [\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"veniam_3_\": {},\n \"ut3b1\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"Duis_b4\": {},\n \"ut_d\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"SW\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EW\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_CO\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"EW\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SUBMIT_NOTIFICATION\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"EMAIL\",\n \"config\": {\n \"ex_8\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"minim1\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EW\",\n \"valueType\": \"INPUT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"DISABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_CO\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"voluptate6f4\": {},\n \"ullamco_e72\": {},\n \"laborum__\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"in590\": {},\n \"eac3\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"velit__cd\": {},\n \"sintb8\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"aliqua_5ce\": {},\n \"enimc\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"eiusmod_8b\": {}\n },\n \"key\": \"ea commodo\",\n \"text\": \"officia sed sint ex\"\n },\n {\n \"detail\": {\n \"nullae8\": {}\n },\n \"key\": \"culpa\",\n \"text\": \"qui laborum consectetur amet\"\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\": \"qui commodo\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Lorem occaecat \"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"laborum dolor Excepteur sint reprehenderit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Duis ea officia anim\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"magna ullamco nulla est\",\n \"version\": -48582080\n },\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore\"\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\": \"culp\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"laborum mollit\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"mini\",\n \"version\": 96677016\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"minim_a\": {},\n \"cillum90\": {},\n \"proident6ef\": {}\n },\n \"key\": \"laboris\",\n \"text\": \"laborum ipsum\"\n },\n {\n \"detail\": {\n \"reprehenderitda\": {},\n \"eiusmod_09\": {},\n \"exe74\": {}\n },\n \"key\": \"in officia\",\n \"text\": \"eli\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"incididunt82\": {}\n },\n \"key\": \"Lorem eu non laboris\",\n \"text\": \"dolore irure fugiat\"\n },\n {\n \"detail\": {\n \"velit_29\": {},\n \"proident_b\": {}\n },\n \"key\": \"officia proident occaecat\",\n \"text\": \"ex commodo sunt Excepteur\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "874d28fd-52c2-4a75-bcd5-94ffcbecba80", + "id": "28da2470-fd51-49c6-b76c-e59d2a910055", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -36398,7 +38458,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"TOGGLE\",\n \"config\": {\n \"adipisicing_31\": {},\n \"doa8e\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"magnac\": {},\n \"enim_dc_\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_IN\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_CO\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"PHONE\",\n \"config\": {\n \"pariature\": {},\n \"et7\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"DATE\",\n \"config\": {\n \"occaecat0\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EW\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EW\",\n \"valueType\": \"INPUT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "raw": "[\n {\n \"version\": 1,\n \"self\": {\n \"name\": \"All fields not required\",\n \"id\": \"05ed4edb-d0a9-41d9-ad0c-2f6e486ec4aa\",\n \"type\": \"FORM_DEFINITION\"\n },\n \"object\": {\n \"id\": \"05ed4edb-d0a9-41d9-ad0c-2f6e486ec4aa\",\n \"name\": \"All fields not required\",\n \"description\": \"description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"3447d8ec2602455ab6f1e8408a0f0150\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"5008594c-dacc-4295-8fee-41df60477304\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"97e75a75-c179-4fbc-a2da-b5fa4aaa8743\"\n }\n ],\n \"formInput\": [\n {\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\": \"3069272797630701\",\n \"elementType\": \"SECTION\",\n \"config\": {\n \"label\": \"First Section\",\n \"formElements\": [\n {\n \"id\": \"3069272797630700\",\n \"elementType\": \"TEXT\",\n \"key\": \"firstName\",\n \"config\": {\n \"label\": \"First Name\"\n }\n },\n {\n \"id\": \"3498415402897539\",\n \"elementType\": \"TEXT\",\n \"key\": \"lastName\",\n \"config\": {\n \"label\": \"Last Name\"\n }\n }\n ]\n }\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"Department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Sales\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"element\": \"2614088730489570\"\n }\n }\n ]\n }\n ],\n \"created\": \"2022-10-04T19:27:04.456Z\",\n \"modified\": \"2022-11-16T20:45:02.172Z\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -36415,12 +38475,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c6aca968-6de3-4142-bbf9-0455a2eb60f9", + "id": "97919600-95db-411f-a07b-dd38e7629103", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36455,7 +38515,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"TOGGLE\",\n \"config\": {\n \"adipisicing_31\": {},\n \"doa8e\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"magnac\": {},\n \"enim_dc_\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_IN\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_CO\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"PHONE\",\n \"config\": {\n \"pariature\": {},\n \"et7\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"DATE\",\n \"config\": {\n \"occaecat0\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EW\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EW\",\n \"valueType\": \"INPUT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "raw": "[\n {\n \"version\": 1,\n \"self\": {\n \"name\": \"All fields not required\",\n \"id\": \"05ed4edb-d0a9-41d9-ad0c-2f6e486ec4aa\",\n \"type\": \"FORM_DEFINITION\"\n },\n \"object\": {\n \"id\": \"05ed4edb-d0a9-41d9-ad0c-2f6e486ec4aa\",\n \"name\": \"All fields not required\",\n \"description\": \"description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"3447d8ec2602455ab6f1e8408a0f0150\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"5008594c-dacc-4295-8fee-41df60477304\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"97e75a75-c179-4fbc-a2da-b5fa4aaa8743\"\n }\n ],\n \"formInput\": [\n {\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\": \"3069272797630701\",\n \"elementType\": \"SECTION\",\n \"config\": {\n \"label\": \"First Section\",\n \"formElements\": [\n {\n \"id\": \"3069272797630700\",\n \"elementType\": \"TEXT\",\n \"key\": \"firstName\",\n \"config\": {\n \"label\": \"First Name\"\n }\n },\n {\n \"id\": \"3498415402897539\",\n \"elementType\": \"TEXT\",\n \"key\": \"lastName\",\n \"config\": {\n \"label\": \"Last Name\"\n }\n }\n ]\n }\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"Department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Sales\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"element\": \"2614088730489570\"\n }\n }\n ]\n }\n ],\n \"created\": \"2022-10-04T19:27:04.456Z\",\n \"modified\": \"2022-11-16T20:45:02.172Z\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -36472,12 +38532,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6f53f607-21d0-4ef3-8a26-d80a377752e3", + "id": "e2c80894-c6ba-4af1-b0e3-bc3bb7e3c5e3", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36512,7 +38572,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"TOGGLE\",\n \"config\": {\n \"adipisicing_31\": {},\n \"doa8e\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"magnac\": {},\n \"enim_dc_\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_IN\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_CO\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"PHONE\",\n \"config\": {\n \"pariature\": {},\n \"et7\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"DATE\",\n \"config\": {\n \"occaecat0\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EW\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EW\",\n \"valueType\": \"INPUT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "raw": "[\n {\n \"version\": 1,\n \"self\": {\n \"name\": \"All fields not required\",\n \"id\": \"05ed4edb-d0a9-41d9-ad0c-2f6e486ec4aa\",\n \"type\": \"FORM_DEFINITION\"\n },\n \"object\": {\n \"id\": \"05ed4edb-d0a9-41d9-ad0c-2f6e486ec4aa\",\n \"name\": \"All fields not required\",\n \"description\": \"description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"3447d8ec2602455ab6f1e8408a0f0150\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"5008594c-dacc-4295-8fee-41df60477304\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"97e75a75-c179-4fbc-a2da-b5fa4aaa8743\"\n }\n ],\n \"formInput\": [\n {\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\": \"3069272797630701\",\n \"elementType\": \"SECTION\",\n \"config\": {\n \"label\": \"First Section\",\n \"formElements\": [\n {\n \"id\": \"3069272797630700\",\n \"elementType\": \"TEXT\",\n \"key\": \"firstName\",\n \"config\": {\n \"label\": \"First Name\"\n }\n },\n {\n \"id\": \"3498415402897539\",\n \"elementType\": \"TEXT\",\n \"key\": \"lastName\",\n \"config\": {\n \"label\": \"Last Name\"\n }\n }\n ]\n }\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"Department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Sales\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"element\": \"2614088730489570\"\n }\n }\n ]\n }\n ],\n \"created\": \"2022-10-04T19:27:04.456Z\",\n \"modified\": \"2022-11-16T20:45:02.172Z\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -36529,12 +38589,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa12f26f-55f7-45d2-9419-d706dca7630c", + "id": "6dfb0721-1788-40ff-b95d-b58f9ca9cfbd", "name": "Too many requests", "originalRequest": { "url": { @@ -36569,7 +38629,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"TOGGLE\",\n \"config\": {\n \"adipisicing_31\": {},\n \"doa8e\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"magnac\": {},\n \"enim_dc_\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_IN\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_CO\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"PHONE\",\n \"config\": {\n \"pariature\": {},\n \"et7\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"DATE\",\n \"config\": {\n \"occaecat0\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EW\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EW\",\n \"valueType\": \"INPUT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "raw": "[\n {\n \"version\": 1,\n \"self\": {\n \"name\": \"All fields not required\",\n \"id\": \"05ed4edb-d0a9-41d9-ad0c-2f6e486ec4aa\",\n \"type\": \"FORM_DEFINITION\"\n },\n \"object\": {\n \"id\": \"05ed4edb-d0a9-41d9-ad0c-2f6e486ec4aa\",\n \"name\": \"All fields not required\",\n \"description\": \"description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"3447d8ec2602455ab6f1e8408a0f0150\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"5008594c-dacc-4295-8fee-41df60477304\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"97e75a75-c179-4fbc-a2da-b5fa4aaa8743\"\n }\n ],\n \"formInput\": [\n {\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\": \"3069272797630701\",\n \"elementType\": \"SECTION\",\n \"config\": {\n \"label\": \"First Section\",\n \"formElements\": [\n {\n \"id\": \"3069272797630700\",\n \"elementType\": \"TEXT\",\n \"key\": \"firstName\",\n \"config\": {\n \"label\": \"First Name\"\n }\n },\n {\n \"id\": \"3498415402897539\",\n \"elementType\": \"TEXT\",\n \"key\": \"lastName\",\n \"config\": {\n \"label\": \"Last Name\"\n }\n }\n ]\n }\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"Department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Sales\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"element\": \"2614088730489570\"\n }\n }\n ]\n }\n ],\n \"created\": \"2022-10-04T19:27:04.456Z\",\n \"modified\": \"2022-11-16T20:45:02.172Z\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -36586,12 +38646,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "714e1498-3a9a-4246-840c-0f5f4fc1668f", + "id": "9697fda2-0ad2-489c-b172-a9baa4125440", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -36626,7 +38686,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"TOGGLE\",\n \"config\": {\n \"adipisicing_31\": {},\n \"doa8e\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"magnac\": {},\n \"enim_dc_\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_IN\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_CO\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\"\n },\n \"usedBy\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"STRING\",\n \"label\": \"\",\n \"description\": \"\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"PHONE\",\n \"config\": {\n \"pariature\": {},\n \"et7\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"DATE\",\n \"config\": {\n \"occaecat0\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EW\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NE\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EW\",\n \"valueType\": \"INPUT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_MESSAGE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "raw": "[\n {\n \"version\": 1,\n \"self\": {\n \"name\": \"All fields not required\",\n \"id\": \"05ed4edb-d0a9-41d9-ad0c-2f6e486ec4aa\",\n \"type\": \"FORM_DEFINITION\"\n },\n \"object\": {\n \"id\": \"05ed4edb-d0a9-41d9-ad0c-2f6e486ec4aa\",\n \"name\": \"All fields not required\",\n \"description\": \"description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"3447d8ec2602455ab6f1e8408a0f0150\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"5008594c-dacc-4295-8fee-41df60477304\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"97e75a75-c179-4fbc-a2da-b5fa4aaa8743\"\n }\n ],\n \"formInput\": [\n {\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\": \"3069272797630701\",\n \"elementType\": \"SECTION\",\n \"config\": {\n \"label\": \"First Section\",\n \"formElements\": [\n {\n \"id\": \"3069272797630700\",\n \"elementType\": \"TEXT\",\n \"key\": \"firstName\",\n \"config\": {\n \"label\": \"First Name\"\n }\n },\n {\n \"id\": \"3498415402897539\",\n \"elementType\": \"TEXT\",\n \"key\": \"lastName\",\n \"config\": {\n \"label\": \"Last Name\"\n }\n }\n ]\n }\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"Department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Sales\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"element\": \"2614088730489570\"\n }\n }\n ]\n }\n ],\n \"created\": \"2022-10-04T19:27:04.456Z\",\n \"modified\": \"2022-11-16T20:45:02.172Z\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -36643,7 +38703,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -36654,7 +38714,7 @@ } }, { - "id": "6b1bfffb-18bf-4654-90f1-690760c90e3d", + "id": "bf8f6cd6-280d-4865-8c9d-86abf1fb3596", "name": "Upload new form definition file.", "request": { "name": "Upload new form definition file.", @@ -36675,7 +38735,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "00000000-0000-0000-0000-000000000000", "key": "formDefinitionID", "disabled": true, "description": { @@ -36705,7 +38765,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "fugiat esse laborum in quis", "type": "text", "contentType": "image/png, image/jpeg" } @@ -36714,7 +38774,7 @@ }, "response": [ { - "id": "740c18bb-c6c2-4b92-b401-731c513dbc73", + "id": "b87c7ef8-b7c8-422e-9cf5-9604eaed9cc3", "name": "Returns a new form definition file", "originalRequest": { "url": { @@ -36757,7 +38817,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "fugiat esse laborum in quis", "type": "text", "contentType": "image/png, image/jpeg" } @@ -36772,12 +38832,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"fileId\": \"\",\n \"formDefinitionId\": \"\"\n}", + "body": "{\n \"created\": \"2023-07-12T20:14:57.744Z\",\n \"fileId\": \"01FHZXHK8PTP9FVK99Z66GXQTX.png\",\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "67574e83-8f41-4625-8193-093ba2785465", + "id": "f66bda14-c51b-4a27-bef1-00e11ecfa793", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -36820,7 +38880,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "fugiat esse laborum in quis", "type": "text", "contentType": "image/png, image/jpeg" } @@ -36835,12 +38895,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "90a43962-97c4-47c9-8b90-29fcf32e6329", + "id": "22dcac97-51df-42e1-8c7a-d9be27debfe3", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36883,7 +38943,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "fugiat esse laborum in quis", "type": "text", "contentType": "image/png, image/jpeg" } @@ -36898,12 +38958,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "928ff7c4-32aa-453e-b367-d235c0d05754", + "id": "c17f53aa-b197-4df2-b61b-3b17351da314", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36946,7 +39006,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "fugiat esse laborum in quis", "type": "text", "contentType": "image/png, image/jpeg" } @@ -36961,12 +39021,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b0cf6a6-4a01-48c2-b366-9c5ced92e3ae", + "id": "dc6ac644-340f-4c7b-9386-2a0b684033c5", "name": "An error with the item not found", "originalRequest": { "url": { @@ -37009,7 +39069,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "fugiat esse laborum in quis", "type": "text", "contentType": "image/png, image/jpeg" } @@ -37024,12 +39084,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4b38ea34-2629-49ea-a27a-4306fad0cca6", + "id": "f88f8d39-8ec1-48ec-b9fc-d9616c96dbe7", "name": "An error with payload size too large", "originalRequest": { "url": { @@ -37072,7 +39132,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "fugiat esse laborum in quis", "type": "text", "contentType": "image/png, image/jpeg" } @@ -37087,12 +39147,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2a1b807f-2faf-45ed-9ffb-f0dea74a2def", + "id": "c25f057b-f604-4fc7-90e1-03305105722a", "name": "An error with unsupported media type", "originalRequest": { "url": { @@ -37135,7 +39195,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "fugiat esse laborum in quis", "type": "text", "contentType": "image/png, image/jpeg" } @@ -37150,12 +39210,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ac66f176-0103-4ddb-84ec-b53cde98cf40", + "id": "4f37fde2-9ec9-455b-bffe-4bfb30da3693", "name": "Too many requests", "originalRequest": { "url": { @@ -37198,7 +39258,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "fugiat esse laborum in quis", "type": "text", "contentType": "image/png, image/jpeg" } @@ -37213,12 +39273,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a03e8719-15b2-4fc9-9b82-ec62a3a95b47", + "id": "caefd18d-fdb2-47a9-9bac-b101170201c0", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -37261,7 +39321,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "fugiat esse laborum in quis", "type": "text", "contentType": "image/png, image/jpeg" } @@ -37276,12 +39336,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d872dd88-95c3-47ad-a73c-3c1bd9ba1a36", + "id": "cf7d748f-8b28-431c-8e0f-21f228a9cf89", "name": "An external service is not available", "originalRequest": { "url": { @@ -37324,7 +39384,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "fugiat esse laborum in quis", "type": "text", "contentType": "image/png, image/jpeg" } @@ -37339,7 +39399,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -37350,7 +39410,7 @@ } }, { - "id": "5a66653e-53ef-46ed-a88e-bfe8e5b8f43e", + "id": "8ee23dd8-f8b1-4b42-8ad7-32d2ec9eba59", "name": "Download definition file by fileId.", "request": { "name": "Download definition file by fileId.", @@ -37369,7 +39429,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "00000000-0000-0000-0000-000000000000", "key": "formDefinitionID", "disabled": true, "description": { @@ -37379,7 +39439,7 @@ }, { "type": "any", - "value": "", + "value": "00000031N0J7R2B57M8YG73J7M.png", "key": "fileID", "disabled": true, "description": { @@ -37400,7 +39460,7 @@ }, "response": [ { - "id": "075f6065-21a7-46a3-be0f-adfdfa7e8908", + "id": "8e7e786a-5ce3-4f33-9565-0327e3267d30", "name": "Returns a file that is referred to by fileID and associated with the formDefinitionID", "originalRequest": { "url": { @@ -37441,12 +39501,12 @@ "value": "application/json" } ], - "body": "", + "body": "velit aliquip", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "30aef503-7821-4f2f-a519-e1c288378f46", + "id": "7649851e-56de-40b6-8172-35fbad8250be", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -37487,12 +39547,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fe594071-46ac-4914-a7e9-fa09e207813a", + "id": "26ace5f3-4518-445d-80fc-57c66e08c572", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -37533,12 +39593,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1a45fc28-0fa9-4248-88a0-da85677e7d81", + "id": "b5819b14-e59f-4e35-819a-e10fb1703be0", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -37579,12 +39639,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ce52b821-87a4-45ee-b67c-aa356975d051", + "id": "6731e9c6-2163-4395-9dbb-36ab2e23574a", "name": "An error with the item not found", "originalRequest": { "url": { @@ -37625,12 +39685,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3de43a14-aa1f-43cd-8201-15ac4d798085", + "id": "0c70ce2d-cb89-49f5-b7b6-9b107133f63b", "name": "Too many requests", "originalRequest": { "url": { @@ -37671,12 +39731,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87eade1a-76d6-4d49-852e-c96f0df7cda4", + "id": "e394e8da-03d3-4aef-8831-883e84a937a2", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -37717,12 +39777,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b8262ae-6f28-49fa-a10c-04d0d310d5d0", + "id": "a4415e17-233e-4892-a8e0-5536cc1760f7", "name": "An external service is not available", "originalRequest": { "url": { @@ -37763,7 +39823,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -37774,7 +39834,7 @@ } }, { - "id": "6bdf79e4-41a4-4487-8137-57a019f65e1c", + "id": "9ad2585f-a15a-4771-94b4-2ea201a16e28", "name": "List form instances by tenant.", "request": { "name": "List form instances by tenant.", @@ -37803,7 +39863,7 @@ }, "response": [ { - "id": "faa1cb5c-c9b8-455b-922c-e8984930298b", + "id": "6ce8dea6-e99b-4ba5-ab32-f310130bc0b8", "name": "Returns a list of form instances by tenant", "originalRequest": { "url": { @@ -37841,12 +39901,12 @@ "value": "application/json" } ], - "body": "{\n \"count\": \"\",\n \"results\": [\n {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"ENABLE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SHOW\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_IN\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SHOW\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"SET_DEFAULT_VALUE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"amet_e\": {},\n \"Ut58\": {},\n \"incididunt79\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"PHONE\",\n \"config\": {\n \"nisi1\": {},\n \"irure_a9\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"COLUMNS\",\n \"config\": {\n \"in__9\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"sint_d3\": {},\n \"ute1\": {},\n \"dolore_f1d\": {},\n \"minim3\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\n \"state\": \"CANCELLED\"\n },\n {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"IN\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SUBMIT_NOTIFICATION\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_SW\",\n \"valueType\": \"BOOLEAN\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"OPTIONAL\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"utd23\": {},\n \"occaecat_5\": {},\n \"ullamco1\": {},\n \"dolore_99\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"minim8d0\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"PHONE\",\n \"config\": {\n \"laboris3\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"exercitation_a5\": {},\n \"incididuntb86\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\n \"state\": \"CANCELLED\"\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\": \"eiusmod ullamco sit eu in\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore magna\"\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 officia voluptate sunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint ea in\"\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\": \"commodo aute Lorem pariatur irure\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in consectetur magna sed 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\": \"laborum amet enim anim voluptate\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"proident dolor Lorem\"\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": "d4560488-fa46-4f10-8739-144e04bedc4e", + "id": "63e2b342-dca2-42c6-89da-63a944bd0ac2", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -37884,12 +39944,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d98defd9-3655-42a2-b41b-0ad4f6cd226e", + "id": "2add9af4-ba11-4662-892b-d7b708e3e1b7", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -37927,12 +39987,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e32d392e-1fb7-45bc-9da5-60f8a50f8fba", + "id": "1e2210df-461a-4457-a5d2-3c6863b0d343", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -37970,12 +40030,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c54a598f-ef22-4d2b-9edb-dbd1f613d3e8", + "id": "c7eb3549-9915-4cd6-9323-a63d71ed7d08", "name": "Too many requests", "originalRequest": { "url": { @@ -38013,12 +40073,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "79380675-2887-4d98-b154-605616eb0c7b", + "id": "8a6deda2-8807-4d65-a504-2a49ecb19294", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -38056,7 +40116,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -38067,7 +40127,7 @@ } }, { - "id": "7f5496f5-3646-449a-808b-24a9902b11fe", + "id": "57a5b470-6133-434d-83da-568b16d4a47c", "name": "Creates a form instance.", "request": { "name": "Creates a form instance.", @@ -38095,7 +40155,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"ea8c_\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\n \"ttl\": \"\"\n}", + "raw": "{\n \"expire\": \"2023-06-20T15:57:55.332882Z\",\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"an-identity-id\"\n }\n ],\n \"createdBy\": {\n \"type\": \"WORKFLOW_EXECUTION\",\n \"id\": \"a-workflow-execution-id\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -38106,7 +40166,7 @@ }, "response": [ { - "id": "c3ab8fd6-a2c7-4d65-8d25-2b1cd9a1f6a5", + "id": "441a1bfb-771f-4acf-83cf-441dc5ae15a0", "name": "Returns a new form instance", "originalRequest": { "url": { @@ -38140,7 +40200,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"ea8c_\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\n \"ttl\": \"\"\n}", + "raw": "{\n \"expire\": \"2023-06-20T15:57:55.332882Z\",\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"an-identity-id\"\n }\n ],\n \"createdBy\": {\n \"type\": \"WORKFLOW_EXECUTION\",\n \"id\": \"a-workflow-execution-id\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -38157,12 +40217,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_EW\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_SW\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EM\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SHOW\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"elitcf1\": {},\n \"est_3_\": {},\n \"laboris_a8\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"TEXTAREA\",\n \"config\": {\n \"ullamco_80_\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"et719\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"dolored28\": {},\n \"ut_6a6\": {},\n \"amet_eed\": {},\n \"ut_e8\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\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\": \"est\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sed 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\": \"in aliqua esse\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"i\"\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": "1ba87c5d-9452-4218-8a4f-3243ee7b3e1e", + "id": "5a43acf3-b41e-46c8-b63d-2b07a61fcc37", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -38196,7 +40256,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"ea8c_\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\n \"ttl\": \"\"\n}", + "raw": "{\n \"expire\": \"2023-06-20T15:57:55.332882Z\",\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"an-identity-id\"\n }\n ],\n \"createdBy\": {\n \"type\": \"WORKFLOW_EXECUTION\",\n \"id\": \"a-workflow-execution-id\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -38213,12 +40273,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6254ac49-3899-49cc-901c-323f9be76a48", + "id": "90af5b8e-d94b-4dcc-940c-6c82feaac195", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -38252,7 +40312,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"ea8c_\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\n \"ttl\": \"\"\n}", + "raw": "{\n \"expire\": \"2023-06-20T15:57:55.332882Z\",\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"an-identity-id\"\n }\n ],\n \"createdBy\": {\n \"type\": \"WORKFLOW_EXECUTION\",\n \"id\": \"a-workflow-execution-id\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -38269,12 +40329,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b0bc574b-2abb-4f5c-9284-5ed9fa49e9cd", + "id": "1254873e-0695-4b88-a528-d08c7f0c1cfa", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -38308,7 +40368,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"ea8c_\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\n \"ttl\": \"\"\n}", + "raw": "{\n \"expire\": \"2023-06-20T15:57:55.332882Z\",\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"an-identity-id\"\n }\n ],\n \"createdBy\": {\n \"type\": \"WORKFLOW_EXECUTION\",\n \"id\": \"a-workflow-execution-id\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -38325,12 +40385,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f33d50b-ee73-40e2-a3b1-aecbac51a722", + "id": "c6a1196a-a351-4243-af21-5387dfbead79", "name": "Too many requests", "originalRequest": { "url": { @@ -38364,7 +40424,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"ea8c_\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\n \"ttl\": \"\"\n}", + "raw": "{\n \"expire\": \"2023-06-20T15:57:55.332882Z\",\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"an-identity-id\"\n }\n ],\n \"createdBy\": {\n \"type\": \"WORKFLOW_EXECUTION\",\n \"id\": \"a-workflow-execution-id\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -38381,12 +40441,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "63ca27a9-50b0-44f6-88fc-9651f069926a", + "id": "3820b129-654f-4332-b285-7016fae3b987", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -38420,7 +40480,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"ea8c_\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\n \"ttl\": \"\"\n}", + "raw": "{\n \"expire\": \"2023-06-20T15:57:55.332882Z\",\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"an-identity-id\"\n }\n ],\n \"createdBy\": {\n \"type\": \"WORKFLOW_EXECUTION\",\n \"id\": \"a-workflow-execution-id\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -38437,7 +40497,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -38448,7 +40508,7 @@ } }, { - "id": "d26dbae3-8e38-4468-819c-e4456c924238", + "id": "82bc5ea1-f12b-40e9-a6a8-3bd8d36de9ce", "name": "Returns a form instance.", "request": { "name": "Returns a form instance.", @@ -38468,7 +40528,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "00000000-0000-0000-0000-000000000000", "key": "formInstanceID", "disabled": true, "description": { @@ -38489,7 +40549,7 @@ }, "response": [ { - "id": "c44495a8-606f-4cd5-a995-572bc6b6202a", + "id": "48fd3dc6-dd70-4739-a3a9-b117d9f08c43", "name": "Returns a form instance by its key", "originalRequest": { "url": { @@ -38528,12 +40588,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_EW\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_SW\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EM\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SHOW\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"elitcf1\": {},\n \"est_3_\": {},\n \"laboris_a8\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"TEXTAREA\",\n \"config\": {\n \"ullamco_80_\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"et719\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"dolored28\": {},\n \"ut_6a6\": {},\n \"amet_eed\": {},\n \"ut_e8\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\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\": \"est\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sed 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\": \"in aliqua esse\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"i\"\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": "0fc89d2e-ba15-41f5-aed5-7936f59da904", + "id": "da55c006-a178-4bc6-af13-b56ba6a80919", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -38572,12 +40632,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f01c28f3-3d49-40e6-ae37-e623d6c02d78", + "id": "cbb40a07-ad45-4cc6-875b-93a188de385a", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -38616,12 +40676,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b606c24b-1ce0-45d7-b2f5-2a2a2738feac", + "id": "ba69261a-ff3a-424d-a6e0-b54af825aae8", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -38660,12 +40720,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bfcacee9-39b8-4cc0-b5bc-81df595d1fe9", + "id": "d420656f-8635-4221-8897-738242bbdd1c", "name": "An error with the item not found", "originalRequest": { "url": { @@ -38704,12 +40764,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e73d221-b224-4bc3-8c28-a2d85852c087", + "id": "14808b31-3ba0-4d2e-b11f-1fa6c14332f5", "name": "Too many requests", "originalRequest": { "url": { @@ -38748,12 +40808,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0e60e171-c277-48c4-b712-9f5956b72d13", + "id": "ce11d065-c426-4694-99f2-9a0002c94ec8", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -38792,7 +40852,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -38803,7 +40863,7 @@ } }, { - "id": "7b1824a6-654a-4918-8fe8-a25618e0e24b", + "id": "dd55f730-d7d5-448b-9e0b-b3f2d174984c", "name": "Patch a form instance.", "request": { "name": "Patch a form instance.", @@ -38823,7 +40883,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "00000000-0000-0000-0000-000000000000", "key": "formInstanceID", "disabled": true, "description": { @@ -38846,7 +40906,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/state\",\n \"value\": \"SUBMITTED\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/formData\",\n \"value\": {\n \"a-key-1\": \"a-value-1\",\n \"a-key-2\": true,\n \"a-key-3\": 1\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -38857,7 +40917,7 @@ }, "response": [ { - "id": "75fae7b6-9de7-4a0b-823c-f3f949d02d24", + "id": "ce64570b-0a8e-4317-acb7-1cd51426d33d", "name": "Returns the form instance updated", "originalRequest": { "url": { @@ -38892,7 +40952,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/state\",\n \"value\": \"SUBMITTED\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/formData\",\n \"value\": {\n \"a-key-1\": \"a-value-1\",\n \"a-key-2\": true,\n \"a-key-3\": 1\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -38909,12 +40969,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_EW\",\n \"valueType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"NOT_SW\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"REQUIRE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"\",\n \"operator\": \"NOT_EM\",\n \"valueType\": \"STRING_LIST\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"sourceType\": \"INPUT\",\n \"source\": \"\",\n \"operator\": \"EM\",\n \"valueType\": \"STRING\",\n \"value\": {\n \"description\": \"Based on the ValueType.\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"SHOW\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"elitcf1\": {},\n \"est_3_\": {},\n \"laboris_a8\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"id\": \"\",\n \"elementType\": \"TEXTAREA\",\n \"config\": {\n \"ullamco_80_\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"id\": \"\",\n \"elementType\": \"HIDDEN\",\n \"config\": {\n \"et719\": {}\n },\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"dolored28\": {},\n \"ut_6a6\": {},\n \"amet_eed\": {},\n \"ut_e8\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\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\": \"est\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sed 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\": \"in aliqua esse\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"i\"\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": "2a134e91-3e61-4d46-b157-e7f21924d1d7", + "id": "52692fa2-e1ee-4654-a426-d742fac74740", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -38949,7 +41009,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/state\",\n \"value\": \"SUBMITTED\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/formData\",\n \"value\": {\n \"a-key-1\": \"a-value-1\",\n \"a-key-2\": true,\n \"a-key-3\": 1\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -38966,12 +41026,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3518bebb-1bb4-418a-96b3-204b442cd1f0", + "id": "8360c8ba-5295-4315-bc06-2485894b462d", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -39006,7 +41066,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/state\",\n \"value\": \"SUBMITTED\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/formData\",\n \"value\": {\n \"a-key-1\": \"a-value-1\",\n \"a-key-2\": true,\n \"a-key-3\": 1\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -39023,12 +41083,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "677b8a1b-0306-49f3-a64e-75cc64d4feb2", + "id": "5aba2e95-f1e9-43ab-aa1a-663a271ca6c1", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -39063,7 +41123,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/state\",\n \"value\": \"SUBMITTED\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/formData\",\n \"value\": {\n \"a-key-1\": \"a-value-1\",\n \"a-key-2\": true,\n \"a-key-3\": 1\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -39080,12 +41140,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "22d45918-7f2d-4ef5-8037-add63395da4e", + "id": "5ab4ce09-5663-449d-bf0d-fb1459ded59b", "name": "An error with the item not found", "originalRequest": { "url": { @@ -39120,7 +41180,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/state\",\n \"value\": \"SUBMITTED\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/formData\",\n \"value\": {\n \"a-key-1\": \"a-value-1\",\n \"a-key-2\": true,\n \"a-key-3\": 1\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -39137,12 +41197,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "334816c6-a683-43d9-8251-b941b0b8f807", + "id": "24c567d4-727e-4afc-b7ff-4ea353830a2a", "name": "An error with the request property conflicts with stored", "originalRequest": { "url": { @@ -39177,7 +41237,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/state\",\n \"value\": \"SUBMITTED\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/formData\",\n \"value\": {\n \"a-key-1\": \"a-value-1\",\n \"a-key-2\": true,\n \"a-key-3\": 1\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -39194,12 +41254,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7036dac8-1546-4e4a-8cfe-ed88bdf4daf0", + "id": "e40bfbf0-eec9-4acf-acf3-d34d8843daff", "name": "Too many requests", "originalRequest": { "url": { @@ -39234,7 +41294,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/state\",\n \"value\": \"SUBMITTED\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/formData\",\n \"value\": {\n \"a-key-1\": \"a-value-1\",\n \"a-key-2\": true,\n \"a-key-3\": 1\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -39251,12 +41311,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bf752375-5f1b-452a-8a96-30cef432393c", + "id": "436deb7f-5425-4ca0-b31b-6f6a1e0d0d53", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -39291,7 +41351,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"eu7\": {},\n \"labore9\": {},\n \"ut8\": {},\n \"enim0b4\": {}\n },\n {\n \"qui8e0\": {}\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/state\",\n \"value\": \"SUBMITTED\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/formData\",\n \"value\": {\n \"a-key-1\": \"a-value-1\",\n \"a-key-2\": true,\n \"a-key-3\": 1\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -39308,7 +41368,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -39319,7 +41379,7 @@ } }, { - "id": "f7fcb454-b885-495a-9abd-7a0013536763", + "id": "8f79675a-b04c-4fac-b9b9-e77e97704a25", "name": "Retrieves dynamic data by element.", "request": { "name": "Retrieves dynamic data by element.", @@ -39354,13 +41414,13 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" } ], "variable": [ { "type": "any", - "value": "", + "value": "00000000-0000-0000-0000-000000000000", "key": "formInstanceID", "disabled": true, "description": { @@ -39370,7 +41430,7 @@ }, { "type": "any", - "value": "", + "value": "1", "key": "formElementID", "disabled": true, "description": { @@ -39391,7 +41451,7 @@ }, "response": [ { - "id": "d00b8c43-6768-4197-8d63-5da784ed9688", + "id": "d8be0c3e-1a1e-4bd6-8ffb-b3c834470210", "name": "Retrieves dynamic data to aid in correctly completing a valid form by form element ID from data source configuration", "originalRequest": { "url": { @@ -39421,7 +41481,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" } ], "variable": [] @@ -39451,12 +41511,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"label\": \"\",\n \"subLabel\": \"\",\n \"value\": \"\"\n },\n {\n \"label\": \"\",\n \"subLabel\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "body": "{\n \"results\": [\n {\n \"label\": \"regression-test-access-request-07c55dd6-3056-430a-86b5-fccc395bb6c5\",\n \"subLabel\": \"\",\n \"value\": \"e96674448eba4ca1ba04eee999a8f3cd\"\n },\n {\n \"label\": \"regression-test-access-request-07c55dd6-3056-430a-86b5-fccc395bb6c5\",\n \"subLabel\": \"\",\n \"value\": \"e96674448eba4ca1ba04eee999a8f3cd\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "500976ec-43df-42a4-9872-ea91a0afc7a9", + "id": "716ceb19-c6ae-4368-8bc4-4d584858217b", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -39486,7 +41546,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" } ], "variable": [] @@ -39516,12 +41576,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e004ceb-67f8-4120-8c8c-346b1dc8a71d", + "id": "abf145ed-bf25-40a5-a6fa-3ce52f3c0d3a", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -39551,7 +41611,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" } ], "variable": [] @@ -39581,12 +41641,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "317810dd-1895-4552-8273-5afd30650959", + "id": "1c8e7362-b2ee-4ac2-bba9-17f56464b405", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -39616,7 +41676,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" } ], "variable": [] @@ -39646,12 +41706,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8d30eca7-9072-4383-8d5c-567189faa390", + "id": "c8a331f8-5f14-42df-89a7-9cabd4146928", "name": "An error with the item not found", "originalRequest": { "url": { @@ -39681,7 +41741,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" } ], "variable": [] @@ -39711,12 +41771,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "46b42ee3-ab32-415e-8427-a3b97f557b8f", + "id": "3e6e0e9c-7acc-4a57-a8dd-c1d93db9a5ef", "name": "Too many requests", "originalRequest": { "url": { @@ -39746,7 +41806,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" } ], "variable": [] @@ -39776,12 +41836,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "443871db-e9f7-4c37-ad27-712fe8068ad9", + "id": "9f63a92d-3315-417c-a140-d0d0a4fa3c97", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -39811,7 +41871,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "label sw \"my label\"" } ], "variable": [] @@ -39841,7 +41901,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -39852,7 +41912,7 @@ } }, { - "id": "843f3a23-dfd5-46ed-b312-7a5723b66ff8", + "id": "f31293e6-bf43-4d88-9d9d-e5bfe51d3ac7", "name": "Download instance file by fileId.", "request": { "name": "Download instance file by fileId.", @@ -39871,7 +41931,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "00000000-0000-0000-0000-000000000000", "key": "formInstanceID", "disabled": true, "description": { @@ -39881,7 +41941,7 @@ }, { "type": "any", - "value": "", + "value": "00000031N0J7R2B57M8YG73J7M.png", "key": "fileID", "disabled": true, "description": { @@ -39902,7 +41962,7 @@ }, "response": [ { - "id": "a0d3e7d8-e47d-4361-9e82-ac7da6f164e5", + "id": "10adde7b-55c6-4cd6-a965-20558e21809c", "name": "Returns a file that is referred to by fileID and associated with the formInstanceID", "originalRequest": { "url": { @@ -39943,12 +42003,12 @@ "value": "application/json" } ], - "body": "", + "body": "velit aliquip", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f1c3a118-90a1-48e0-bfce-d4ca0dfa4a3f", + "id": "a826c154-904c-45bc-9a90-613bf77881f2", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -39989,12 +42049,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b398475d-c471-4f09-a5fb-8eb6c1e3baa2", + "id": "1a6894ba-704e-4117-970e-1be4290013e8", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -40035,12 +42095,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aab61cc2-b69c-479d-98bc-ccc5a1c104fb", + "id": "6181877d-1b97-404d-a744-3488b679d264", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -40081,12 +42141,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2599f723-4c7b-4510-be5d-0850a29711a6", + "id": "72073e0e-2737-4bdc-ad0d-c4b02d25c15e", "name": "An error with the item not found", "originalRequest": { "url": { @@ -40127,12 +42187,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9c3edfcf-d690-45be-8a96-4f4f656e5d75", + "id": "a8691cdd-14d4-4557-b807-64d1bf1d1dfb", "name": "Too many requests", "originalRequest": { "url": { @@ -40173,12 +42233,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ff4a4c62-93bb-4c94-8d1e-7486cb08817b", + "id": "a7e46fcd-6419-4691-9231-37dca1835b5c", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -40219,12 +42279,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dab16bda-7eb0-42a7-8f33-0f15f146c685", + "id": "089e049b-f027-4101-b615-718bce479397", "name": "An external service is not available", "originalRequest": { "url": { @@ -40265,7 +42325,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40276,7 +42336,7 @@ } }, { - "id": "f79ac11d-f3ac-4080-bfda-b73f7dda1c2a", + "id": "f06173cb-9d33-4e1e-a073-bba773837a47", "name": "List predefined select options.", "request": { "name": "List predefined select options.", @@ -40306,7 +42366,7 @@ }, "response": [ { - "id": "6739b36d-caa5-4979-b01a-e52b46ce2b60", + "id": "dcd1e77a-3e37-49d6-ad0b-80aed7f93c64", "name": "Returns a list of available predefined select options", "originalRequest": { "url": { @@ -40345,12 +42405,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"results\": [\n \"IDENTITY\",\n \"IDENTITY\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd8af1bb-07b9-4787-9a71-f2097c19ee5e", + "id": "e1429d3a-785d-4ea8-8ca8-0d82d1d45b7e", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -40389,12 +42449,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a29e7c68-2383-44e5-8523-f0e411339893", + "id": "d2f1d438-2635-4e0d-8a5f-6d8f43710c60", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -40433,12 +42493,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1939dddf-8d3e-49c4-a771-f92135fdb858", + "id": "9f9afe1b-1f6e-4f45-95aa-487a5e23ac2f", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -40477,12 +42537,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "acd2f795-f076-494a-89ce-3f5c3f089f79", + "id": "64af3e78-a8f8-448a-9208-1e29d6dd6938", "name": "Too many requests", "originalRequest": { "url": { @@ -40521,12 +42581,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"Internal Server Error\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"trackingId\": \"9cd03ef80e6a425eb6b11bdbb057cdb4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1897c076-0218-47d5-b684-6e2d1a722e11", + "id": "b1d016b7-5c46-4f3d-8a93-785680c9bed6", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -40565,7 +42625,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"statusCode\": \"\",\n \"trackingId\": \"\"\n}", + "body": "{\n \"detailCode\": \"in dolore commodo\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 3574094,\n \"trackingId\": \"do\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40582,7 +42642,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": "69cf318c-08f6-4b9c-aaf1-74a1380c58a4", + "id": "9c1bdfcb-34b4-4214-b615-cc4180f019e7", "name": "Create Custom Password Instructions", "request": { "name": "Create Custom Password Instructions", @@ -40613,7 +42673,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"change-password:finish\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"reset-password:enter-password\",\n \"pageContent\": \"See company password policies for details by clicking here\"\n}", "options": { "raw": { "headerFamily": "json", @@ -40624,7 +42684,7 @@ }, "response": [ { - "id": "f3aeb27e-4fdf-46f0-bd22-0a3267154bbd", + "id": "ae0b4a0e-6b43-49af-9a60-0691c2f09c68", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -40658,7 +42718,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"change-password:finish\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"reset-password:enter-password\",\n \"pageContent\": \"See company password policies for details by clicking here\"\n}", "options": { "raw": { "headerFamily": "json", @@ -40675,12 +42735,12 @@ "value": "application/json" } ], - "body": "{\n \"pageId\": \"change-password:finish\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "body": "{\n \"pageId\": \"reset-password:enter-password\",\n \"locale\": \"default\",\n \"pageContent\": \"See company password policies for details by clicking here\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8fd59169-ec6d-40e2-acf4-91044c1e5388", + "id": "9ce14e08-afef-49a6-810e-4e46b56a40be", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40714,7 +42774,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"change-password:finish\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"reset-password:enter-password\",\n \"pageContent\": \"See company password policies for details by clicking here\"\n}", "options": { "raw": { "headerFamily": "json", @@ -40731,12 +42791,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "67f1d1a3-1f01-42a4-98a6-188d4bffae2a", + "id": "76fb290f-7ccc-48d6-b91f-faed49eb9e16", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40770,7 +42830,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"change-password:finish\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"reset-password:enter-password\",\n \"pageContent\": \"See company password policies for details by clicking here\"\n}", "options": { "raw": { "headerFamily": "json", @@ -40787,12 +42847,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a3bfb2f4-e33f-4618-9fc3-137e20c0cfff", + "id": "47897334-e563-403b-8e6c-c0a01e90beab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40826,7 +42886,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"change-password:finish\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"reset-password:enter-password\",\n \"pageContent\": \"See company password policies for details by clicking here\"\n}", "options": { "raw": { "headerFamily": "json", @@ -40843,7 +42903,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -40854,7 +42914,7 @@ } }, { - "id": "73156793-1539-4741-afee-36399fec2d31", + "id": "7eca4a98-08fb-4dbd-923c-5bfe3a0a9341", "name": "Get Custom Password Instructions by Page ID", "request": { "name": "Get Custom Password Instructions by Page ID", @@ -40878,13 +42938,13 @@ "type": "text/plain" }, "key": "locale", - "value": "" + "value": "velit aliquip" } ], "variable": [ { "type": "any", - "value": "flow-selection:select", + "value": "mfa:select", "key": "pageId", "disabled": true, "description": { @@ -40905,7 +42965,7 @@ }, "response": [ { - "id": "63412e9f-345e-4dfc-82d0-30ba5784cf7e", + "id": "64e97287-6ceb-40ef-939e-ffb817702342", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -40924,7 +42984,7 @@ "type": "text/plain" }, "key": "locale", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -40954,12 +43014,12 @@ "value": "application/json" } ], - "body": "{\n \"pageId\": \"change-password:finish\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "body": "{\n \"pageId\": \"reset-password:enter-password\",\n \"locale\": \"default\",\n \"pageContent\": \"See company password policies for details by clicking here\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1cceb7f4-81a3-46d0-ad66-641091eaf184", + "id": "dc1af64d-d9b1-4fb9-99e3-ea244d93ba81", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40978,7 +43038,7 @@ "type": "text/plain" }, "key": "locale", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -41008,12 +43068,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "22f21a41-2dd0-493f-b7a5-8cfcc2338eec", + "id": "82916f6b-6306-4a0e-830a-431896304373", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41032,7 +43092,7 @@ "type": "text/plain" }, "key": "locale", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -41062,12 +43122,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7e214380-e406-41a9-b5c4-022eb4960e6b", + "id": "0eaebe91-3d52-4691-88a0-81c7bcf1c68b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41086,7 +43146,7 @@ "type": "text/plain" }, "key": "locale", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -41116,12 +43176,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bf814569-0050-4a32-aef5-7dde7703dc2f", + "id": "6548c25c-53c3-4d52-8d3c-6b43effdba00", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41140,7 +43200,7 @@ "type": "text/plain" }, "key": "locale", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -41170,7 +43230,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -41181,7 +43241,7 @@ } }, { - "id": "8ba4b669-f015-4b58-99d4-bc0ffb1a2acf", + "id": "e6f7a089-7215-4735-8fd9-47cfce0470ee", "name": "Delete Custom Password Instructions by page ID", "request": { "name": "Delete Custom Password Instructions by page ID", @@ -41205,13 +43265,13 @@ "type": "text/plain" }, "key": "locale", - "value": "" + "value": "velit aliquip" } ], "variable": [ { "type": "any", - "value": "flow-selection:select", + "value": "mfa:select", "key": "pageId", "disabled": true, "description": { @@ -41232,7 +43292,7 @@ }, "response": [ { - "id": "1b41e696-0119-483a-bf10-9720034ee4ce", + "id": "8a9315d6-7bc6-4aa7-beef-7014af30b5f2", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -41251,7 +43311,7 @@ "type": "text/plain" }, "key": "locale", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -41276,7 +43336,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b511db5e-0428-49ee-9d93-a86411e12ff5", + "id": "254d685b-1ac2-407e-bb87-0846939c846f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41295,7 +43355,7 @@ "type": "text/plain" }, "key": "locale", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -41325,12 +43385,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6918b4db-d23a-44d3-bd8a-105365781b1f", + "id": "ab783763-8986-4826-ab82-d7770ff322b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41349,7 +43409,7 @@ "type": "text/plain" }, "key": "locale", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -41379,12 +43439,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1fe3e0a7-815f-4c4d-b07f-369082398bcb", + "id": "904105fc-b1c3-474d-9336-35a93e99aaa7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41403,7 +43463,7 @@ "type": "text/plain" }, "key": "locale", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -41433,12 +43493,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b8a0c1fd-c832-4d2a-b315-5cdd06cc25e1", + "id": "32ff75cb-a0be-4aea-8e9b-032adfceba63", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41457,7 +43517,7 @@ "type": "text/plain" }, "key": "locale", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -41487,7 +43547,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -41504,7 +43564,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": "29ad72fe-094a-4080-9a83-56e2fc4ba34a", + "id": "69e4a28c-884f-4750-9371-a9f2721d4742", "name": "Gets a list of entitlements.", "request": { "name": "Gets a list of entitlements.", @@ -41527,7 +43587,7 @@ "type": "text/plain" }, "key": "account-id", - "value": "" + "value": "ef38f94347e94562b5bb8424a56397d8" }, { "disabled": true, @@ -41536,7 +43596,7 @@ "type": "text/plain" }, "key": "segmented-for-identity", - "value": "" + "value": "me" }, { "disabled": true, @@ -41545,7 +43605,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "041727d4-7d95-4779-b891-93cf41e98249,a378c9fa-bae5-494c-804e-a1e30f69f649" }, { "disabled": true, @@ -41581,7 +43641,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -41590,7 +43650,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -41599,7 +43659,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -41615,7 +43675,7 @@ }, "response": [ { - "id": "8129296b-f4c2-4477-8636-1ee31ca7ae0f", + "id": "0a8ff371-008c-4c6f-9781-f58e9b6db3ee", "name": "List of entitlements", "originalRequest": { "url": { @@ -41633,7 +43693,7 @@ "type": "text/plain" }, "key": "account-id", - "value": "" + "value": "ef38f94347e94562b5bb8424a56397d8" }, { "disabled": true, @@ -41642,7 +43702,7 @@ "type": "text/plain" }, "key": "segmented-for-identity", - "value": "" + "value": "me" }, { "disabled": true, @@ -41651,7 +43711,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "041727d4-7d95-4779-b891-93cf41e98249,a378c9fa-bae5-494c-804e-a1e30f69f649" }, { "disabled": true, @@ -41687,7 +43747,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -41696,7 +43756,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -41705,7 +43765,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -41735,12 +43795,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"dolore_59a\": -14064548.001217768,\n \"ad_0\": 88792807\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"reprehenderit_bb\": 84438357.51621753\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", + "body": "[\n {\n \"id\": \"2c91808874ff91550175097daaec161c\",\n \"name\": \"LauncherTest2\",\n \"created\": \"2020-10-08T18:33:52.029Z\",\n \"modified\": \"2020-10-08T18:33:52.029Z\",\n \"attribute\": \"memberOf\",\n \"value\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"sourceSchemaObjectType\": \"group\",\n \"privileged\": true,\n \"cloudGoverned\": true,\n \"description\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"requestable\": true,\n \"attributes\": {\n \"fieldName\": \"fieldValue\"\n },\n \"source\": {\n \"id\": \"2c9180827ca885d7017ca8ce28a000eb\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-Source\"\n },\n \"owner\": {\n \"id\": \"2a2fdacca5e345f18bf7970cfbb8fec2\",\n \"name\": \"identity 1\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n },\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n }\n ],\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n }\n },\n {\n \"id\": \"2c91808874ff91550175097daaec161c\",\n \"name\": \"LauncherTest2\",\n \"created\": \"2020-10-08T18:33:52.029Z\",\n \"modified\": \"2020-10-08T18:33:52.029Z\",\n \"attribute\": \"memberOf\",\n \"value\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"sourceSchemaObjectType\": \"group\",\n \"privileged\": true,\n \"cloudGoverned\": true,\n \"description\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"requestable\": true,\n \"attributes\": {\n \"fieldName\": \"fieldValue\"\n },\n \"source\": {\n \"id\": \"2c9180827ca885d7017ca8ce28a000eb\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-Source\"\n },\n \"owner\": {\n \"id\": \"2a2fdacca5e345f18bf7970cfbb8fec2\",\n \"name\": \"identity 1\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n },\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n }\n ],\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "98a6400c-6b31-44c3-afed-60a1f75fd892", + "id": "2bc40d4a-6667-4a50-8577-1dc721d89fb0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41758,7 +43818,7 @@ "type": "text/plain" }, "key": "account-id", - "value": "" + "value": "ef38f94347e94562b5bb8424a56397d8" }, { "disabled": true, @@ -41767,7 +43827,7 @@ "type": "text/plain" }, "key": "segmented-for-identity", - "value": "" + "value": "me" }, { "disabled": true, @@ -41776,7 +43836,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "041727d4-7d95-4779-b891-93cf41e98249,a378c9fa-bae5-494c-804e-a1e30f69f649" }, { "disabled": true, @@ -41812,7 +43872,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -41821,7 +43881,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -41830,7 +43890,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -41860,12 +43920,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9a8876b0-2930-424b-8a40-8245ed4a9436", + "id": "b7e53cbf-ccc7-408c-93ee-9004e84959b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41883,7 +43943,7 @@ "type": "text/plain" }, "key": "account-id", - "value": "" + "value": "ef38f94347e94562b5bb8424a56397d8" }, { "disabled": true, @@ -41892,7 +43952,7 @@ "type": "text/plain" }, "key": "segmented-for-identity", - "value": "" + "value": "me" }, { "disabled": true, @@ -41901,7 +43961,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "041727d4-7d95-4779-b891-93cf41e98249,a378c9fa-bae5-494c-804e-a1e30f69f649" }, { "disabled": true, @@ -41937,7 +43997,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -41946,7 +44006,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -41955,7 +44015,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -41985,12 +44045,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0f185f00-f6f3-498c-b3be-24a80f03f1f7", + "id": "4a938ade-f0e7-49fa-812a-aa03c58ce4f3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42008,7 +44068,7 @@ "type": "text/plain" }, "key": "account-id", - "value": "" + "value": "ef38f94347e94562b5bb8424a56397d8" }, { "disabled": true, @@ -42017,7 +44077,7 @@ "type": "text/plain" }, "key": "segmented-for-identity", - "value": "" + "value": "me" }, { "disabled": true, @@ -42026,7 +44086,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "041727d4-7d95-4779-b891-93cf41e98249,a378c9fa-bae5-494c-804e-a1e30f69f649" }, { "disabled": true, @@ -42062,7 +44122,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -42071,7 +44131,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -42080,7 +44140,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -42110,12 +44170,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b4a54c81-d452-4087-8c03-be78121f9270", + "id": "ab37b9d5-93dd-4058-8ce8-464f936fe293", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42133,7 +44193,7 @@ "type": "text/plain" }, "key": "account-id", - "value": "" + "value": "ef38f94347e94562b5bb8424a56397d8" }, { "disabled": true, @@ -42142,7 +44202,7 @@ "type": "text/plain" }, "key": "segmented-for-identity", - "value": "" + "value": "me" }, { "disabled": true, @@ -42151,7 +44211,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "041727d4-7d95-4779-b891-93cf41e98249,a378c9fa-bae5-494c-804e-a1e30f69f649" }, { "disabled": true, @@ -42187,7 +44247,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -42196,7 +44256,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -42205,7 +44265,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -42235,12 +44295,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f15aa41-1b33-41b2-a6be-9c137bd01acc", + "id": "8e5d9081-bb78-4bd3-9b92-b5362f92ddef", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42258,7 +44318,7 @@ "type": "text/plain" }, "key": "account-id", - "value": "" + "value": "ef38f94347e94562b5bb8424a56397d8" }, { "disabled": true, @@ -42267,7 +44327,7 @@ "type": "text/plain" }, "key": "segmented-for-identity", - "value": "" + "value": "me" }, { "disabled": true, @@ -42276,7 +44336,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "041727d4-7d95-4779-b891-93cf41e98249,a378c9fa-bae5-494c-804e-a1e30f69f649" }, { "disabled": true, @@ -42312,7 +44372,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -42321,7 +44381,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -42330,7 +44390,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -42360,7 +44420,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -42371,7 +44431,7 @@ } }, { - "id": "5232ab05-1de4-4f50-9474-7da37d67f273", + "id": "5c58f568-c111-4e3e-ac14-e83a0a0fcc98", "name": "Get an entitlement", "request": { "name": "Get an entitlement", @@ -42391,7 +44451,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808874ff91550175097daaec161c", "key": "id", "disabled": true, "description": { @@ -42412,7 +44472,7 @@ }, "response": [ { - "id": "2b288e29-fe44-456f-94d1-2f4b5fd77be4", + "id": "826996f9-1b71-4ca5-a4ed-9e3e7a60e68d", "name": "An entitlement", "originalRequest": { "url": { @@ -42451,12 +44511,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"nisicc\": 23480674,\n \"elit7\": \"deserunt et\"\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n}", + "body": "{\n \"sourceSchemaObjectType\": \"group\",\n \"attribute\": \"memberOf\",\n \"attributes\": {\n \"GroupType\": \"Security\",\n \"sAMAccountName\": \"LauncherTest1\",\n \"GroupScope\": \"Global\",\n \"objectguid\": \"{01a6e70b-9705-4155-a5c6-492a9bcc8c64}\",\n \"objectSid\": \"S-1-5-21-3585869415-1648031554-2909195034-1633\",\n \"cn\": \"LauncherTest1\",\n \"msDS-PrincipalName\": \"AUTOMATIONAD\\\\LauncherTest1\"\n },\n \"value\": \"CN=LauncherTest1,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"description\": \"some description\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180877504c40e0175097d5ce707c8\",\n \"name\": \"EndToEnd-ADSource\"\n },\n \"owner\": {\n \"id\": \"2c9180858315595501831958427e5424\",\n \"name\": \"Addie Smith\",\n \"type\": \"IDENTITY\"\n },\n \"segments\": [\n \"1d126fe0-45e2-4aea-bc64-a07e9344ef26\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n },\n \"id\": \"2c91808c74ff913f0175097daa9d59cd\",\n \"name\": \"LauncherTest1\",\n \"created\": \"2020-10-08T18:33:52.029Z\",\n \"modified\": \"2021-01-19T16:53:35.707Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "39734686-b4d0-45a7-852d-428d500e1bf0", + "id": "e1a9b41c-1bf3-4b8d-bb1d-117a0fc03967", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42495,12 +44555,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "31f15bf4-d1d0-428f-8690-3a69dd8fe4bb", + "id": "900d01fa-c236-4940-a59b-e23f10d4f4eb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42539,12 +44599,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0145d6ab-2013-43d0-8ca5-582c9510e0d6", + "id": "73f3f7bd-f6ed-4b23-9e3a-f2c045be7656", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42583,12 +44643,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "73a0af01-4389-4801-8db0-9b502a431c38", + "id": "6c564aa4-9e22-485f-80d0-4ad98c0f1905", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42627,12 +44687,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e370869c-5c15-4f96-a4d5-f3cbe703120c", + "id": "a0582f84-5969-4c1b-bfb0-eddc6632636e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42671,12 +44731,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b5a068d8-3189-40a8-8532-a987f798b128", + "id": "b20c3e53-4c13-4b70-bb21-f54b92af6426", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42715,7 +44775,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -42726,7 +44786,7 @@ } }, { - "id": "292f75f5-5ba9-4a4a-b25d-84679df30d65", + "id": "d12f7fc2-9a79-4727-a848-f13e994b7275", "name": "Patch an entitlement", "request": { "name": "Patch an entitlement", @@ -42746,7 +44806,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808a7813090a017814121e121518", "key": "id", "disabled": true, "description": { @@ -42769,7 +44829,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/requestable\",\n \"value\": true\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -42780,8 +44840,8 @@ }, "response": [ { - "id": "2878a215-9db5-4a35-8280-8b44e06c97a2", - "name": "Responds with the entitlement as updated.", + "id": "4f200182-8602-441c-9ac9-65f6a22884c3", + "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { "path": [ @@ -42815,7 +44875,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/requestable\",\n \"value\": true\n },\n {\n \"op\": \"replace\",\n \"path\": \"/privileged\",\n \"value\": true\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -42832,13 +44892,13 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"nisicc\": 23480674,\n \"elit7\": \"deserunt et\"\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n}", + "body": "CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "acf9dd81-0079-4078-bb87-f6e9cbd55207", - "name": "Client Error - Returned if the request body is invalid.", + "id": "4011b4b3-6fa2-4830-8d0d-c276e69b07c5", + "name": "Assign an entitlement to a segment", "originalRequest": { "url": { "path": [ @@ -42872,7 +44932,349 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/segments/-\",\n \"value\": \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "b160f187-69d9-449a-bf82-8f411c266bad", + "name": "Assign an owner to an entitlement", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180858315595501831958427e5424\"\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "b98d8cd1-6833-4098-98cf-3b86d97a6e87", + "name": "Replace an owner for an entitlement", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180858315595501831958427e5424\"\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "8b53833e-b31c-4c68-9b82-6a02e1802063", + "name": "Set entitlement manually updated fields", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/manuallyUpdatedFields\",\n \"value\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "43864c44-7951-49ed-a89a-985624c006e2", + "name": "Add the description for an entitlement", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/description\",\n \"value\": \"new description for the entitlement\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "295fe727-059c-436d-86fe-1eacf97d654a", + "name": "Update the name for an entitlement", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"entitlement new name\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "3a57215e-8b3a-4c1c-8046-854810ce9507", + "name": "Assign an entitlement to a segment", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/segments/-\",\n \"value\": \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -42889,13 +45291,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "151c3d4e-c0ed-4b60-9b39-a13ac2d8b7ea", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "c2276356-af1b-48c5-b655-b25e4a4f2fc9", + "name": "Assign an owner to an entitlement", "originalRequest": { "url": { "path": [ @@ -42929,7 +45331,292 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180858315595501831958427e5424\"\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "7bbffe75-5748-4b3e-8ed8-1030a2245dbd", + "name": "Replace an owner for an entitlement", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180858315595501831958427e5424\"\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ad876311-cacb-4189-9fa0-632952dd58c7", + "name": "Set entitlement manually updated fields", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/manuallyUpdatedFields\",\n \"value\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "9ed3421a-c0b2-498f-8b26-d87ed3240924", + "name": "Add the description for an entitlement", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/description\",\n \"value\": \"new description for the entitlement\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "cac5f07c-4173-4510-9cc7-78b80ebb87af", + "name": "Update the name for an entitlement", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"entitlement new name\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ddff3b12-64d6-4b33-a282-133145611034", + "name": "Assign an owner to an entitlement", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180858315595501831958427e5424\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -42946,13 +45633,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "afec75ac-1e14-42aa-8d58-db4a5063a5b2", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "1b5adc5f-d8e8-4b11-ba9e-74bcd972d057", + "name": "Replace an owner for an entitlement", "originalRequest": { "url": { "path": [ @@ -42986,7 +45673,235 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180858315595501831958427e5424\"\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ff74b70d-d190-4fa5-8110-2e5f778a5820", + "name": "Set entitlement manually updated fields", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/manuallyUpdatedFields\",\n \"value\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "30ba88f1-9544-4de6-b623-5660b057c901", + "name": "Add the description for an entitlement", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/description\",\n \"value\": \"new description for the entitlement\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "fea055c3-c34f-4c9b-bf1e-e68f8c22ab76", + "name": "Update the name for an entitlement", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"entitlement new name\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "9c79623b-5ba7-4960-b5c6-cd2883b38280", + "name": "An example of a 403 response object", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180858315595501831958427e5424\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -43003,13 +45918,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "efb4e2a7-ac04-47a2-8e93-608a7715452f", - "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "id": "0dfac9ca-92ea-4dba-a4e5-7b6ab8eb3807", + "name": "Set entitlement manually updated fields", "originalRequest": { "url": { "path": [ @@ -43043,7 +45958,178 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/manuallyUpdatedFields\",\n \"value\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "05f6b2d2-ada8-4684-9fc8-40e7a6a7999a", + "name": "Add the description for an entitlement", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/description\",\n \"value\": \"new description for the entitlement\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "41be3e93-3cb3-4b53-8d18-03979a14e091", + "name": "Update the name for an entitlement", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"entitlement new name\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "cbb3c1a0-d7bb-4d2d-af5e-532dddf4478d", + "name": "An example of a 404 response object", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/manuallyUpdatedFields\",\n \"value\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -43060,13 +46146,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "832523d7-cbed-419e-b9c0-39737ec21584", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "2099103a-7e5d-4dfc-ae2a-a5cb149a86a9", + "name": "Add the description for an entitlement", "originalRequest": { "url": { "path": [ @@ -43100,7 +46186,121 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/description\",\n \"value\": \"new description for the entitlement\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Not Found", + "code": 404, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"404 Not found\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server did not find a current representation for the target resource.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "bc2694be-2538-4868-83e0-8f4ceb17ba5f", + "name": "Update the name for an entitlement", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"entitlement new name\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Not Found", + "code": 404, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"404 Not found\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server did not find a current representation for the target resource.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "0a4e8a9a-e60c-435f-8c88-211eb2217f64", + "name": "Add the description for an entitlement", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/description\",\n \"value\": \"new description for the entitlement\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -43117,13 +46317,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ee06e00-b1da-48f7-8432-be51613401b6", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "39bd1ae1-bf94-4756-80f0-077918ca1fa9", + "name": "Update the name for an entitlement", "originalRequest": { "url": { "path": [ @@ -43157,7 +46357,64 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"entitlement new name\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "f368ded8-2404-4d78-8d03-64ebdc1d705a", + "name": "An example of a 500 response object", + "originalRequest": { + "url": { + "path": [ + "entitlements", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"entitlement new name\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -43174,7 +46431,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -43185,7 +46442,7 @@ } }, { - "id": "cf215a8a-263e-4820-b851-b6b879ece939", + "id": "3dd5352f-e553-4b3a-8729-64ca5c3e9a30", "name": "List of entitlements parents", "request": { "name": "List of entitlements parents", @@ -43228,7 +46485,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -43237,7 +46494,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -43246,13 +46503,13 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [ { "type": "any", - "value": "", + "value": "2c91808c74ff913f0175097daa9d59cd", "key": "id", "disabled": true, "description": { @@ -43273,7 +46530,7 @@ }, "response": [ { - "id": "c76b8a65-bc7e-488c-8db8-26e8f7e97a40", + "id": "4c42f02c-2d0f-450b-be3b-5718acc1db2a", "name": "List of entitlements parents from an entitlement", "originalRequest": { "url": { @@ -43311,7 +46568,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -43320,7 +46577,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -43329,7 +46586,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -43359,12 +46616,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"dolore_59a\": -14064548.001217768,\n \"ad_0\": 88792807\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"reprehenderit_bb\": 84438357.51621753\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", + "body": "[\n {\n \"sourceSchemaObjectType\": \"group\",\n \"attribute\": \"memberOf\",\n \"attributes\": {\n \"GroupType\": \"Security\",\n \"sAMAccountName\": \"LauncherTest1\",\n \"GroupScope\": \"Global\",\n \"objectguid\": \"{01a6e70b-9705-4155-a5c6-492a9bcc8c64}\",\n \"objectSid\": \"S-1-5-21-3585869415-1648031554-2909195034-1633\",\n \"cn\": \"LauncherTest1\",\n \"msDS-PrincipalName\": \"AUTOMATIONAD\\\\LauncherTest1\"\n },\n \"value\": \"CN=LauncherTest1,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"description\": \"some description\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180877504c40e0175097d5ce707c8\",\n \"name\": \"EndToEnd-ADSource\"\n },\n \"owner\": {\n \"id\": \"2a2fdacca5e345f18bf7970cfbb8fec2\",\n \"name\": \"identity 1\",\n \"type\": \"IDENTITY\"\n },\n \"segments\": [\n \"1d126fe0-45e2-4aea-bc64-a07e9344ef26\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n },\n \"id\": \"2c91808c74ff913f0175097daa9d59cd\",\n \"name\": \"LauncherTest1\",\n \"created\": \"2020-10-08T18:33:52.029Z\",\n \"modified\": \"2021-01-19T16:53:35.707Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "48e4a9c6-e4af-4f9b-9e4f-ab1e0015f58c", + "id": "5a8f10f2-f66a-43ec-b6f6-0d92c6388091", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43402,7 +46659,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -43411,7 +46668,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -43420,7 +46677,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -43450,12 +46707,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fa7a7e82-c210-471a-8b1c-b53f5ddce8ca", + "id": "49a07767-452e-4f1f-a47e-2dee43b1c66a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43493,7 +46750,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -43502,7 +46759,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -43511,7 +46768,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -43541,12 +46798,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2ccf7955-6dc1-494c-9085-35d1049c6f22", + "id": "15cbf464-5c4a-4513-b9d6-6e9be6895cc9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43584,7 +46841,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -43593,7 +46850,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -43602,7 +46859,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -43632,12 +46889,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1d651f8a-40d0-4e46-abf9-00bb8632654a", + "id": "67015f92-ba54-4886-ab82-57678125d232", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43675,7 +46932,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -43684,7 +46941,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -43693,7 +46950,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -43723,12 +46980,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "155d8c08-8991-47d3-9288-6bfb094d59fe", + "id": "7924df98-9c56-40e5-ae8b-008bead4d6be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43766,7 +47023,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -43775,7 +47032,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -43784,7 +47041,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -43814,12 +47071,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "38b89367-89cd-43c0-977d-40907aecf37f", + "id": "e86c4c19-7970-41a9-bb21-77dfe659e334", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43857,7 +47114,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -43866,7 +47123,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -43875,7 +47132,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -43905,7 +47162,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -43916,7 +47173,7 @@ } }, { - "id": "7b417d2e-7c0f-4101-a7fc-d0a3856dd79b", + "id": "38d86b6d-7f4f-4ef7-97fb-4096f4930e25", "name": "List of entitlements children", "request": { "name": "List of entitlements children", @@ -43959,7 +47216,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -43968,7 +47225,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -43977,13 +47234,13 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [ { "type": "any", - "value": "", + "value": "2c91808874ff91550175097daaec161c", "key": "id", "disabled": true, "description": { @@ -44004,7 +47261,7 @@ }, "response": [ { - "id": "5146f73d-68a2-47fb-b540-fc36da9a4911", + "id": "73ec1fc4-971a-447b-9ad1-84f1053a9607", "name": "List of entitlements children from an entitlement", "originalRequest": { "url": { @@ -44042,7 +47299,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -44051,7 +47308,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -44060,7 +47317,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -44090,12 +47347,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"dolore_59a\": -14064548.001217768,\n \"ad_0\": 88792807\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"reprehenderit_bb\": 84438357.51621753\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", + "body": "[\n {\n \"sourceSchemaObjectType\": \"group\",\n \"attribute\": \"memberOf\",\n \"attributes\": {\n \"GroupType\": \"Security\",\n \"sAMAccountName\": \"LauncherTest1\",\n \"GroupScope\": \"Global\",\n \"objectguid\": \"{01a6e70b-9705-4155-a5c6-492a9bcc8c64}\",\n \"objectSid\": \"S-1-5-21-3585869415-1648031554-2909195034-1633\",\n \"cn\": \"LauncherTest1\",\n \"msDS-PrincipalName\": \"AUTOMATIONAD\\\\LauncherTest1\"\n },\n \"value\": \"CN=LauncherTest1,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"description\": \"some description\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180877504c40e0175097d5ce707c8\",\n \"name\": \"EndToEnd-ADSource\"\n },\n \"owner\": {\n \"id\": \"2a2fdacca5e345f18bf7970cfbb8fec2\",\n \"name\": \"identity 1\",\n \"type\": \"IDENTITY\"\n },\n \"segments\": [\n \"1d126fe0-45e2-4aea-bc64-a07e9344ef26\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n },\n \"id\": \"2c91808c74ff913f0175097daa9d59cd\",\n \"name\": \"LauncherTest1\",\n \"created\": \"2020-10-08T18:33:52.029Z\",\n \"modified\": \"2021-01-19T16:53:35.707Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4619a961-9797-4672-b63a-0e21fe413d22", + "id": "5826277a-2ec0-4717-a667-b0a95e82e06d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44133,7 +47390,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -44142,7 +47399,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -44151,7 +47408,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -44181,12 +47438,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "975885f6-8adc-43ae-b78f-f1c63b5c96a6", + "id": "8f198445-f746-4238-a71d-75ac4e373788", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44224,7 +47481,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -44233,7 +47490,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -44242,7 +47499,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -44272,12 +47529,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2f6f84e2-f28f-4d5b-b87b-eab49629b12a", + "id": "476c733f-0ee3-4646-82ad-4bb060fd1469", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44315,7 +47572,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -44324,7 +47581,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -44333,7 +47590,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -44363,12 +47620,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f7f43a1e-d897-4073-ad96-a0dae893d7ac", + "id": "f8be09dd-d7f0-42fe-bb1c-aa9f1e8e0908", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44406,7 +47663,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -44415,7 +47672,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -44424,7 +47681,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -44454,12 +47711,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1be9b031-e549-42c6-adb6-94c975e35a6f", + "id": "daceb044-69e0-49bb-8254-a769797ab621", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44497,7 +47754,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -44506,7 +47763,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -44515,7 +47772,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -44545,12 +47802,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b2e705c0-55cb-4234-b29d-41781d839280", + "id": "f22c9218-48fd-477a-b51f-d31031511042", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44588,7 +47845,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -44597,7 +47854,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -44606,7 +47863,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" } ], "variable": [] @@ -44636,7 +47893,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -44647,7 +47904,7 @@ } }, { - "id": "defdde59-aff0-4086-9884-2899fb31ed1d", + "id": "e4d06a2b-21d5-47be-9531-9acb0f1544ae", "name": "Bulk update an entitlement list", "request": { "name": "Bulk update an entitlement list", @@ -44679,7 +47936,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\",\n \"2c91808a7624751a01762f19d692220f\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"replace\",\n \"path\": \"/privileged\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/requestable\",\n \"value\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -44690,7 +47947,7 @@ }, "response": [ { - "id": "6128bf60-1a45-4ca3-a763-88c4802f5320", + "id": "c622c17e-8607-4c6c-9c38-3e1ccdebe4e8", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -44721,7 +47978,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\",\n \"2c91808a7624751a01762f19d692220f\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"replace\",\n \"path\": \"/privileged\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/requestable\",\n \"value\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -44737,7 +47994,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b0fa70e3-9933-47bb-af09-cf2758f71155", + "id": "cb2721be-6955-4463-aa6b-4913c65e251b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44772,7 +48029,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\",\n \"2c91808a7624751a01762f19d692220f\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"replace\",\n \"path\": \"/privileged\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/requestable\",\n \"value\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -44789,12 +48046,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "cd123ed5-87c5-4ebb-a22a-e5a27d931b07", + "id": "ef0201f4-5e6e-4ce9-8b19-efc012b01803", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44829,7 +48086,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\",\n \"2c91808a7624751a01762f19d692220f\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"replace\",\n \"path\": \"/privileged\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/requestable\",\n \"value\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -44846,12 +48103,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a555a2d-52e3-4794-be4e-34b8451e0e0c", + "id": "ca028c92-ac35-4ce3-827c-aa7ab84fee99", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44886,7 +48143,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\",\n \"2c91808a7624751a01762f19d692220f\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"replace\",\n \"path\": \"/privileged\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/requestable\",\n \"value\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -44903,12 +48160,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "22efd397-2c4f-4117-a116-cabd04448c31", + "id": "2e9e5fe6-cf18-4cf7-8c20-b2232932f928", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44943,7 +48200,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\",\n \"2c91808a7624751a01762f19d692220f\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"replace\",\n \"path\": \"/privileged\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/requestable\",\n \"value\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -44960,12 +48217,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cd1110a2-1a79-4f95-a6fe-84b1ad50257b", + "id": "fc558fc9-ba18-4938-8ca2-511633870e4e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45000,7 +48257,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\",\n \"2c91808a7624751a01762f19d692220f\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"replace\",\n \"path\": \"/privileged\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/requestable\",\n \"value\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -45017,7 +48274,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -45028,7 +48285,7 @@ } }, { - "id": "132874f9-7918-4466-8a8f-f39baa007d31", + "id": "fce9d754-3d3c-4199-9610-5309410b4d5c", "name": "Get Entitlement Request Config", "request": { "name": "Get Entitlement Request Config", @@ -45049,7 +48306,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808874ff91550175097daaec161c", "key": "id", "disabled": true, "description": { @@ -45070,7 +48327,7 @@ }, "response": [ { - "id": "a2b17902-763c-44af-89c1-9c0a9a5776e2", + "id": "6030b7e9-0ec3-4ca0-9a88-81be2abf25d9", "name": "An Entitlement Request Config", "originalRequest": { "url": { @@ -45110,12 +48367,12 @@ "value": "application/json" } ], - "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "body": "{\n \"accessRequestConfig\": {\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": null\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": null\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": null\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "01c06ab2-4caa-43a6-923f-a490f00df3f9", + "id": "43a0c59f-16dc-434c-9184-a603fad552ff", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45155,12 +48412,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bb10caac-c79f-403f-80ac-2beee479bde0", + "id": "137731b3-0ccc-4a67-abc3-64d36c67cb24", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45200,12 +48457,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a9383177-5bbe-4ae8-b85d-acdb83692ab0", + "id": "312624c5-3435-43b5-ba01-60a6053246e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45245,12 +48502,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4ef7ce92-b5c8-4d1d-a329-7d04976b19e9", + "id": "0f9e3c5d-8aa9-4f3d-991d-e83f6b6cb844", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45290,12 +48547,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7b1953c0-b8cd-4a99-951e-96a7285e006a", + "id": "689abd7a-93dc-465e-a09e-2463250bbfb1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45335,12 +48592,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c331901-93b4-4dd6-bfe5-f74efa496011", + "id": "9492c1b0-f58c-42d4-9710-71b42892b1f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45380,7 +48637,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -45391,7 +48648,7 @@ } }, { - "id": "4bb51d2d-0ce6-4ad7-ab04-346893eb5521", + "id": "1ba30ee5-9fb3-4e0d-84c0-7940866e49b8", "name": "Replace Entitlement Request Config", "request": { "name": "Replace Entitlement Request Config", @@ -45412,7 +48669,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808a7813090a017814121e121518", "key": "id", "disabled": true, "description": { @@ -45435,7 +48692,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45446,7 +48703,7 @@ }, "response": [ { - "id": "4924b6e9-efb6-48dc-96bb-96aea5f1866b", + "id": "8050a0fa-6e0a-4cb4-a1d3-7886b6ca7b28", "name": "Responds with the entitlement request config as updated.", "originalRequest": { "url": { @@ -45482,7 +48739,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45499,12 +48756,12 @@ "value": "application/json" } ], - "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "body": "{\n \"accessRequestConfig\": {\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": null\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": null\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": null\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c3aa360-34d2-452d-a5ef-dc8ae4b201f5", + "id": "9d5a3734-56c1-4906-9d21-c979d8ef8a9f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45540,7 +48797,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45557,12 +48814,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b0687f86-48e2-4326-a2bd-9b03eefcbc85", + "id": "53a3af31-3e14-4591-8016-4015b1504613", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45598,7 +48855,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45615,12 +48872,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b03b583b-e7d6-4e84-ad10-b7d376e4ba5f", + "id": "df0b349a-2204-48fa-acff-301398983091", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45656,7 +48913,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45673,12 +48930,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "907a2d67-276a-436c-9858-351b836dbf5d", + "id": "f6673441-4073-45b4-87b6-0b0227ab8198", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45714,7 +48971,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45731,12 +48988,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2564aeb8-59a5-4d75-85b0-efc2c89ac31c", + "id": "19779229-52d0-4325-8a8a-1761543d469c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45772,7 +49029,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45789,12 +49046,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "961d3700-7ea9-410d-8c24-584a8ee6b051", + "id": "8fcd48bb-3b24-464f-9d7a-ee1c9b8d571b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45830,7 +49087,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45847,7 +49104,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -45864,7 +49121,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": "ca4012cd-6641-4d45-bf3a-4e21229f4780", + "id": "a6ca0488-c6ba-4273-b419-5a8892a84284", "name": "List Governance Groups", "request": { "name": "List Governance Groups", @@ -45905,7 +49162,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -45914,7 +49171,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Test\"" }, { "disabled": true, @@ -45923,7 +49180,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -45939,7 +49196,7 @@ }, "response": [ { - "id": "880b151d-c148-46d9-bef8-72fb529e7ccb", + "id": "7c4a6ba5-69ff-4b98-86b2-096a9ffa9498", "name": "List of Governance Groups", "originalRequest": { "url": { @@ -45975,7 +49232,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -45984,7 +49241,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Test\"" }, { "disabled": true, @@ -45993,7 +49250,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -46023,12 +49280,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n },\n {\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n }\n]", + "body": "[\n {\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"DB Access Governance Group\",\n \"description\": \"Description of the Governance Group\",\n \"memberCount\": 1641498673000,\n \"connectionCount\": 1641498673000\n },\n {\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"DB Access Governance Group\",\n \"description\": \"Description of the Governance Group\",\n \"memberCount\": 1641498673000,\n \"connectionCount\": 1641498673000\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "43955671-1006-44f1-983c-10440cac31eb", + "id": "85088b0c-2852-4250-9fa9-0cdc5a65fad4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46064,7 +49321,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -46073,7 +49330,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Test\"" }, { "disabled": true, @@ -46082,7 +49339,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -46112,12 +49369,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bdd5d364-793b-402c-81a4-384d2460d97b", + "id": "daff7723-1883-4252-96c3-0d0f27751afc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46153,7 +49410,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -46162,7 +49419,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Test\"" }, { "disabled": true, @@ -46171,7 +49428,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -46201,12 +49458,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3888b946-75ff-4b5e-bbea-091369dad4a3", + "id": "c6770e53-555e-4d08-a5c4-c75483710587", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46242,7 +49499,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -46251,7 +49508,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Test\"" }, { "disabled": true, @@ -46260,7 +49517,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -46290,12 +49547,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5525d8d7-7409-4b91-bfe8-ada28e44ff30", + "id": "5d0c7863-844b-4959-b764-1f77683e08a4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46331,7 +49588,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -46340,7 +49597,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Test\"" }, { "disabled": true, @@ -46349,7 +49606,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -46379,12 +49636,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2529605-484f-4cb6-9f7f-a957ac70b548", + "id": "00bbda8d-c648-415e-8e7b-4a6f88c11fbd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46420,7 +49677,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -46429,7 +49686,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Test\"" }, { "disabled": true, @@ -46438,7 +49695,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -46468,7 +49725,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -46479,7 +49736,7 @@ } }, { - "id": "fba246f5-f996-458f-847d-63d7c69cc990", + "id": "28dfbda4-7367-4315-bea0-ddfe4793b24d", "name": "Create a new Governance Group.", "request": { "name": "Create a new Governance Group.", @@ -46510,7 +49767,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"DB Access Governance Group\",\n \"description\": \"Description of the Governance Group\",\n \"memberCount\": 1641498673000,\n \"connectionCount\": 1641498673000\n}", "options": { "raw": { "headerFamily": "json", @@ -46521,7 +49778,7 @@ }, "response": [ { - "id": "9c7da2f1-7ef4-4e63-9afe-8fe5d89505b5", + "id": "183b9698-4b37-43ba-aa83-9701aef23f1b", "name": "Governance Group object created.", "originalRequest": { "url": { @@ -46555,7 +49812,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"DB Access Governance Group\",\n \"description\": \"Description of the Governance Group\",\n \"memberCount\": 1641498673000,\n \"connectionCount\": 1641498673000\n}", "options": { "raw": { "headerFamily": "json", @@ -46572,12 +49829,12 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"DB Access Governance Group\",\n \"description\": \"Description of the Governance Group\",\n \"memberCount\": 1641498673000,\n \"connectionCount\": 1641498673000\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f45287ee-82f1-4ade-850f-438c94d3b94e", + "id": "5b3be83c-f579-459e-999f-c8863dc9d841", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46611,7 +49868,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"DB Access Governance Group\",\n \"description\": \"Description of the Governance Group\",\n \"memberCount\": 1641498673000,\n \"connectionCount\": 1641498673000\n}", "options": { "raw": { "headerFamily": "json", @@ -46628,12 +49885,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2d27c24d-9b1b-40ab-ae0c-57922014d2a8", + "id": "91007440-0975-41bf-a084-9cc8a0cedef9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46667,7 +49924,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"DB Access Governance Group\",\n \"description\": \"Description of the Governance Group\",\n \"memberCount\": 1641498673000,\n \"connectionCount\": 1641498673000\n}", "options": { "raw": { "headerFamily": "json", @@ -46684,12 +49941,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04133680-d5d3-44f8-8382-3c627141a597", + "id": "29ee7450-ed66-4763-8943-4a6f3ab68dd6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46723,7 +49980,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"DB Access Governance Group\",\n \"description\": \"Description of the Governance Group\",\n \"memberCount\": 1641498673000,\n \"connectionCount\": 1641498673000\n}", "options": { "raw": { "headerFamily": "json", @@ -46740,12 +49997,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "47965a6e-33af-4df9-b3bf-00f3fea90298", + "id": "40412a57-ccfe-4b36-819e-c3988c640aea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46779,7 +50036,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"DB Access Governance Group\",\n \"description\": \"Description of the Governance Group\",\n \"memberCount\": 1641498673000,\n \"connectionCount\": 1641498673000\n}", "options": { "raw": { "headerFamily": "json", @@ -46796,12 +50053,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a96e23b3-b8ca-48c0-ab5d-71a0ca574a57", + "id": "eced7d22-8e1e-4d0b-91da-31a0a7b4090f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46835,7 +50092,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"DB Access Governance Group\",\n \"description\": \"Description of the Governance Group\",\n \"memberCount\": 1641498673000,\n \"connectionCount\": 1641498673000\n}", "options": { "raw": { "headerFamily": "json", @@ -46852,7 +50109,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -46863,7 +50120,7 @@ } }, { - "id": "7fe1337e-b448-4bb8-8d3a-12e50695cab4", + "id": "ad6327f5-7671-4da1-a8f9-5fb4095e2438", "name": "Get Governance Group by Id", "request": { "name": "Get Governance Group by Id", @@ -46883,7 +50140,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180837ca6693d017ca8d097500149", "key": "id", "disabled": true, "description": { @@ -46904,7 +50161,7 @@ }, "response": [ { - "id": "25806f8c-de87-4ac6-a097-589d740da8aa", + "id": "67d0d210-34e5-440e-b4b2-67d97fdf598e", "name": "A Governance Group", "originalRequest": { "url": { @@ -46943,12 +50200,12 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"DB Access Governance Group\",\n \"description\": \"Description of the Governance Group\",\n \"memberCount\": 1641498673000,\n \"connectionCount\": 1641498673000\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c61a847f-605b-4835-8f35-5fd12d874d0b", + "id": "b9eb4230-c499-4401-a55c-6c086ab54bf4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46987,12 +50244,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "81f2297e-cdfa-4cb9-8eea-c16f97865d50", + "id": "4ce09889-9c10-47be-a815-55db8b47d84e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47031,12 +50288,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af8d76da-b3e4-4b59-99a8-3750ab1b58e3", + "id": "b202cb33-1102-4230-b195-39e9ce32b936", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47075,12 +50332,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a60c795a-bf3a-496e-a8b8-bdf657d73107", + "id": "047af886-9af2-4a0a-a1a3-7097a8c29536", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47119,12 +50376,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ae3a48a4-6137-46b9-b65a-e4e7b2359eb1", + "id": "d1e86eea-337f-4295-a058-f3581224184e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47163,7 +50420,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -47174,7 +50431,7 @@ } }, { - "id": "e5c04c77-e434-47e5-8f96-f89094af0eca", + "id": "a36e946f-adbf-4545-a2ca-0af839a7a435", "name": "Delete a Governance Group", "request": { "name": "Delete a Governance Group", @@ -47194,7 +50451,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180837ca6693d017ca8d097500149", "key": "id", "disabled": true, "description": { @@ -47215,7 +50472,7 @@ }, "response": [ { - "id": "91621eba-ce44-4969-b971-66549fa2f4e1", + "id": "d29a46a5-016a-438c-80d7-df440b923a7d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -47249,7 +50506,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f729fa99-8174-476b-b600-447088a2d984", + "id": "6c653167-8fba-413b-bf33-7ad9dfea095b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47288,12 +50545,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "74792e65-b933-41bb-9fd3-4b7d211487ec", + "id": "7c70cda4-20fa-48e1-b645-23556f65087f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47332,12 +50589,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "710ceb10-d0e4-4177-9fb1-6ccbff32c8ed", + "id": "66292e18-5caf-4099-848a-8e83b0a628b4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47376,12 +50633,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "495c1591-c2c4-4243-8fa8-91583457049c", + "id": "7ac81a9c-d1ac-4c63-896a-982506ea5e2e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47420,12 +50677,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7813e3a8-539d-4f43-8ac6-0995aa037cbd", + "id": "cd8ee750-976e-47eb-a341-d18561d62222", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47464,7 +50721,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -47475,7 +50732,7 @@ } }, { - "id": "dc62fe45-2518-4339-9ef1-5443da5c0efa", + "id": "b79282e0-b8bb-4b10-9a7c-3a81a9e95ff4", "name": "Patch a Governance Group", "request": { "name": "Patch a Governance Group", @@ -47495,7 +50752,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180837ca6693d017ca8d097500149", "key": "id", "disabled": true, "description": { @@ -47518,7 +50775,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Governance Group new description.\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -47529,7 +50786,7 @@ }, "response": [ { - "id": "2dd927d0-1c0f-4104-9de1-f0793fb4d3de", + "id": "854dd2a1-cffc-43cb-935c-446ad8810cdc", "name": "A Governance Group.", "originalRequest": { "url": { @@ -47564,7 +50821,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Governance Group new description.\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -47581,12 +50838,12 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "body": "{\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"DB Access Governance Group\",\n \"description\": \"Description of the Governance Group\",\n \"memberCount\": 1641498673000,\n \"connectionCount\": 1641498673000\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1251d1ec-9329-4de4-a5d8-e67bf55515c2", + "id": "f0811315-8d6b-458c-b89f-2dd5071c80e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47621,7 +50878,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Governance Group new description.\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -47638,12 +50895,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9bbecde9-3daf-43ca-93fa-f4cd85286ca3", + "id": "22ebb12b-15a4-45b9-be81-c51d162bbb54", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47678,7 +50935,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Governance Group new description.\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -47695,12 +50952,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad95feaf-1738-45cb-a292-0c6f684c4217", + "id": "f06df25f-2b96-498c-b82b-88ed8baed574", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47735,7 +50992,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Governance Group new description.\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -47752,12 +51009,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e693ab05-4e9e-4bad-9cf3-a0c5f66a67d7", + "id": "0f1bb7c0-3f40-4849-9d78-e443a03fea47", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47792,7 +51049,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Governance Group new description.\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -47809,12 +51066,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e045846e-ce6f-4be3-b6ce-ab78d2f381f2", + "id": "3f114152-c47d-413a-8331-af283e19a62f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47849,7 +51106,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Governance Group new description.\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -47866,7 +51123,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -47877,7 +51134,7 @@ } }, { - "id": "ad1c95b8-fdc5-427e-a594-1c290a04fc71", + "id": "06cce90f-cc11-43ff-8a91-abf2bb546e19", "name": "Delete Governance Group(s)", "request": { "name": "Delete Governance Group(s)", @@ -47909,7 +51166,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"567a697e-885b-495a-afc5-d55e1c23a302\",\n \"c7b0f7b2-1e78-4063-b294-a555333dacd2\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -47920,7 +51177,7 @@ }, "response": [ { - "id": "f8c1791e-a75b-4c96-9160-2bbef5165474", + "id": "0cb5e559-a82b-4da4-a548-b4d612710b17", "name": "Governance Group bulk delete response.", "originalRequest": { "url": { @@ -47955,7 +51212,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"567a697e-885b-495a-afc5-d55e1c23a302\",\n \"c7b0f7b2-1e78-4063-b294-a555333dacd2\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -47972,12 +51229,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"status\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"status\": \"\",\n \"description\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"status\": \"204\",\n \"description\": \"Governance Group deleted successfully.\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b802901b-ed69-4768-b3d0-19ab7c0c8b30", + "id": "ee5257dc-5ce5-4aee-a1c0-d0097537659e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48012,7 +51269,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"567a697e-885b-495a-afc5-d55e1c23a302\",\n \"c7b0f7b2-1e78-4063-b294-a555333dacd2\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -48029,12 +51286,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "11616e5b-cba4-49da-a634-e406b5023506", + "id": "f1bb03a9-90b7-4093-8e8e-2e30735394dd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48069,7 +51326,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"567a697e-885b-495a-afc5-d55e1c23a302\",\n \"c7b0f7b2-1e78-4063-b294-a555333dacd2\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -48086,12 +51343,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "369ba83b-3b2d-4e25-908d-586236bd4ea2", + "id": "794a68d0-a2e5-421f-8944-75c45a5c7ebf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48126,7 +51383,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"567a697e-885b-495a-afc5-d55e1c23a302\",\n \"c7b0f7b2-1e78-4063-b294-a555333dacd2\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -48143,12 +51400,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "14bd8542-53c9-48e2-89f1-acfd6515960f", + "id": "f5ef66b3-773c-4c29-aa4b-6f1da55decac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48183,7 +51440,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"567a697e-885b-495a-afc5-d55e1c23a302\",\n \"c7b0f7b2-1e78-4063-b294-a555333dacd2\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -48200,12 +51457,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3d3d6a8a-9a73-4efd-b61b-bf3f18afdf0d", + "id": "ebdec48a-e652-41cc-b525-b51b6e81276e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48240,7 +51497,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"567a697e-885b-495a-afc5-d55e1c23a302\",\n \"c7b0f7b2-1e78-4063-b294-a555333dacd2\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -48257,7 +51514,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -48268,7 +51525,7 @@ } }, { - "id": "c0f3c273-6636-474b-85ee-80aef341b616", + "id": "34768675-c6b6-4be5-a3fc-416e86dd4b69", "name": "List connections for Governance Group", "request": { "name": "List connections for Governance Group", @@ -48311,7 +51568,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -48320,13 +51577,13 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [ { "type": "any", - "value": "", + "value": "2c91808a7813090a017814121919ecca", "key": "workgroupId", "disabled": true, "description": { @@ -48347,7 +51604,7 @@ }, "response": [ { - "id": "d1559903-5609-4dbe-8d82-3ce12a5796cb", + "id": "49a92e1b-9301-498b-9d07-ee308bb93171", "name": "List all connections associated with a Governance Group.", "originalRequest": { "url": { @@ -48385,7 +51642,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -48394,7 +51651,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -48424,12 +51681,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"object\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"connectionType\": \"Owner\"\n },\n {\n \"object\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"connectionType\": \"AccessRequestReviewer\"\n }\n]", + "body": "[\n {\n \"object\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Employee-database-read-write\",\n \"description\": \"Collection of entitlements to read/write the employee database.\"\n },\n \"connectionType\": \"AccessRequestReviewer\"\n },\n {\n \"object\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Employee-database-read-write\",\n \"description\": \"Collection of entitlements to read/write the employee database.\"\n },\n \"connectionType\": \"AccessRequestReviewer\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b268b9d4-e5dc-4101-9476-71c45bdfaf14", + "id": "80c1b2ce-6e2d-4a3f-bd7d-6be131ebcb0a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48467,7 +51724,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -48476,7 +51733,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -48506,12 +51763,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "50dcfaf0-48e8-4352-9153-af009d03f9b8", + "id": "5cd84042-b016-4532-9202-9b2ccc30b08d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48549,7 +51806,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -48558,7 +51815,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -48588,12 +51845,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "50730a72-208c-4947-8b8c-f9e3b601d7d1", + "id": "3fe991c6-4853-43ee-b693-03d704eac2bf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48631,7 +51888,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -48640,7 +51897,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -48670,12 +51927,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5d2ad3c4-27b1-40df-949e-c5358a483a6f", + "id": "2fac5897-fe65-44a0-8a16-2557c9580fbe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48713,7 +51970,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -48722,7 +51979,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -48752,12 +52009,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d6475de-2b2d-4877-ae8c-a28dd8115950", + "id": "1565994c-c585-4cc2-ae0c-da309365178f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48795,7 +52052,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -48804,7 +52061,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -48834,7 +52091,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -48845,7 +52102,7 @@ } }, { - "id": "44d59de0-412e-4341-a85f-ebdb99d1ea49", + "id": "9bd65564-886a-4313-a673-b8470c1aabb5", "name": "List Governance Group Members", "request": { "name": "List Governance Group Members", @@ -48888,7 +52145,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -48897,13 +52154,13 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [ { "type": "any", - "value": "", + "value": "2c91808a7813090a017814121919ecca", "key": "workgroupId", "disabled": true, "description": { @@ -48924,7 +52181,7 @@ }, "response": [ { - "id": "d7383609-5168-440d-86da-3dd646e235cf", + "id": "cd87259b-fe04-4bb6-ad08-0efab1087212", "name": "List all members associated with a Governance Group.", "originalRequest": { "url": { @@ -48962,7 +52219,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -48971,7 +52228,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -49001,12 +52258,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "body": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "036f0fa8-e1c5-4279-9dda-a0e5593602b0", + "id": "dce93a4a-e138-4448-8fe0-a21b2aaca8b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49044,7 +52301,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -49053,7 +52310,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -49083,12 +52340,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b90cbf28-b683-4b7e-868b-69c2242943b5", + "id": "60039913-4144-4637-bc22-369ff0be8647", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49126,7 +52383,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -49135,7 +52392,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -49165,12 +52422,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "356ff9b1-59af-44c0-a20e-e1811c07309b", + "id": "27b5b65f-ac8c-4215-a1c8-65e0090433c2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49208,7 +52465,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -49217,7 +52474,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -49247,12 +52504,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c41eacbd-d3e9-474a-8df2-7f0be28e781b", + "id": "48d2b4d3-e2d6-4dc2-a07f-5f9c4f6b0bc7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49290,7 +52547,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -49299,7 +52556,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -49329,12 +52586,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "adefb5f2-017d-48a3-b392-a1e7ab57afd0", + "id": "070b04d0-e9a1-4ca4-be33-44b74b7ced9b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49372,7 +52629,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -49381,7 +52638,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -49411,7 +52668,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -49422,7 +52679,7 @@ } }, { - "id": "ecc52150-991a-44fc-9850-12295ed614fe", + "id": "c767d5df-9a82-44e0-a048-2c5ec3c7cab7", "name": "Add members to Governance Group", "request": { "name": "Add members to Governance Group", @@ -49444,7 +52701,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808a7813090a017814121919ecca", "key": "workgroupId", "disabled": true, "description": { @@ -49467,7 +52724,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": \"Addie Smith\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -49478,7 +52735,7 @@ }, "response": [ { - "id": "56d69e5b-ec9e-4ad9-be86-7d695464e2ed", + "id": "fcb147e7-d513-4c76-90c3-43421db248dc", "name": "List of added and not added identities into Governance Group members list.", "originalRequest": { "url": { @@ -49515,7 +52772,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": \"Addie Smith\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -49532,12 +52789,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"status\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"status\": \"\",\n \"description\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"status\": \"201\",\n \"description\": \"Identity added to Governance Group members list.\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3b4ed407-4f62-40c7-a027-9e3f0df3b972", + "id": "f75cf80c-89e0-4ae6-a0b3-1cc68915e310", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49574,7 +52831,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": \"Addie Smith\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -49591,12 +52848,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fcdd7ce6-67e9-4b77-a596-dcdfa859f0e8", + "id": "6f0396a9-704f-4423-b331-d1b345c10397", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49633,7 +52890,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": \"Addie Smith\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -49650,12 +52907,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec22af0f-94df-4721-ba5e-2184f9b51622", + "id": "02e34a54-c554-4f21-89d5-63da76a5fe21", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49692,7 +52949,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": \"Addie Smith\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -49709,12 +52966,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e0e5eaaf-a023-45d3-b2cb-73f147943c13", + "id": "23e833b0-359f-407b-8fbf-25e7d65411a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49751,7 +53008,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": \"Addie Smith\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -49768,12 +53025,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c7e15f4b-75e6-4012-9917-47cc5c4378db", + "id": "85735922-10bc-441a-a4a6-cac8c6d2dba7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49810,7 +53067,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": \"Addie Smith\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -49827,7 +53084,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -49838,7 +53095,7 @@ } }, { - "id": "210d54e7-984d-4607-a855-650722c3e6bb", + "id": "01338609-aed5-4900-9547-807bd38e1268", "name": "Remove members from Governance Group", "request": { "name": "Remove members from Governance Group", @@ -49860,7 +53117,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808a7813090a017814121919ecca", "key": "workgroupId", "disabled": true, "description": { @@ -49883,7 +53140,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": \"Addie Smith\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -49894,7 +53151,7 @@ }, "response": [ { - "id": "c3810b7a-254d-4a2a-a838-be90b333a3da", + "id": "4c42900b-3d3e-4d4e-9f10-feafd8d8a932", "name": "List of deleted and not deleted identities from Governance Group members list.", "originalRequest": { "url": { @@ -49931,7 +53188,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": \"Addie Smith\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -49948,12 +53205,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"status\": \"\",\n \"description\": \"\"\n },\n {\n \"id\": \"\",\n \"status\": \"\",\n \"description\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"status\": \"204\",\n \"description\": \"Identity deleted from Governance Group members list.\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "807c25b8-3628-4d9a-9123-fb18e9630175", + "id": "4a59dff2-ad11-4ae7-8986-0eeb5e69be72", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49990,7 +53247,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": \"Addie Smith\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -50007,12 +53264,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bdf64232-f22e-477c-a0e8-c5a9b8da4c9f", + "id": "8c367a96-be64-47e1-a6f0-69ed3bb6e83e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50049,7 +53306,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": \"Addie Smith\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -50066,12 +53323,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "423dff0e-0e3d-43d4-ac15-ca5aae22910e", + "id": "8277f7a6-deeb-4d1b-bcc7-1196baf9ede6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50108,7 +53365,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": \"Addie Smith\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -50125,12 +53382,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6393543a-882f-4512-866c-724b5ce65e10", + "id": "0a3cce0e-73d7-4317-a37a-026b8c678168", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50167,7 +53424,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": \"Addie Smith\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -50184,12 +53441,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b6a2532c-8e15-47c1-9861-c862b704787a", + "id": "3762b35b-68ac-49dc-9748-9593643b2038", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50226,7 +53483,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "raw": "[\n {\n \"type\": \"IDENTITY\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": \"Addie Smith\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -50243,7 +53500,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -50260,7 +53517,7 @@ "description": "", "item": [ { - "id": "c0c2f6f2-0b5c-4c4e-9372-6425a2a19b32", + "id": "52e9d9da-ea3f-4976-8356-527124f1b775", "name": "Get Message catalogs", "request": { "name": "Get Message catalogs", @@ -50280,7 +53537,7 @@ "variable": [ { "type": "any", - "value": "access-request-recommender", + "value": "recommender", "key": "catalog-id", "disabled": true, "description": { @@ -50301,7 +53558,7 @@ }, "response": [ { - "id": "dfe9c4ca-2d14-4d3e-9488-399217d259ae", + "id": "ba63b1b6-656e-44de-93c8-d8bb16177461", "name": "The message catalogs based on the request headers", "originalRequest": { "url": { @@ -50340,12 +53597,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"locale\": \"\",\n \"messages\": [\n {\n \"key\": \"\",\n \"format\": \"\"\n },\n {\n \"key\": \"\",\n \"format\": \"\"\n }\n ]\n },\n {\n \"locale\": \"\",\n \"messages\": [\n {\n \"key\": \"\",\n \"format\": \"\"\n },\n {\n \"key\": \"\",\n \"format\": \"\"\n }\n ]\n }\n]", + "body": "[\n {\n \"locale\": \"en_US\",\n \"messages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_LOW\",\n \"format\": \"{0,,\\\\\\\"i18n hint: percentage\\\\\\\"}% of identities with the same {1,,\\\\\\\"i18n hint: name of category feature\\\\\\\"} have this access. This information had a low impact on the overall score.\"\n },\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_LOW\",\n \"format\": \"{0,,\\\\\\\"i18n hint: percentage\\\\\\\"}% of identities with the same {1,,\\\\\\\"i18n hint: name of category feature\\\\\\\"} have this access. This information had a low impact on the overall score.\"\n }\n ]\n },\n {\n \"locale\": \"en_US\",\n \"messages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_LOW\",\n \"format\": \"{0,,\\\\\\\"i18n hint: percentage\\\\\\\"}% of identities with the same {1,,\\\\\\\"i18n hint: name of category feature\\\\\\\"} have this access. This information had a low impact on the overall score.\"\n },\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_LOW\",\n \"format\": \"{0,,\\\\\\\"i18n hint: percentage\\\\\\\"}% of identities with the same {1,,\\\\\\\"i18n hint: name of category feature\\\\\\\"} have this access. This information had a low impact on the overall score.\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f35679d-e1d6-41ab-8117-480535255362", + "id": "aa79bb94-412d-4254-85b0-746bd6fa8021", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50384,12 +53641,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "57224b15-a797-4c83-aed6-85f9fc534134", + "id": "f458ead0-6ec8-4367-b378-fdfab384a96d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50428,12 +53685,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "880217d1-6fcb-444b-a4ef-aae7bb90234a", + "id": "eb4f8ae6-79f8-41c8-ac9c-b654f2198a3e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50472,12 +53729,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "98510c7b-2e37-4571-90e0-80361158d1ca", + "id": "fd8446af-9fbb-4a99-bf97-85d6b221d4f3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50516,12 +53773,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "63089cda-9c07-4a7f-81e1-adcbebfd66e8", + "id": "4368aefd-f041-4eca-b9e0-33d113176ee2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50560,7 +53817,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -50577,7 +53834,7 @@ "description": "", "item": [ { - "id": "67138259-4619-4bcc-9aea-776e05a39a1e", + "id": "370f3a89-ab62-4e1f-acbd-57c2dbbc01c7", "name": "Identity Access Request Recommendations", "request": { "name": "Identity Access Request Recommendations", @@ -50600,7 +53857,7 @@ "type": "text/plain" }, "key": "identity-id", - "value": "me" + "value": "2c91808570313110017040b06f344ec9" }, { "disabled": true, @@ -50627,7 +53884,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -50645,7 +53902,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.name co \"admin\"" }, { "disabled": true, @@ -50654,7 +53911,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -50670,7 +53927,7 @@ }, "response": [ { - "id": "6f5a51d9-42ae-476a-abf3-5a72618340fd", + "id": "065f32f2-22a2-4787-b256-da98f34c71ce", "name": "List of access request recommendations for the identityId", "originalRequest": { "url": { @@ -50688,7 +53945,7 @@ "type": "text/plain" }, "key": "identity-id", - "value": "me" + "value": "2c91808570313110017040b06f344ec9" }, { "disabled": true, @@ -50715,7 +53972,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -50733,7 +53990,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.name co \"admin\"" }, { "disabled": true, @@ -50742,7 +53999,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -50772,12 +54029,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"ignored\": \"\",\n \"requested\": \"\",\n \"viewed\": \"\",\n \"messages\": [\n {\n \"interpretation\": \"\"\n },\n {\n \"interpretation\": \"\"\n }\n ],\n \"translationMessages\": [\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"ignored\": \"\",\n \"requested\": \"\",\n \"viewed\": \"\",\n \"messages\": [\n {\n \"interpretation\": \"\"\n },\n {\n \"interpretation\": \"\"\n }\n ],\n \"translationMessages\": [\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n ]\n }\n]", + "body": "[\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Employee-database-read-write\",\n \"description\": \"This item grants an employee read and write access to the database\"\n },\n \"ignored\": true,\n \"requested\": true,\n \"viewed\": true,\n \"messages\": [\n {\n \"interpretation\": \"95% of your peers have this access.\"\n },\n {\n \"interpretation\": \"95% of your peers have this access.\"\n }\n ],\n \"translationMessages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n ]\n },\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Employee-database-read-write\",\n \"description\": \"This item grants an employee read and write access to the database\"\n },\n \"ignored\": true,\n \"requested\": true,\n \"viewed\": true,\n \"messages\": [\n {\n \"interpretation\": \"95% of your peers have this access.\"\n },\n {\n \"interpretation\": \"95% of your peers have this access.\"\n }\n ],\n \"translationMessages\": [\n {\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": "a27dc5c8-3e8c-4d27-acdb-e5e209a332cb", + "id": "2cb6567f-8ded-4e21-86f4-12ea33bc0134", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50795,7 +54052,7 @@ "type": "text/plain" }, "key": "identity-id", - "value": "me" + "value": "2c91808570313110017040b06f344ec9" }, { "disabled": true, @@ -50822,7 +54079,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -50840,7 +54097,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.name co \"admin\"" }, { "disabled": true, @@ -50849,7 +54106,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -50879,12 +54136,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3fc3893e-44a2-48ec-9c30-628e6b9ce867", + "id": "4413b48d-68ec-488e-8207-d7778d7ea16b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50902,7 +54159,7 @@ "type": "text/plain" }, "key": "identity-id", - "value": "me" + "value": "2c91808570313110017040b06f344ec9" }, { "disabled": true, @@ -50929,7 +54186,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -50947,7 +54204,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.name co \"admin\"" }, { "disabled": true, @@ -50956,7 +54213,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -50986,12 +54243,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a69b91a7-1e33-4155-ae3c-61d804b52749", + "id": "5068b118-4431-4572-8fc0-93dff6289e5b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51009,7 +54266,7 @@ "type": "text/plain" }, "key": "identity-id", - "value": "me" + "value": "2c91808570313110017040b06f344ec9" }, { "disabled": true, @@ -51036,7 +54293,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -51054,7 +54311,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.name co \"admin\"" }, { "disabled": true, @@ -51063,7 +54320,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -51093,12 +54350,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9f5061dc-97bc-451a-b7f8-7d7ac62acf66", + "id": "dc13e6de-e6db-403b-9d58-aeeab8e9c5f9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51116,7 +54373,7 @@ "type": "text/plain" }, "key": "identity-id", - "value": "me" + "value": "2c91808570313110017040b06f344ec9" }, { "disabled": true, @@ -51143,7 +54400,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -51161,7 +54418,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.name co \"admin\"" }, { "disabled": true, @@ -51170,7 +54427,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -51200,12 +54457,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "348988e9-b933-4d23-b23d-036d7dd07f79", + "id": "f803f3b7-664e-480f-8ec9-ffb4f62f3b24", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51223,7 +54480,7 @@ "type": "text/plain" }, "key": "identity-id", - "value": "me" + "value": "2c91808570313110017040b06f344ec9" }, { "disabled": true, @@ -51250,7 +54507,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -51268,7 +54525,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.name co \"admin\"" }, { "disabled": true, @@ -51277,7 +54534,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -51307,7 +54564,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -51318,7 +54575,7 @@ } }, { - "id": "7c678e95-4009-40e3-a73d-a12f602f0c8f", + "id": "539773f0-52c0-4db7-af72-7f1b1e8f3097", "name": "Notification of Ignored Access Request Recommendations", "request": { "name": "Notification of Ignored Access Request Recommendations", @@ -51350,7 +54607,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -51361,7 +54618,7 @@ }, "response": [ { - "id": "a86ea654-bc1a-4212-a925-bb596e7e2332", + "id": "bb2db048-d6fd-45b1-9599-a7e6390182eb", "name": "Recommendation successfully stored as ignored.", "originalRequest": { "url": { @@ -51396,7 +54653,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -51413,12 +54670,12 @@ "value": "application/json" } ], - "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n}", + "body": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3e2f41ba-26b1-4f35-9b86-6c0bcd89f0b8", + "id": "43c06e0f-9a68-49b4-8b90-68ed2c25b2bb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51453,7 +54710,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -51470,12 +54727,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8c666015-9813-47ca-a51c-3ade57cd825f", + "id": "a1ab67ac-44a5-43a8-89b8-19c7ce3a1297", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51510,7 +54767,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -51527,12 +54784,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "871089e8-ec77-4ad0-8cbc-fb10fbedf1fc", + "id": "feb7f050-b2e6-4b64-8bce-4be5ba24248e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51567,7 +54824,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -51584,12 +54841,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c178ed74-8870-40f2-9e8b-6e411099de25", + "id": "463cfa72-884a-446d-8c0d-ec44db7aedd2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51624,7 +54881,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -51641,12 +54898,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4a4314d7-055a-4f40-a566-dbffd8863474", + "id": "ff5ff761-14cf-4edb-b8b5-7b07bbb9e070", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51681,7 +54938,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -51698,7 +54955,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -51709,7 +54966,7 @@ } }, { - "id": "a558363f-cdf4-4cbb-9e0a-862951732c1c", + "id": "05983c60-2407-4274-bd45-52c0ec76b052", "name": "List of Ignored Access Request Recommendations", "request": { "name": "List of Ignored Access Request Recommendations", @@ -51751,7 +55008,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -51760,7 +55017,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "identityId eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -51769,7 +55026,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "access.id" } ], "variable": [] @@ -51785,7 +55042,7 @@ }, "response": [ { - "id": "7bcd057a-3ae1-4627-b620-18591e9a8815", + "id": "15412438-2ffd-4e82-a240-9ef7f123e544", "name": "Returns list of ignored access request recommendations.", "originalRequest": { "url": { @@ -51822,7 +55079,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -51831,7 +55088,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "identityId eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -51840,7 +55097,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "access.id" } ], "variable": [] @@ -51870,12 +55127,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n }\n]", + "body": "[\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"2017-07-11T18:45:37.098Z\"\n },\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"2017-07-11T18:45:37.098Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b28f1ffd-c7a3-4411-9900-614f9a186b27", + "id": "04bee5e4-63a1-44b7-b617-1e0296ac2adf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51912,7 +55169,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -51921,7 +55178,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "identityId eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -51930,7 +55187,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "access.id" } ], "variable": [] @@ -51960,12 +55217,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4b16e7cc-e3f8-4727-8ef4-fa51812975c3", + "id": "15548e82-9453-4ae8-895e-bcbf8b0ca173", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52002,7 +55259,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -52011,7 +55268,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "identityId eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -52020,7 +55277,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "access.id" } ], "variable": [] @@ -52050,12 +55307,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9675b65b-5127-401a-b8e1-19103f1537fe", + "id": "1104807a-22c3-43cf-a9c3-4926216a62e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52092,7 +55349,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -52101,7 +55358,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "identityId eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -52110,7 +55367,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "access.id" } ], "variable": [] @@ -52140,12 +55397,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3a0c0906-c8c8-4a1e-a19c-27f087fc176b", + "id": "d7824c47-0efa-48af-b89c-be2889ecbe64", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52182,7 +55439,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -52191,7 +55448,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "identityId eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -52200,7 +55457,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "access.id" } ], "variable": [] @@ -52230,12 +55487,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ecefd7f2-f499-40eb-86cb-30bf6d0c9a13", + "id": "fbe03403-cda3-421f-9615-8748e1ad512c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52272,7 +55529,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -52281,7 +55538,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "identityId eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -52290,7 +55547,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "access.id" } ], "variable": [] @@ -52320,7 +55577,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -52331,7 +55588,7 @@ } }, { - "id": "245e1357-5c1d-43a5-9d02-835be99c8b7c", + "id": "1fd656db-f084-4780-b23d-55aff874e2d7", "name": "Notification of Requested Access Request Recommendations", "request": { "name": "Notification of Requested Access Request Recommendations", @@ -52363,7 +55620,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -52374,7 +55631,7 @@ }, "response": [ { - "id": "f6a2fa25-fbb4-451a-b366-77d626f73698", + "id": "4910c139-36e5-41d3-8899-99b96c9126ff", "name": "Notification successfully acknowledged.", "originalRequest": { "url": { @@ -52409,7 +55666,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -52426,12 +55683,12 @@ "value": "application/json" } ], - "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n}", + "body": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b2db5313-3b1a-4e08-a3b7-13b639e1fb71", + "id": "85748789-51f3-4c4a-bf9c-f2bc4427a053", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52466,7 +55723,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -52483,12 +55740,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "384e4902-be8b-4302-b74e-2c22b5a6ef18", + "id": "a928490f-36d5-490d-bd4f-01d27f09dbf0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52523,7 +55780,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -52540,12 +55797,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "48940bde-5f66-40da-9374-fbbb48500107", + "id": "1614c68b-e646-4cbb-bd87-55cd552644d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52580,7 +55837,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -52597,12 +55854,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b5767e4b-ee7f-40d2-b5ca-67182084917d", + "id": "36b625bf-30c3-4d62-b54e-3f55d1627581", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52637,7 +55894,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -52654,12 +55911,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56b8cbfc-5e17-46a1-8ac7-10aed5bc1b0a", + "id": "69cc6793-e04e-4154-b989-165c7a7589ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52694,7 +55951,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -52711,7 +55968,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -52722,7 +55979,7 @@ } }, { - "id": "a3b0c45b-0357-41c6-b4cc-930f87117631", + "id": "484e4872-7a71-4243-aaaf-258bc7a32018", "name": "List of Requested Access Request Recommendations", "request": { "name": "List of Requested Access Request Recommendations", @@ -52764,7 +56021,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -52773,7 +56030,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.id eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -52782,7 +56039,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -52798,7 +56055,7 @@ }, "response": [ { - "id": "381b4519-cee7-4de7-b4ec-30895c97b952", + "id": "8f67a23f-ac93-4c0a-adad-3efd9bc5a11e", "name": "Returns the list of requested access request recommendations.", "originalRequest": { "url": { @@ -52835,7 +56092,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -52844,7 +56101,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.id eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -52853,7 +56110,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -52883,12 +56140,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n }\n]", + "body": "[\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"2017-07-11T18:45:37.098Z\"\n },\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"2017-07-11T18:45:37.098Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ac040bc6-af4c-4216-b18c-4db73ddbbdc0", + "id": "0d491a61-8bea-44b6-a56a-1933bb6b8446", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52925,7 +56182,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -52934,7 +56191,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.id eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -52943,7 +56200,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -52973,12 +56230,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "560171ad-97fb-4e31-a572-367dd6493e3b", + "id": "bb9d2806-a202-4ecb-b277-9ba124811873", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53015,7 +56272,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -53024,7 +56281,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.id eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -53033,7 +56290,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -53063,12 +56320,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "529bc50d-3b7f-41c8-9262-5a7d0d690098", + "id": "ead60901-e38e-401b-a180-098aefc88cd9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53105,7 +56362,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -53114,7 +56371,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.id eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -53123,7 +56380,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -53153,12 +56410,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6af29114-8370-44b6-a98a-530149c8305a", + "id": "beacb717-d4d1-4515-929d-618ef970fa85", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53195,7 +56452,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -53204,7 +56461,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.id eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -53213,7 +56470,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -53243,12 +56500,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d75bc093-8db8-4867-ab9e-26a0cabd1ffd", + "id": "19d57c90-7baa-4d19-8b64-73e9f8826d5e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53285,7 +56542,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -53294,7 +56551,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.id eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -53303,7 +56560,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -53333,7 +56590,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -53344,7 +56601,7 @@ } }, { - "id": "a22e532c-2f00-4cdf-a8dd-1f1aa6bb473e", + "id": "d3c25354-85ea-4b15-80c5-e10c5064711a", "name": "Notification of Viewed Access Request Recommendations", "request": { "name": "Notification of Viewed Access Request Recommendations", @@ -53376,7 +56633,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -53387,7 +56644,7 @@ }, "response": [ { - "id": "34f00744-78bd-4eb9-a177-71a2e099c7a8", + "id": "8e4f27ae-a184-4227-a0fa-fd511be0a63f", "name": "Recommendation successfully stored as viewed.", "originalRequest": { "url": { @@ -53422,7 +56679,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -53439,12 +56696,12 @@ "value": "application/json" } ], - "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n}", + "body": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9760a23e-f766-4989-91e3-86daa895056d", + "id": "06b3a37d-b7a3-41ce-a1bf-cf5e2138991b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53479,7 +56736,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -53496,12 +56753,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "cd80329e-217a-4b0c-b5cb-52254e7e5fff", + "id": "8a97fb21-7131-4da7-ab04-c7130cfc1d1f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53536,7 +56793,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -53553,12 +56810,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e74b3704-7cc3-4dee-ba76-6486e70579b6", + "id": "8e650c11-76ba-4d2b-adcf-04a83162b240", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53593,7 +56850,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -53610,12 +56867,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f04ff184-ab54-46b6-8fe9-ff01a3b78ebd", + "id": "a3c6edca-500a-4b2a-b78b-f89a94d183cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53650,7 +56907,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -53667,12 +56924,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ffd3244d-0748-439e-99f1-381c20a1dd24", + "id": "2f7c8b3f-858d-4334-a91a-a8e66ad90233", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53707,7 +56964,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -53724,7 +56981,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -53735,7 +56992,7 @@ } }, { - "id": "5b6c72dc-9b6a-4431-b160-bdf4030db893", + "id": "ca8b7003-8ab2-4ad0-b1ff-5064ca38052b", "name": "List of Viewed Access Request Recommendations", "request": { "name": "List of Viewed Access Request Recommendations", @@ -53777,7 +57034,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -53786,7 +57043,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.id eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -53795,7 +57052,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -53811,7 +57068,7 @@ }, "response": [ { - "id": "0e0f8a84-bddd-45d5-a87c-79c0dc11efde", + "id": "a2e63660-167c-4635-aa5a-f654c1f46ca0", "name": "Returns list of viewed access request recommendations.", "originalRequest": { "url": { @@ -53848,7 +57105,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -53857,7 +57114,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.id eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -53866,7 +57123,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -53896,12 +57153,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n }\n]", + "body": "[\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"2017-07-11T18:45:37.098Z\"\n },\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"2017-07-11T18:45:37.098Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ce62c280-6ed8-48f7-9ac7-8c8fcd9e532a", + "id": "72c6ecf1-31cd-45ae-90ac-1c73b85298f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53938,7 +57195,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -53947,7 +57204,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.id eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -53956,7 +57213,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -53986,12 +57243,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1e5ea779-cbfc-4edf-ad5f-8988296c7a37", + "id": "f91e3a65-9998-4063-9061-df01a4b5d3c6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54028,7 +57285,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -54037,7 +57294,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.id eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -54046,7 +57303,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -54076,12 +57333,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "09313788-8cd0-40a7-b727-570066dc61f2", + "id": "b5306058-061c-416f-a8f3-df34e79b9f13", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54118,7 +57375,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -54127,7 +57384,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.id eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -54136,7 +57393,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -54166,12 +57423,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "40888c28-bbfb-4d2f-ad35-6effd405845b", + "id": "b4c20c17-030b-413d-afca-54be05d392f8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54208,7 +57465,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -54217,7 +57474,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.id eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -54226,7 +57483,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -54256,12 +57513,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df4e69cf-3db1-4651-9f2a-286b6cec9712", + "id": "154c6fcd-19c7-4569-ab49-c42170864c6f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54298,7 +57555,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -54307,7 +57564,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.id eq \"2c9180846b0a0583016b299f210c1314\"" }, { "disabled": true, @@ -54316,7 +57573,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -54346,7 +57603,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -54357,7 +57614,7 @@ } }, { - "id": "d55ec583-b724-419d-9c14-017073b8180a", + "id": "57c5c436-6440-42fe-ac28-f02f3d0944ad", "name": "Notification of Viewed Access Request Recommendations in Bulk", "request": { "name": "Notification of Viewed Access Request Recommendations in Bulk", @@ -54390,7 +57647,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n]", + "raw": "[\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n },\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -54401,7 +57658,7 @@ }, "response": [ { - "id": "7cbb6f7d-9499-4b24-907b-3a07cc80b53a", + "id": "d809c916-c12f-496e-9538-4d37bfd95960", "name": "Recommendations successfully stored as viewed.", "originalRequest": { "url": { @@ -54437,7 +57694,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n]", + "raw": "[\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n },\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -54454,12 +57711,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n }\n]", + "body": "[\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"2017-07-11T18:45:37.098Z\"\n },\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"2017-07-11T18:45:37.098Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e93118e2-aafb-425d-b3f2-e60a56acb014", + "id": "29c8d240-96cd-4559-a332-03e7b2bb7e17", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54495,7 +57752,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n]", + "raw": "[\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n },\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -54512,12 +57769,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e0c1480d-dd48-4026-9e9d-e3d54489f6b7", + "id": "f66b55b3-0d67-44cb-bbdb-7c1979fb5de5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54553,7 +57810,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n]", + "raw": "[\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n },\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -54570,12 +57827,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d9fa84bd-b125-4fad-8f11-d5e7f791e190", + "id": "1277ff13-b33c-42bc-8aa4-b1cfcaeece52", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54611,7 +57868,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n]", + "raw": "[\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n },\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -54628,12 +57885,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2f780784-01c2-43d0-9de1-e950896c3b40", + "id": "58bd3ec0-5327-45b6-888f-cd940c030a87", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54669,7 +57926,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n]", + "raw": "[\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n },\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -54686,12 +57943,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ea72903d-1c84-4c0e-b3f8-daa91e713bd7", + "id": "b52b0cce-a2f0-46ee-90a2-95883b53ebc0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54727,7 +57984,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n]", + "raw": "[\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n },\n {\n \"identityId\": \"2c91808570313110017040b06f344ec9\",\n \"access\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"type\": \"ACCESS_PROFILE\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -54744,7 +58001,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -54761,7 +58018,7 @@ "description": "", "item": [ { - "id": "b90c40a2-fc55-4586-80a3-f5857228477b", + "id": "663c6126-8aa7-48a5-ab5f-06038ea0d7a5", "name": "Get a paginated list of common access", "request": { "name": "Get a paginated list of common access", @@ -54802,7 +58059,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -54811,7 +58068,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.type eq \"ROLE\"" }, { "disabled": true, @@ -54820,7 +58077,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "access.name" } ], "variable": [] @@ -54836,7 +58093,7 @@ }, "response": [ { - "id": "0c407df8-2621-4ae6-b14f-a6d39ea0665c", + "id": "9987d29d-da15-4ea9-a927-44cd2527803a", "name": "Succeeded. Returns a list of common access for a customer.", "originalRequest": { "url": { @@ -54872,7 +58129,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -54881,7 +58138,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.type eq \"ROLE\"" }, { "disabled": true, @@ -54890,7 +58147,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "access.name" } ], "variable": [] @@ -54920,12 +58177,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"\",\n \"lastUpdated\": \"\",\n \"reviewedByUser\": \"\",\n \"lastReviewed\": \"\"\n },\n {\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"\",\n \"lastUpdated\": \"\",\n \"reviewedByUser\": \"\",\n \"lastReviewed\": \"\"\n }\n]", + "body": "[\n {\n \"access\": {\n \"id\": \"voluptate aliqua reprehenderit laboris\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"labore\",\n \"description\": \"fugiat ipsum irure\",\n \"ownerName\": \"cupidatat dolor\",\n \"ownerId\": \"deserunt ea irure\"\n },\n \"status\": \"dolo\",\n \"lastUpdated\": \"1964-02-16T10:45:16.450Z\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"1959-09-23T09:40:43.283Z\"\n },\n {\n \"access\": {\n \"id\": \"ea exercitation ut\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"in nulla\",\n \"description\": \"elit ut in commodo\",\n \"ownerName\": \"Excepteur pariatur commodo Lorem\",\n \"ownerId\": \"aliqua in esse\"\n },\n \"status\": \"nostrud in eu in\",\n \"lastUpdated\": \"1990-04-10T23:20:45.130Z\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"1950-05-13T12:01:20.302Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e7706d4-349e-4397-a16d-dce4b7767e62", + "id": "c87b8377-5e34-46e1-b5ee-d2878624ecc2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54961,7 +58218,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -54970,7 +58227,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.type eq \"ROLE\"" }, { "disabled": true, @@ -54979,7 +58236,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "access.name" } ], "variable": [] @@ -55009,12 +58266,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1c775fef-064f-4b16-8261-236f8f4f9619", + "id": "709c2ab5-e3d0-4d5a-84b5-1890993cb3d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55050,7 +58307,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -55059,7 +58316,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.type eq \"ROLE\"" }, { "disabled": true, @@ -55068,7 +58325,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "access.name" } ], "variable": [] @@ -55098,12 +58355,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8a306d4d-4f48-430e-bf7b-8d4da240d8b7", + "id": "546561ce-d148-47ec-934c-0c459f0ae3b3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55139,7 +58396,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -55148,7 +58405,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.type eq \"ROLE\"" }, { "disabled": true, @@ -55157,7 +58414,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "access.name" } ], "variable": [] @@ -55187,12 +58444,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "397de929-2e25-42dd-8eea-77f1e472aaee", + "id": "1cfbca8f-7124-4eff-92de-d37691e385ea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55228,7 +58485,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -55237,7 +58494,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "access.type eq \"ROLE\"" }, { "disabled": true, @@ -55246,7 +58503,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "access.name" } ], "variable": [] @@ -55276,7 +58533,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -55287,7 +58544,7 @@ } }, { - "id": "6eec5393-f737-4e31-992b-0b362fa374e6", + "id": "75bed290-273f-4f36-8fa8-55043d8b4272", "name": "Create common access items", "request": { "name": "Create common access items", @@ -55318,7 +58575,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ullamco ex et amet sed\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"non laborum labore\",\n \"description\": \"ut in\",\n \"ownerName\": \"nisi\",\n \"ownerId\": \"tempor commodo n\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -55329,7 +58586,7 @@ }, "response": [ { - "id": "892629c3-344b-4d81-9bca-6516cccf7e0a", + "id": "bcd7f87f-3357-4d7d-816c-3b46a64e3ed0", "name": "Returns details of the common access classification request.", "originalRequest": { "url": { @@ -55363,7 +58620,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ullamco ex et amet sed\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"non laborum labore\",\n \"description\": \"ut in\",\n \"ownerName\": \"nisi\",\n \"ownerId\": \"tempor commodo n\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -55380,12 +58637,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\",\n \"lastUpdated\": \"\",\n \"reviewedByUser\": \"\",\n \"lastReviewed\": \"\",\n \"createdByUser\": \"\"\n}", + "body": "{\n \"id\": \"voluptate officia\",\n \"access\": {\n \"id\": \"sunt ex exercitation\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"consectetur sed\",\n \"description\": \"deserunt et consequat aute consectetur\",\n \"ownerName\": \"ex consectetur ipsum\",\n \"ownerId\": \"minim est deserunt\"\n },\n \"status\": \"DENIED\",\n \"lastUpdated\": \"deserunt esse\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"laborum et irure Duis\",\n \"createdByUser\": \"Ut culpa\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b8ce2d7-5ebb-4f1a-ae7b-a5b89f7ef21a", + "id": "6cba0d91-2ce5-4a8e-8cd6-db32e084d88b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55419,7 +58676,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ullamco ex et amet sed\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"non laborum labore\",\n \"description\": \"ut in\",\n \"ownerName\": \"nisi\",\n \"ownerId\": \"tempor commodo n\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -55436,12 +58693,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b8077b87-9f2d-4c7d-a2a3-1920d60c375b", + "id": "76b86792-e84f-4edb-9b85-a0d05a6c83e9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55475,7 +58732,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ullamco ex et amet sed\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"non laborum labore\",\n \"description\": \"ut in\",\n \"ownerName\": \"nisi\",\n \"ownerId\": \"tempor commodo n\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -55492,12 +58749,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9e2d8653-8ba9-47f0-8f0a-2da20e0d390a", + "id": "5561b4a3-cda4-460f-bb3d-87c70137e0ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55531,7 +58788,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ullamco ex et amet sed\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"non laborum labore\",\n \"description\": \"ut in\",\n \"ownerName\": \"nisi\",\n \"ownerId\": \"tempor commodo n\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -55548,12 +58805,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9eda421f-e360-4faa-a448-08a7609d053b", + "id": "b25cdf74-6365-471b-8a66-3e17d3d2fffb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55587,7 +58844,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ullamco ex et amet sed\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"non laborum labore\",\n \"description\": \"ut in\",\n \"ownerName\": \"nisi\",\n \"ownerId\": \"tempor commodo n\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -55604,12 +58861,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "75d788e5-5587-4476-b58a-7dac0384b1e3", + "id": "50d201d5-7234-46ea-83dc-d3b0e9fee77b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55643,7 +58900,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ullamco ex et amet sed\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"non laborum labore\",\n \"description\": \"ut in\",\n \"ownerName\": \"nisi\",\n \"ownerId\": \"tempor commodo n\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -55660,7 +58917,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -55671,7 +58928,7 @@ } }, { - "id": "88d07c0a-4f3e-4d6d-abcb-956a42a05901", + "id": "3d6b06e6-4af5-420f-947a-0aa95f340a68", "name": "Bulk update common access status", "request": { "name": "Bulk update common access status", @@ -55703,7 +58960,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"\",\n \"\"\n ],\n \"deniedIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"confirmedIds\": [\n \"\",\n \"\"\n ],\n \"deniedIds\": [\n \"\",\n \"\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:737a5ce2-0737-efef-0b12-b5d2f059f267\",\n \"67dabf8e-85bc-9ac7-051a-641f11b7da64\"\n ],\n \"deniedIds\": [\n \"0f3943ef-471c-5c4d-fa49-221037099c74\",\n \"8e870e2a-45d4-51d2-72f2-21e01f7fd6a3\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:7ac84b36-81f4-ea66-044a-685eb2752711\",\n \"216c3668-c8a9-5bb2-8803-98f57ae95846\"\n ],\n \"deniedIds\": [\n \"b7818370-04a5-7f11-6fe7-451127abfd80\",\n \"1137f055-42fb-7d1e-f525-6fda44dd24dc\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -55714,7 +58971,7 @@ }, "response": [ { - "id": "879c3cd0-109c-4346-80d8-bb6d2a677ffc", + "id": "0d6ea88d-69e6-483d-a51b-06de37465bf3", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -55749,7 +59006,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"\",\n \"\"\n ],\n \"deniedIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"confirmedIds\": [\n \"\",\n \"\"\n ],\n \"deniedIds\": [\n \"\",\n \"\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:737a5ce2-0737-efef-0b12-b5d2f059f267\",\n \"67dabf8e-85bc-9ac7-051a-641f11b7da64\"\n ],\n \"deniedIds\": [\n \"0f3943ef-471c-5c4d-fa49-221037099c74\",\n \"8e870e2a-45d4-51d2-72f2-21e01f7fd6a3\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:7ac84b36-81f4-ea66-044a-685eb2752711\",\n \"216c3668-c8a9-5bb2-8803-98f57ae95846\"\n ],\n \"deniedIds\": [\n \"b7818370-04a5-7f11-6fe7-451127abfd80\",\n \"1137f055-42fb-7d1e-f525-6fda44dd24dc\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -55771,7 +59028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9b67cad-52f1-4ff5-b8bb-ef2200e17cc1", + "id": "07ff767c-c2d4-4680-8091-39648bf0518a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55806,7 +59063,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"\",\n \"\"\n ],\n \"deniedIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"confirmedIds\": [\n \"\",\n \"\"\n ],\n \"deniedIds\": [\n \"\",\n \"\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:737a5ce2-0737-efef-0b12-b5d2f059f267\",\n \"67dabf8e-85bc-9ac7-051a-641f11b7da64\"\n ],\n \"deniedIds\": [\n \"0f3943ef-471c-5c4d-fa49-221037099c74\",\n \"8e870e2a-45d4-51d2-72f2-21e01f7fd6a3\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:7ac84b36-81f4-ea66-044a-685eb2752711\",\n \"216c3668-c8a9-5bb2-8803-98f57ae95846\"\n ],\n \"deniedIds\": [\n \"b7818370-04a5-7f11-6fe7-451127abfd80\",\n \"1137f055-42fb-7d1e-f525-6fda44dd24dc\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -55823,12 +59080,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b0ed9941-1e13-4cf2-95d5-ab31d03e3ffc", + "id": "f114e75d-4630-41a7-884c-2e40b205eab7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55863,7 +59120,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"\",\n \"\"\n ],\n \"deniedIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"confirmedIds\": [\n \"\",\n \"\"\n ],\n \"deniedIds\": [\n \"\",\n \"\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:737a5ce2-0737-efef-0b12-b5d2f059f267\",\n \"67dabf8e-85bc-9ac7-051a-641f11b7da64\"\n ],\n \"deniedIds\": [\n \"0f3943ef-471c-5c4d-fa49-221037099c74\",\n \"8e870e2a-45d4-51d2-72f2-21e01f7fd6a3\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:7ac84b36-81f4-ea66-044a-685eb2752711\",\n \"216c3668-c8a9-5bb2-8803-98f57ae95846\"\n ],\n \"deniedIds\": [\n \"b7818370-04a5-7f11-6fe7-451127abfd80\",\n \"1137f055-42fb-7d1e-f525-6fda44dd24dc\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -55880,12 +59137,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3ef04c92-eb89-49a6-9f80-de26f730d423", + "id": "ea5df294-2763-466f-8740-dd2bc35af3e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55920,7 +59177,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"\",\n \"\"\n ],\n \"deniedIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"confirmedIds\": [\n \"\",\n \"\"\n ],\n \"deniedIds\": [\n \"\",\n \"\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:737a5ce2-0737-efef-0b12-b5d2f059f267\",\n \"67dabf8e-85bc-9ac7-051a-641f11b7da64\"\n ],\n \"deniedIds\": [\n \"0f3943ef-471c-5c4d-fa49-221037099c74\",\n \"8e870e2a-45d4-51d2-72f2-21e01f7fd6a3\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:7ac84b36-81f4-ea66-044a-685eb2752711\",\n \"216c3668-c8a9-5bb2-8803-98f57ae95846\"\n ],\n \"deniedIds\": [\n \"b7818370-04a5-7f11-6fe7-451127abfd80\",\n \"1137f055-42fb-7d1e-f525-6fda44dd24dc\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -55937,12 +59194,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e8027fad-1d8f-427e-839e-6aacae414577", + "id": "b1d59d1e-4491-42f6-bc62-7313e2379f0d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55977,7 +59234,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"\",\n \"\"\n ],\n \"deniedIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"confirmedIds\": [\n \"\",\n \"\"\n ],\n \"deniedIds\": [\n \"\",\n \"\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:737a5ce2-0737-efef-0b12-b5d2f059f267\",\n \"67dabf8e-85bc-9ac7-051a-641f11b7da64\"\n ],\n \"deniedIds\": [\n \"0f3943ef-471c-5c4d-fa49-221037099c74\",\n \"8e870e2a-45d4-51d2-72f2-21e01f7fd6a3\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:7ac84b36-81f4-ea66-044a-685eb2752711\",\n \"216c3668-c8a9-5bb2-8803-98f57ae95846\"\n ],\n \"deniedIds\": [\n \"b7818370-04a5-7f11-6fe7-451127abfd80\",\n \"1137f055-42fb-7d1e-f525-6fda44dd24dc\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -55994,12 +59251,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fee65187-e013-4476-a78b-35c5c4705d16", + "id": "57a6408e-22c2-4c53-a692-e681e46329ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56034,7 +59291,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"\",\n \"\"\n ],\n \"deniedIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"confirmedIds\": [\n \"\",\n \"\"\n ],\n \"deniedIds\": [\n \"\",\n \"\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:737a5ce2-0737-efef-0b12-b5d2f059f267\",\n \"67dabf8e-85bc-9ac7-051a-641f11b7da64\"\n ],\n \"deniedIds\": [\n \"0f3943ef-471c-5c4d-fa49-221037099c74\",\n \"8e870e2a-45d4-51d2-72f2-21e01f7fd6a3\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:7ac84b36-81f4-ea66-044a-685eb2752711\",\n \"216c3668-c8a9-5bb2-8803-98f57ae95846\"\n ],\n \"deniedIds\": [\n \"b7818370-04a5-7f11-6fe7-451127abfd80\",\n \"1137f055-42fb-7d1e-f525-6fda44dd24dc\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -56051,7 +59308,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -56068,7 +59325,7 @@ "description": "", "item": [ { - "id": "5c68f98a-8edb-4496-93f2-f28ea7495482", + "id": "3edd6cae-d0e8-4d8b-98dc-49c706a4c2e4", "name": "IAI Identity Outliers Summary", "request": { "name": "IAI Identity Outliers Summary", @@ -56109,7 +59366,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -56118,7 +59375,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "snapshotDate ge \"2022-02-07T20:13:29.356648026Z\"" }, { "disabled": true, @@ -56127,7 +59384,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "snapshotDate" } ], "variable": [] @@ -56143,7 +59400,7 @@ }, "response": [ { - "id": "021f3c0b-021f-44cf-bd39-ae9d2ca58c8c", + "id": "6c5e1d49-7efd-4fe9-abcd-0a050189b109", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -56179,7 +59436,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -56188,7 +59445,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "snapshotDate ge \"2022-02-07T20:13:29.356648026Z\"" }, { "disabled": true, @@ -56197,7 +59454,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "snapshotDate" } ], "variable": [] @@ -56233,15 +59490,15 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "" + "value": "-99378792" } ], - "body": "[\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"\",\n \"totalOutliers\": \"\",\n \"totalIdentities\": \"\"\n },\n {\n \"type\": \"STRUCTURAL\",\n \"snapshotDate\": \"\",\n \"totalOutliers\": \"\",\n \"totalIdentities\": \"\"\n }\n]", + "body": "[\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"2021-05-01T18:40:35.772Z\",\n \"totalOutliers\": 50,\n \"totalIdentities\": 5000\n },\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"2021-05-01T18:40:35.772Z\",\n \"totalOutliers\": 50,\n \"totalIdentities\": 5000\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "39194a87-58a9-487b-b43a-7ec09209abf7", + "id": "b1615234-6569-4d4c-97d3-49b12e4ca150", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -56277,7 +59534,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -56286,7 +59543,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "snapshotDate ge \"2022-02-07T20:13:29.356648026Z\"" }, { "disabled": true, @@ -56295,7 +59552,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "snapshotDate" } ], "variable": [] @@ -56330,7 +59587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34484109-7d22-4509-8ee1-7322ccbe0749", + "id": "a7355202-6252-476e-b0c0-c73085e83a7e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56366,7 +59623,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -56375,7 +59632,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "snapshotDate ge \"2022-02-07T20:13:29.356648026Z\"" }, { "disabled": true, @@ -56384,7 +59641,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "snapshotDate" } ], "variable": [] @@ -56414,12 +59671,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d614b03a-278e-4491-9b95-33dad5f00aa6", + "id": "0842abdd-02e1-4997-bc0b-0387e220f68e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56455,7 +59712,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -56464,7 +59721,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "snapshotDate ge \"2022-02-07T20:13:29.356648026Z\"" }, { "disabled": true, @@ -56473,7 +59730,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "snapshotDate" } ], "variable": [] @@ -56503,12 +59760,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "38c89bb2-1e58-4904-a28d-9e411f0693c2", + "id": "876cc491-94d0-4b41-a77e-be3a61f97ff1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56544,7 +59801,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -56553,7 +59810,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "snapshotDate ge \"2022-02-07T20:13:29.356648026Z\"" }, { "disabled": true, @@ -56562,7 +59819,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "snapshotDate" } ], "variable": [] @@ -56592,12 +59849,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "62dfaf82-46a6-4177-9079-22a89238f91a", + "id": "2832ee1d-7d52-40c6-8a18-3b4817356735", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56633,7 +59890,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -56642,7 +59899,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "snapshotDate ge \"2022-02-07T20:13:29.356648026Z\"" }, { "disabled": true, @@ -56651,7 +59908,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "snapshotDate" } ], "variable": [] @@ -56681,12 +59938,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eee79fe9-554c-488a-b767-54f2ba1bf752", + "id": "a645e3a4-8882-47d0-bdaa-300e155bace8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56722,7 +59979,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -56731,7 +59988,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "snapshotDate ge \"2022-02-07T20:13:29.356648026Z\"" }, { "disabled": true, @@ -56740,7 +59997,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "snapshotDate" } ], "variable": [] @@ -56770,7 +60027,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -56781,7 +60038,7 @@ } }, { - "id": "1a24506a-2753-4245-a47e-db2bd514c381", + "id": "7bf1a089-496a-4858-92c6-d3e72f52f7aa", "name": "IAI Identity Outliers Latest Summary", "request": { "name": "IAI Identity Outliers Latest Summary", @@ -56805,7 +60062,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -56821,7 +60078,7 @@ }, "response": [ { - "id": "34991a21-b996-427e-84b7-5b36db51fd58", + "id": "edcb7d51-bbeb-4c30-ba07-1ea7ade6cda5", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -56840,7 +60097,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -56870,12 +60127,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"\",\n \"totalOutliers\": \"\",\n \"totalIdentities\": \"\",\n \"totalIgnored\": \"\"\n },\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"\",\n \"totalOutliers\": \"\",\n \"totalIdentities\": \"\",\n \"totalIgnored\": \"\"\n }\n]", + "body": "[\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"2021-05-01T18:40:35.772Z\",\n \"totalOutliers\": 50,\n \"totalIdentities\": 5000,\n \"totalIgnored\": 10\n },\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"2021-05-01T18:40:35.772Z\",\n \"totalOutliers\": 50,\n \"totalIdentities\": 5000,\n \"totalIgnored\": 10\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2a08029-8282-458b-b84e-38d5abe03c59", + "id": "30f37b7f-bd22-41a2-a23d-6c379b26fa3a", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -56894,7 +60151,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -56929,7 +60186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e9ab0d4-72c5-4ea8-90c7-50ae88bb3eca", + "id": "8b574718-aaf6-4ea7-a345-afe567d87e47", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56948,7 +60205,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -56978,12 +60235,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "345d39da-0032-422f-84ee-47a6fa6b482d", + "id": "429980ce-74ed-4383-8ff0-28000960d043", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57002,7 +60259,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -57032,12 +60289,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "57a4a5cb-0fe5-4e45-9c44-58a5a8da764c", + "id": "5ae286fd-fde7-4b71-908d-d7e95744f43e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57056,7 +60313,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -57086,12 +60343,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2a4b6a10-9819-4d85-a115-eada4ccca988", + "id": "b0a09ce5-02f2-4132-82f4-0b4743e41f33", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57110,7 +60367,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -57140,12 +60397,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c6aea1ca-2618-474d-9ab8-f5dbb982a004", + "id": "63e4b4cf-7992-43d1-adb6-ce7292f3b252", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57164,7 +60421,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -57194,7 +60451,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -57205,7 +60462,7 @@ } }, { - "id": "620a37e5-8320-4c4e-b0be-48c937a47d7c", + "id": "b15dc037-8af6-4f49-a912-6826840a4ad2", "name": "IAI Get Identity Outliers", "request": { "name": "IAI Get Identity Outliers", @@ -57246,7 +60503,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -57255,7 +60512,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -57264,7 +60521,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attributes.displayName sw \"John\" and certStatus eq \"false\"" }, { "disabled": true, @@ -57273,7 +60530,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "attributes.displayName,firstDetectionDate,-score" } ], "variable": [] @@ -57289,7 +60546,7 @@ }, "response": [ { - "id": "69a8558f-4ce9-4b4a-a588-92375020c643", + "id": "ccd4ec26-f3e5-4c8b-a3c5-e9fd8c376c7f", "name": "Succeeded. Returns list of objects. Each object contains information about outliers", "originalRequest": { "url": { @@ -57325,7 +60582,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -57334,7 +60591,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -57343,7 +60600,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attributes.displayName sw \"John\" and certStatus eq \"false\"" }, { "disabled": true, @@ -57352,7 +60609,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "attributes.displayName,firstDetectionDate,-score" } ], "variable": [] @@ -57388,15 +60645,15 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "" + "value": "-99378792" } ], - "body": "[\n {\n \"id\": \"\",\n \"identityId\": \"\",\n \"type\": \"STRUCTURAL\",\n \"firstDetectionDate\": \"\",\n \"latestDetectionDate\": \"\",\n \"ignored\": \"\",\n \"attributes\": {},\n \"score\": \"\",\n \"unignoreType\": \"MANUAL\",\n \"unignoreDate\": \"\",\n \"ignoreDate\": \"\"\n },\n {\n \"id\": \"\",\n \"identityId\": \"\",\n \"type\": \"LOW_SIMILARITY\",\n \"firstDetectionDate\": \"\",\n \"latestDetectionDate\": \"\",\n \"ignored\": \"\",\n \"attributes\": {},\n \"score\": \"\",\n \"unignoreType\": \"AUTOMATIC\",\n \"unignoreDate\": \"\",\n \"ignoreDate\": \"\"\n }\n]", + "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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d4bb108a-bcb4-4e55-b7ed-a85f260bbe45", + "id": "6eb86bd7-07cb-4b56-87a7-a73710510110", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57432,7 +60689,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -57441,7 +60698,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -57450,7 +60707,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attributes.displayName sw \"John\" and certStatus eq \"false\"" }, { "disabled": true, @@ -57459,7 +60716,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "attributes.displayName,firstDetectionDate,-score" } ], "variable": [] @@ -57489,12 +60746,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "44b6176f-cd6f-4cfb-981b-9e2c23a8c1b1", + "id": "fdea0583-4ead-4e00-a09f-c3b350942ea7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57530,7 +60787,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -57539,7 +60796,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -57548,7 +60805,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attributes.displayName sw \"John\" and certStatus eq \"false\"" }, { "disabled": true, @@ -57557,7 +60814,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "attributes.displayName,firstDetectionDate,-score" } ], "variable": [] @@ -57587,12 +60844,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b1644a0b-9311-4b30-9436-5b86730b71f8", + "id": "2ca1c8e6-cce4-4a1e-bc8e-fa33989c48f3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57628,7 +60885,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -57637,7 +60894,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -57646,7 +60903,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attributes.displayName sw \"John\" and certStatus eq \"false\"" }, { "disabled": true, @@ -57655,7 +60912,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "attributes.displayName,firstDetectionDate,-score" } ], "variable": [] @@ -57685,12 +60942,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6803cce1-e3c8-4449-bcfa-0fa036bc72be", + "id": "e368b24b-19e2-4b5b-af3a-19c0d72adee3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57726,7 +60983,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -57735,7 +60992,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -57744,7 +61001,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attributes.displayName sw \"John\" and certStatus eq \"false\"" }, { "disabled": true, @@ -57753,7 +61010,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "attributes.displayName,firstDetectionDate,-score" } ], "variable": [] @@ -57783,12 +61040,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6a8645f-7d79-4c25-b9c4-2fd671862afe", + "id": "d67ded12-fb55-4c16-848a-54f5b759d45a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57824,7 +61081,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -57833,7 +61090,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -57842,7 +61099,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attributes.displayName sw \"John\" and certStatus eq \"false\"" }, { "disabled": true, @@ -57851,7 +61108,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "attributes.displayName,firstDetectionDate,-score" } ], "variable": [] @@ -57881,7 +61138,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -57892,7 +61149,7 @@ } }, { - "id": "d5d16469-9f93-4d7a-9d63-ad78078e3040", + "id": "d0cdda32-262e-4b6a-9d3d-4e07db88c1c3", "name": "Get identity outlier's contibuting features", "request": { "name": "Get identity outlier's contibuting features", @@ -57935,7 +61192,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -57944,7 +61201,7 @@ "type": "text/plain" }, "key": "include-translation-messages", - "value": "" + "value": "include-translation-messages=" }, { "disabled": true, @@ -57953,13 +61210,13 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "importance" } ], "variable": [ { "type": "any", - "value": "", + "value": "2c918085842e69ae018432d22ccb212f", "key": "outlierId", "disabled": true, "description": { @@ -57980,7 +61237,7 @@ }, "response": [ { - "id": "b39d5c47-1f91-4a3b-b7aa-86d2a45c5b22", + "id": "5c7f1eca-f242-495f-a62a-d27451848c70", "name": "Succeeded. Returns list of objects. Each object contains a feature and metadata about that feature", "originalRequest": { "url": { @@ -58018,7 +61275,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -58027,7 +61284,7 @@ "type": "text/plain" }, "key": "include-translation-messages", - "value": "" + "value": "include-translation-messages=" }, { "disabled": true, @@ -58036,7 +61293,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "importance" } ], "variable": [] @@ -58072,7 +61329,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "" + "value": "-99378792" }, { "disabled": true, @@ -58081,15 +61338,15 @@ "type": "text/plain" }, "key": "accept-language", - "value": "" + "value": "velit aliquip" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"valueType\": \"INTEGER\",\n \"value\": \"\",\n \"importance\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n \"description\": {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"valueType\": \"INTEGER\",\n \"value\": \"\",\n \"importance\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n \"description\": {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.024341577141097304,\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.7944537112451717,\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": "6b50a324-4195-4f6b-a0b2-a735100d04f4", + "id": "5353f0e1-b1df-46bd-b191-b0854caa8f68", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58127,7 +61384,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -58136,7 +61393,7 @@ "type": "text/plain" }, "key": "include-translation-messages", - "value": "" + "value": "include-translation-messages=" }, { "disabled": true, @@ -58145,7 +61402,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "importance" } ], "variable": [] @@ -58175,12 +61432,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "13e4dc4f-31c7-4b86-bc3a-eb5b52bdc8ab", + "id": "9ddc049f-7f21-41f4-b3eb-fad8d6e5c6e8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58218,7 +61475,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -58227,7 +61484,7 @@ "type": "text/plain" }, "key": "include-translation-messages", - "value": "" + "value": "include-translation-messages=" }, { "disabled": true, @@ -58236,7 +61493,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "importance" } ], "variable": [] @@ -58266,12 +61523,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "05d887e0-f572-460d-8dc3-37ebf561fb92", + "id": "46f877c7-ba06-4b31-9408-657a543deb2a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58309,7 +61566,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -58318,7 +61575,7 @@ "type": "text/plain" }, "key": "include-translation-messages", - "value": "" + "value": "include-translation-messages=" }, { "disabled": true, @@ -58327,7 +61584,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "importance" } ], "variable": [] @@ -58357,12 +61614,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0c3915da-cb32-4af7-99ec-931110552058", + "id": "2f060489-6db7-47d5-b905-a23ad6b3c758", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58400,7 +61657,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -58409,7 +61666,7 @@ "type": "text/plain" }, "key": "include-translation-messages", - "value": "" + "value": "include-translation-messages=" }, { "disabled": true, @@ -58418,7 +61675,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "importance" } ], "variable": [] @@ -58448,12 +61705,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "38de99b2-a2a4-4d24-8e3b-173a46f243b5", + "id": "0ed2cf4f-cd45-49cb-883a-58409e2176d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58491,7 +61748,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -58500,7 +61757,7 @@ "type": "text/plain" }, "key": "include-translation-messages", - "value": "" + "value": "include-translation-messages=" }, { "disabled": true, @@ -58509,7 +61766,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "importance" } ], "variable": [] @@ -58539,12 +61796,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6f62d944-a6e8-443b-b925-d9cef08c83a5", + "id": "14e6ee22-8726-4884-8102-fe8176e882b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58582,7 +61839,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -58591,7 +61848,7 @@ "type": "text/plain" }, "key": "include-translation-messages", - "value": "" + "value": "include-translation-messages=" }, { "disabled": true, @@ -58600,7 +61857,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "importance" } ], "variable": [] @@ -58630,7 +61887,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -58641,7 +61898,7 @@ } }, { - "id": "6ed9aa95-0173-40b5-82bb-7ce03c78531a", + "id": "0040f76b-e8f0-4217-be10-6e4151e031d6", "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", @@ -58686,7 +61943,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -58695,7 +61952,7 @@ "type": "text/plain" }, "key": "accessType", - "value": "" + "value": "ENTITLEMENT" }, { "disabled": true, @@ -58704,13 +61961,13 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "displayName" } ], "variable": [ { "type": "any", - "value": "", + "value": "2c918085842e69ae018432d22ccb212f", "key": "outlierId", "disabled": true, "description": { @@ -58720,7 +61977,7 @@ }, { "type": "any", - "value": "max_jaccard_similarity", + "value": "entitlement_count", "key": "contributingFeatureName", "disabled": true, "description": { @@ -58741,7 +61998,7 @@ }, "response": [ { - "id": "38125510-da93-4045-8cd0-61e77720f82f", + "id": "9969ce77-cbbd-415c-957c-08ed89490f70", "name": "The list of access items.", "originalRequest": { "url": { @@ -58781,7 +62038,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -58790,7 +62047,7 @@ "type": "text/plain" }, "key": "accessType", - "value": "" + "value": "ENTITLEMENT" }, { "disabled": true, @@ -58799,7 +62056,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "displayName" } ], "variable": [] @@ -58829,12 +62086,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"accessType\": \"ACCESS_PROFILE\",\n \"sourceName\": \"\",\n \"extremelyRare\": false\n },\n {\n \"id\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"accessType\": \"ENTITLEMENT\",\n \"sourceName\": \"\",\n \"extremelyRare\": false\n }\n]", + "body": "[\n {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"displayName\": \"Applied Research Access\",\n \"description\": \"Access to research information, lab results, and schematics\",\n \"accessType\": \"ENTITLEMENT\",\n \"sourceName\": \"appName\",\n \"extremelyRare\": true\n },\n {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"displayName\": \"Applied Research Access\",\n \"description\": \"Access to research information, lab results, and schematics\",\n \"accessType\": \"ENTITLEMENT\",\n \"sourceName\": \"appName\",\n \"extremelyRare\": true\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b5734c10-dfa8-4a0f-8c6f-3650c8fc6f76", + "id": "7ba62a19-e12d-444c-8813-69f5f91acbb1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58874,7 +62131,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -58883,7 +62140,7 @@ "type": "text/plain" }, "key": "accessType", - "value": "" + "value": "ENTITLEMENT" }, { "disabled": true, @@ -58892,7 +62149,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "displayName" } ], "variable": [] @@ -58922,12 +62179,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f2299b63-b8dc-4ba7-b9c1-647b1808d030", + "id": "03798ea0-a6d3-430e-89d9-6a1cb0043db9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58967,7 +62224,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -58976,7 +62233,7 @@ "type": "text/plain" }, "key": "accessType", - "value": "" + "value": "ENTITLEMENT" }, { "disabled": true, @@ -58985,7 +62242,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "displayName" } ], "variable": [] @@ -59015,12 +62272,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "38fa28f4-b939-4007-b37f-29f20f9c90cc", + "id": "d02c95f8-560c-428f-8fb7-163ddb7a00f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59060,7 +62317,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -59069,7 +62326,7 @@ "type": "text/plain" }, "key": "accessType", - "value": "" + "value": "ENTITLEMENT" }, { "disabled": true, @@ -59078,7 +62335,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "displayName" } ], "variable": [] @@ -59108,12 +62365,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0d0a8923-814b-45a2-9dc7-0d0806f5823f", + "id": "3b0675e4-9694-4845-934b-7cf293dd0ee1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -59153,7 +62410,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -59162,7 +62419,7 @@ "type": "text/plain" }, "key": "accessType", - "value": "" + "value": "ENTITLEMENT" }, { "disabled": true, @@ -59171,7 +62428,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "displayName" } ], "variable": [] @@ -59201,12 +62458,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "08e46656-94bf-4e6a-9340-a69ca064df25", + "id": "8918603d-de65-494d-af71-9de75a5c5144", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59246,7 +62503,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -59255,7 +62512,7 @@ "type": "text/plain" }, "key": "accessType", - "value": "" + "value": "ENTITLEMENT" }, { "disabled": true, @@ -59264,7 +62521,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "displayName" } ], "variable": [] @@ -59294,12 +62551,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e269e68b-d3b8-4529-818e-a74a7ed85986", + "id": "a8336171-b5b1-4e26-aaec-615831cc0631", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59339,7 +62596,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -59348,7 +62605,7 @@ "type": "text/plain" }, "key": "accessType", - "value": "" + "value": "ENTITLEMENT" }, { "disabled": true, @@ -59357,7 +62614,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "displayName" } ], "variable": [] @@ -59387,7 +62644,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -59398,7 +62655,7 @@ } }, { - "id": "5da66704-5cb1-4979-bb22-03acd2fa7539", + "id": "bdb597ed-28e8-4ffc-9f72-e7603a2a6926", "name": "IAI Identity Outliers Ignore", "request": { "name": "IAI Identity Outliers Ignore", @@ -59430,7 +62687,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"abc123def456\",\n \"ghi789jkl012\"\n]", "options": { "raw": { "headerFamily": "json", @@ -59441,7 +62698,7 @@ }, "response": [ { - "id": "cd152b6b-708b-4129-a117-d18a51447c00", + "id": "75394e08-74cd-4b6f-a3ae-b000867bc150", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -59472,7 +62729,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"abc123def456\",\n \"ghi789jkl012\"\n]", "options": { "raw": { "headerFamily": "json", @@ -59488,7 +62745,7 @@ "_postman_previewlanguage": "text" }, { - "id": "61636aec-4f03-4935-8236-7607c6736329", + "id": "93f9dd69-bf67-42a9-845a-159b57a8d7f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59523,7 +62780,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"abc123def456\",\n \"ghi789jkl012\"\n]", "options": { "raw": { "headerFamily": "json", @@ -59540,12 +62797,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "79f12382-2c94-48e7-b042-5a023fbd8ead", + "id": "2a06e899-c77b-4488-a4e1-31316ee7e648", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59580,7 +62837,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"abc123def456\",\n \"ghi789jkl012\"\n]", "options": { "raw": { "headerFamily": "json", @@ -59597,12 +62854,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56d6720d-84c2-47d8-b7f4-0d631085f9eb", + "id": "55450261-79ee-467e-a55c-be2115bbb378", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59637,7 +62894,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"abc123def456\",\n \"ghi789jkl012\"\n]", "options": { "raw": { "headerFamily": "json", @@ -59654,12 +62911,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9b274428-7e92-4491-88bb-18bd1769b50f", + "id": "d817d079-259b-4fe6-96a2-8062d8dfde63", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59694,7 +62951,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"abc123def456\",\n \"ghi789jkl012\"\n]", "options": { "raw": { "headerFamily": "json", @@ -59711,12 +62968,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6f264be8-cec8-4f33-bb6a-1dd4b33bdc7c", + "id": "93f13e80-4634-4d58-a179-7489ed89a501", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59751,7 +63008,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"abc123def456\",\n \"ghi789jkl012\"\n]", "options": { "raw": { "headerFamily": "json", @@ -59768,7 +63025,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -59779,7 +63036,7 @@ } }, { - "id": "b01dee6b-525a-40fc-b21a-d2cd2ab57a11", + "id": "ca79f3b2-2de4-43ca-9a5c-deeebc43b14a", "name": "IAI Identity Outliers Unignore", "request": { "name": "IAI Identity Outliers Unignore", @@ -59811,7 +63068,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"abc123def456\",\n \"ghi789jkl012\"\n]", "options": { "raw": { "headerFamily": "json", @@ -59822,7 +63079,7 @@ }, "response": [ { - "id": "1aed417b-3655-43f4-a792-5ecc155b13b5", + "id": "796464f5-5bfb-4886-8f6a-f91dcb0e654c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -59853,7 +63110,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"abc123def456\",\n \"ghi789jkl012\"\n]", "options": { "raw": { "headerFamily": "json", @@ -59869,7 +63126,7 @@ "_postman_previewlanguage": "text" }, { - "id": "88a701ae-3d91-4cf1-bf35-379d5e78df46", + "id": "d1977aa5-a7e6-445c-9ad4-a2946825fe97", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59904,7 +63161,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"abc123def456\",\n \"ghi789jkl012\"\n]", "options": { "raw": { "headerFamily": "json", @@ -59921,12 +63178,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "637d5189-ad97-41fd-b932-38e5f3f6f942", + "id": "829c006d-22aa-4164-8412-d9833e64fd9f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59961,7 +63218,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"abc123def456\",\n \"ghi789jkl012\"\n]", "options": { "raw": { "headerFamily": "json", @@ -59978,12 +63235,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56613ce6-18b0-4d5f-9112-69191b5f6547", + "id": "830fccf1-9b1b-4789-adad-ddd94d682508", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60018,7 +63275,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"abc123def456\",\n \"ghi789jkl012\"\n]", "options": { "raw": { "headerFamily": "json", @@ -60035,12 +63292,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "168361ec-4bc6-4f3b-9077-c79b4b3f4608", + "id": "6a6ab2c0-d60f-42b5-adee-97c93e208cdd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60075,7 +63332,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"abc123def456\",\n \"ghi789jkl012\"\n]", "options": { "raw": { "headerFamily": "json", @@ -60092,12 +63349,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b64aa7d-b0fc-450d-982d-3923f04da0e1", + "id": "661d8609-7174-45bf-99c6-e59d3e0dfa8b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60132,7 +63389,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"abc123def456\",\n \"ghi789jkl012\"\n]", "options": { "raw": { "headerFamily": "json", @@ -60149,7 +63406,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -60160,7 +63417,7 @@ } }, { - "id": "91da1a03-2065-4c0c-8248-e37fa4f976f7", + "id": "f8dc24bb-d6d8-4f0f-b394-e65c26a5c585", "name": "IAI Identity Outliers Export", "request": { "name": "IAI Identity Outliers Export", @@ -60184,7 +63441,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -60200,7 +63457,7 @@ }, "response": [ { - "id": "b0143a24-5cd9-46c8-b012-0bbc01fb67e0", + "id": "aada0408-f748-4a12-8d4f-3b42d75158ce", "name": "Succeeded. Returns zip of 2 CSVs to download. 1 CSV for ignored outliers and 1 for non-ignored outliers", "originalRequest": { "url": { @@ -60219,7 +63476,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -60249,12 +63506,12 @@ "value": "application/zip" } ], - "body": "", + "body": "velit aliquip", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "9f6522c5-23ab-42da-b885-5bc3d312fc3f", + "id": "619bd9fe-6e0a-44b0-ad8b-8f2636688ea3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60273,7 +63530,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -60303,12 +63560,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5f9a40a2-434b-450c-abef-736ea48bbf2a", + "id": "66bc525a-31b3-4c03-8a5c-e169b3c1d7cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60327,7 +63584,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -60357,12 +63614,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e7aca784-293c-4148-9777-3f438a277c68", + "id": "8b396dbe-1ed2-4a3f-bf9c-259ec01356ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60381,7 +63638,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -60411,12 +63668,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e01b9ca7-8c92-41e7-bd10-0ebd1c76644d", + "id": "853b743a-247d-47da-b051-c129686ba253", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60435,7 +63692,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -60465,12 +63722,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e70d97c1-8ec5-4cf8-bfd3-2b47a1322eed", + "id": "db421281-899e-495e-bc34-51f5cac4fe6f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60489,7 +63746,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -60519,7 +63776,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -60530,7 +63787,7 @@ } }, { - "id": "abdb4752-a976-4d9c-bd1f-1e22c9328ac7", + "id": "d0baceee-d910-469d-9c6b-c220f9a7cee9", "name": "Get identity outlier contibuting feature summary", "request": { "name": "Get identity outlier contibuting feature summary", @@ -60550,7 +63807,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "04654b66-7561-4090-94f9-abee0722a1af", "key": "outlierFeatureId", "disabled": true, "description": { @@ -60571,7 +63828,7 @@ }, "response": [ { - "id": "cd0f2465-24fe-4162-ae0c-b4beaf2db41b", + "id": "2daae533-4204-44c9-bca5-681ad0c919fb", "name": "Succeeded. Returns selected contributing feature summary for an outlier", "originalRequest": { "url": { @@ -60616,15 +63873,15 @@ "type": "text/plain" }, "key": "accept-language", - "value": "" + "value": "velit aliquip" } ], - "body": "{\n \"contributingFeatureName\": \"\",\n \"identityOutlierDisplayName\": \"\",\n \"outlierFeatureDisplayValues\": [\n {\n \"displayName\": \"\",\n \"value\": \"\",\n \"valueType\": \"FLOAT\"\n },\n {\n \"displayName\": \"\",\n \"value\": \"\",\n \"valueType\": \"FLOAT\"\n }\n ],\n \"featureDefinition\": \"\",\n \"featureExplanation\": \"\",\n \"peerDisplayName\": \"\",\n \"peerIdentityId\": \"\",\n \"accessItemReference\": {}\n}", + "body": "{\n \"contributingFeatureName\": \"Rare Access\",\n \"identityOutlierDisplayName\": \"John Smith\",\n \"outlierFeatureDisplayValues\": [\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"dolore sit tempor aliquip voluptate\",\n \"valueType\": \"INTEGER\"\n },\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"in aute\",\n \"valueType\": \"INTEGER\"\n }\n ],\n \"featureDefinition\": \"Identity total number of entitlements\",\n \"featureExplanation\": \"An identity that has too much rare access has a higher change of becoming a security threat due to the unique access they possess\",\n \"peerDisplayName\": \"Mary Jane\",\n \"peerIdentityId\": \"9f9d5d53ad0e48fba7352f6da9f1b8gbg\",\n \"accessItemReference\": {\n \"displayName\": \"All Rare Entitlements\",\n \"searchPlaceholder\": \"Search by name or description\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "170d247a-3004-461e-bbd5-6548971052e4", + "id": "c3b0bc87-d883-48f9-b697-412ad8198681", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60663,12 +63920,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "793b59a2-f1f8-4b47-aacc-03db446cfb34", + "id": "9e1956e4-76b9-4efe-8b7d-ef0143d77554", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60707,12 +63964,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7445562-2687-4d6c-9f3a-b1b890676373", + "id": "00613c45-e291-4d38-a1ed-d2d5735d1f6a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60751,12 +64008,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "62eca532-c00f-430a-9cfb-72a8c8b4df28", + "id": "f7f14c85-d6a9-4a02-9ae4-f19e1780d35b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -60795,12 +64052,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "36f96d32-e5e9-45d1-b930-911b1cba9250", + "id": "53ece1b6-026b-4162-92d5-85b449dcf32f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60839,12 +64096,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d23322f1-f6ce-420d-a167-c7adb2dd304d", + "id": "a064fd59-d3f8-41af-b18f-088d64638ab5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60883,7 +64140,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -60900,7 +64157,7 @@ "description": "", "item": [ { - "id": "d4a0f727-8e9d-47dd-874e-92a32b20553f", + "id": "b7707cb5-7c70-4ff8-99ac-2d845e06e029", "name": "Identity Outliers List", "request": { "name": "Identity Outliers List", @@ -60943,13 +64200,13 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "entitlement", "key": "strategy", "disabled": true, "description": { @@ -60970,7 +64227,7 @@ }, "response": [ { - "id": "a75d15bb-aa80-4a65-a2af-e62cf361a373", + "id": "83cd827d-7beb-41f5-96bf-4ecdf827e18b", "name": "List of identities that are not included in peer groups.", "originalRequest": { "url": { @@ -61008,7 +64265,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -61038,12 +64295,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"type\": \"\",\n \"peer_group_id\": \"\",\n \"attributes\": {\n \"in9d7\": {}\n }\n },\n {\n \"id\": \"\",\n \"type\": \"\",\n \"peer_group_id\": \"\",\n \"attributes\": {\n \"in_b\": {},\n \"esseb\": {}\n }\n }\n]", + "body": "[\n {\n \"id\": \"enim dolor Lorem\",\n \"type\": \"dolore incididunt minim nisi\",\n \"peer_group_id\": \"nostrud sunt sed velit occaecat\",\n \"attributes\": {\n \"proident26\": {}\n }\n },\n {\n \"id\": \"ut ullamco sit\",\n \"type\": \"irure laborum eu\",\n \"peer_group_id\": \"Lorem veniam occaecat tempor\",\n \"attributes\": {\n \"ut6\": {},\n \"fugiat3b\": {}\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e97b03a-81be-4b5e-845e-1876cf712d41", + "id": "e3688732-7221-4d53-843e-31ec00f4a7ff", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61081,7 +64338,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -61111,12 +64368,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "60d36541-f30a-464e-a759-f6bdb20b00a3", + "id": "719dd498-b3ca-4615-81e3-a28de11d7729", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61154,7 +64411,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -61184,12 +64441,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c32a2a2-cd61-4456-8d28-2dd7cbce07e7", + "id": "a784f615-136d-4c17-9c59-2a0bf5b2a2fe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61227,7 +64484,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -61257,12 +64514,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b2376008-56f8-4de4-89f4-276794db866d", + "id": "d286e6ca-7418-493d-8eb7-638db2a6d0eb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61300,7 +64557,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -61330,12 +64587,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a64d91b3-be2f-43c6-befb-9e6ccd9500a4", + "id": "1d32f6f1-bfd0-4471-9082-e194b190a1f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61373,7 +64630,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -61403,7 +64660,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -61420,7 +64677,7 @@ "description": "", "item": [ { - "id": "93da1fa3-d621-4666-8c5c-1f0c36011549", + "id": "7babcd85-744c-47f8-9fe7-4bc2b5b71602", "name": "Returns a Recommendation Based on Object", "request": { "name": "Returns a Recommendation Based on Object", @@ -61452,7 +64709,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", + "raw": "{\n \"requests\": [\n {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -61463,7 +64720,7 @@ }, "response": [ { - "id": "ea5e4811-ee80-43d4-a0da-3b12be805d5f", + "id": "cc9856d0-5502-4b56-a60e-6f2ef34da52b", "name": "The recommendations for a customer", "originalRequest": { "url": { @@ -61498,7 +64755,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", + "raw": "{\n \"requests\": [\n {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -61515,12 +64772,12 @@ "value": "application/json" } ], - "body": "{\n \"response\": [\n {\n \"request\": {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n },\n \"recommendation\": \"NO\",\n \"interpretations\": [\n \"\",\n \"\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"\",\n \"entitlementId\": \"\",\n \"recommendation\": \"\",\n \"overallWeightedScore\": \"\",\n \"featureWeightedScores\": {\n \"est_6\": \"\",\n \"minim_86f\": \"\"\n },\n \"threshold\": \"\",\n \"identityAttributes\": {\n \"est_c\": {\n \"value\": \"\"\n },\n \"in0\": {\n \"value\": \"\"\n }\n },\n \"featureValues\": {\n \"feature\": \"\",\n \"numerator\": \"\",\n \"denominator\": \"\"\n }\n }\n },\n {\n \"request\": {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"NOT_FOUND\",\n \"interpretations\": [\n \"\",\n \"\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"\",\n \"entitlementId\": \"\",\n \"recommendation\": \"\",\n \"overallWeightedScore\": \"\",\n \"featureWeightedScores\": {\n \"aliqua_68\": \"\",\n \"dolor_4\": \"\"\n },\n \"threshold\": \"\",\n \"identityAttributes\": {\n \"Ut_7\": {\n \"value\": \"\"\n }\n },\n \"featureValues\": {\n \"feature\": \"\",\n \"numerator\": \"\",\n \"denominator\": \"\"\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\": 63610384.09448394,\n \"featureWeightedScores\": {\n \"eub\": -65698722.17354691,\n \"inbaa\": -76897263.53717497\n },\n \"threshold\": -16871306.18200113,\n \"identityAttributes\": {\n \"inc1\": {\n \"value\": \"nulla sunt sit\"\n },\n \"minime\": {\n \"value\": \"ad laborum fugiat\"\n },\n \"cupidatat714\": {\n \"value\": \"consectetur sed esse\"\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\": 69422178.54016936,\n \"featureWeightedScores\": {\n \"in_f0\": 37403864.06649953,\n \"adipisicing_431\": -31438698.14454083,\n \"id2fe\": 25472307.80642447,\n \"deserunt_7\": -21656047.54995191\n },\n \"threshold\": 70679537.77307996,\n \"identityAttributes\": {\n \"dolore_7\": {\n \"value\": \"elit sunt quis in aliqua\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6c86c0b5-7a6f-4587-8a05-174fe017459c", + "id": "6a3302bb-682b-464c-9d6e-962bf1c34897", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61555,7 +64812,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", + "raw": "{\n \"requests\": [\n {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -61572,12 +64829,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3d5e6a37-44b3-411f-87a8-d464b8aaa259", + "id": "4f5af752-03c5-4210-86ed-ff05f3e7071e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61612,7 +64869,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", + "raw": "{\n \"requests\": [\n {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -61629,12 +64886,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4fdb3ce7-f4f0-467a-9f03-9ec74edff37b", + "id": "086dbe8a-491c-4786-b43a-3f073b24e6c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61669,7 +64926,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", + "raw": "{\n \"requests\": [\n {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -61686,12 +64943,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9e6f65a0-ce70-4ed7-bee5-06a79744589c", + "id": "6d99795a-a6cf-4468-ac69-f96d956dfd5e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61726,7 +64983,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", + "raw": "{\n \"requests\": [\n {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -61743,12 +65000,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a863162-f78a-4519-93ae-582993d51818", + "id": "082974ec-5139-4852-b8e5-8e834f6b7cd0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61783,7 +65040,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", + "raw": "{\n \"requests\": [\n {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -61800,7 +65057,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -61811,7 +65068,7 @@ } }, { - "id": "ef36bd9f-9614-4e8c-b75b-a8cd4eb427bf", + "id": "91e76ebf-10bd-46ef-9cc7-0629ddcce48d", "name": "Get certification recommendation config values", "request": { "name": "Get certification recommendation config values", @@ -61841,7 +65098,7 @@ }, "response": [ { - "id": "a40bbc21-7835-451b-b7fc-59dcbdeb1685", + "id": "7b44889c-612b-4c2b-85f1-bd0c4d323c58", "name": "Cert recommendation configuration attributes", "originalRequest": { "url": { @@ -61880,12 +65137,12 @@ "value": "application/json" } ], - "body": "{\n \"recommenderFeatures\": [\n \"\",\n \"\"\n ],\n \"peerGroupPercentageThreshold\": \"\",\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", + "body": "{\n \"recommenderFeatures\": [\n \"jobTitle\",\n \"location\",\n \"peer_group\",\n \"department\",\n \"active\"\n ],\n \"peerGroupPercentageThreshold\": 0.5,\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "08082e05-94a7-4f79-9a44-8e1400882b8e", + "id": "b06c725a-3d6a-417d-b495-4ef8ed30900c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61924,12 +65181,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "31dd6799-51a0-4616-b654-3d69cb55aae7", + "id": "63da28a7-a9c0-4636-9564-ab84662fea64", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61968,12 +65225,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b8f8594-2b86-4dd4-98b6-bdac388ec0c2", + "id": "599a5f3e-5d8a-4b21-a735-805859d7faa4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62012,12 +65269,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c770c920-c74a-429a-ba50-6df2a36adfa1", + "id": "af27d311-cebe-4f15-9edb-7f0024c071a5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62056,7 +65313,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -62067,7 +65324,7 @@ } }, { - "id": "620e0a5e-5f5e-4d9b-ab49-745b8279124a", + "id": "eea11fb8-960f-4a99-9d52-9a5e463b2097", "name": "Update certification recommendation config values", "request": { "name": "Update certification recommendation config values", @@ -62099,7 +65356,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"recommenderFeatures\": [\n \"\",\n \"\"\n ],\n \"peerGroupPercentageThreshold\": \"\",\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", + "raw": "{\n \"recommenderFeatures\": [\n \"jobTitle\",\n \"location\",\n \"peer_group\",\n \"department\",\n \"active\"\n ],\n \"peerGroupPercentageThreshold\": 0.5,\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -62110,7 +65367,7 @@ }, "response": [ { - "id": "8cafc95e-22c5-4e4a-8a72-145fe4c89203", + "id": "86d29697-b499-44ba-9827-641125aa3570", "name": "Cert recommendation configuration attributes after update", "originalRequest": { "url": { @@ -62145,7 +65402,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"recommenderFeatures\": [\n \"\",\n \"\"\n ],\n \"peerGroupPercentageThreshold\": \"\",\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", + "raw": "{\n \"recommenderFeatures\": [\n \"jobTitle\",\n \"location\",\n \"peer_group\",\n \"department\",\n \"active\"\n ],\n \"peerGroupPercentageThreshold\": 0.5,\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -62162,12 +65419,12 @@ "value": "application/json" } ], - "body": "{\n \"recommenderFeatures\": [\n \"\",\n \"\"\n ],\n \"peerGroupPercentageThreshold\": \"\",\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", + "body": "{\n \"recommenderFeatures\": [\n \"jobTitle\",\n \"location\",\n \"peer_group\",\n \"department\",\n \"active\"\n ],\n \"peerGroupPercentageThreshold\": 0.5,\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "77657ddf-c487-4cc3-95a5-f905fef50415", + "id": "bb5ab955-e7b8-4896-b6f4-860a5e1df44d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62202,7 +65459,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"recommenderFeatures\": [\n \"\",\n \"\"\n ],\n \"peerGroupPercentageThreshold\": \"\",\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", + "raw": "{\n \"recommenderFeatures\": [\n \"jobTitle\",\n \"location\",\n \"peer_group\",\n \"department\",\n \"active\"\n ],\n \"peerGroupPercentageThreshold\": 0.5,\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -62219,12 +65476,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "178165c9-4d6b-4594-b1e7-1d744b6484fc", + "id": "b7046242-8fec-4705-91b8-b95f45f97cd9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62259,7 +65516,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"recommenderFeatures\": [\n \"\",\n \"\"\n ],\n \"peerGroupPercentageThreshold\": \"\",\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", + "raw": "{\n \"recommenderFeatures\": [\n \"jobTitle\",\n \"location\",\n \"peer_group\",\n \"department\",\n \"active\"\n ],\n \"peerGroupPercentageThreshold\": 0.5,\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -62276,12 +65533,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "927eb016-a5c6-4f6d-a527-d5a0137fc6c4", + "id": "e75cf9e4-90cf-491b-8db2-5da155a3b323", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62316,7 +65573,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"recommenderFeatures\": [\n \"\",\n \"\"\n ],\n \"peerGroupPercentageThreshold\": \"\",\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", + "raw": "{\n \"recommenderFeatures\": [\n \"jobTitle\",\n \"location\",\n \"peer_group\",\n \"department\",\n \"active\"\n ],\n \"peerGroupPercentageThreshold\": 0.5,\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -62333,12 +65590,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2a6d7915-a731-495c-b880-504065c3dd26", + "id": "e23deca6-4cfd-4503-a08e-5c25c5db4be1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62373,7 +65630,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"recommenderFeatures\": [\n \"\",\n \"\"\n ],\n \"peerGroupPercentageThreshold\": \"\",\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", + "raw": "{\n \"recommenderFeatures\": [\n \"jobTitle\",\n \"location\",\n \"peer_group\",\n \"department\",\n \"active\"\n ],\n \"peerGroupPercentageThreshold\": 0.5,\n \"runAutoSelectOnce\": false,\n \"onlyTuneThreshold\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -62390,7 +65647,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -62407,7 +65664,7 @@ "description": "", "item": [ { - "id": "85c0fcc0-0771-4dfb-aaf6-1579d5f3891b", + "id": "f86eaf74-40fe-4915-bde6-f98bc2f69ff1", "name": "Create a role mining session", "request": { "name": "Create a role mining session", @@ -62438,7 +65695,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"PRUNE_THRESHOLD_OBTAINED\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": false,\n \"name\": \"\"\n}", + "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"pruneThreshold\": 5,\n \"prescribedPruneThreshold\": 10,\n \"minNumIdentitiesInPotentialRole\": 20,\n \"potentialRoleCount\": 0,\n \"potentialRolesReadyCount\": 0,\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"2c918090761a5aac0176215c46a62d58\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"identityCount\": 0,\n \"saved\": true,\n \"name\": \"Saved RM Session - 07/10\"\n}", "options": { "raw": { "headerFamily": "json", @@ -62449,7 +65706,7 @@ }, "response": [ { - "id": "14c951e0-3e13-4690-be8a-28da8274ec64", + "id": "9c391e0a-4f40-42c1-99d4-4a347d8db3ab", "name": "Submitted a role mining session request", "originalRequest": { "url": { @@ -62483,7 +65740,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"PRUNE_THRESHOLD_OBTAINED\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": false,\n \"name\": \"\"\n}", + "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"pruneThreshold\": 5,\n \"prescribedPruneThreshold\": 10,\n \"minNumIdentitiesInPotentialRole\": 20,\n \"potentialRoleCount\": 0,\n \"potentialRolesReadyCount\": 0,\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"2c918090761a5aac0176215c46a62d58\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"identityCount\": 0,\n \"saved\": true,\n \"name\": \"Saved RM Session - 07/10\"\n}", "options": { "raw": { "headerFamily": "json", @@ -62500,12 +65757,12 @@ "value": "application/json" } ], - "body": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"pruneThreshold\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"id\": \"\",\n \"createdDate\": \"\",\n \"modifiedDate\": \"\",\n \"type\": \"COMMON\"\n}", + "body": "{\n \"scope\": {\n \"identityIds\": [],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 70,\n \"prescribedPruneThreshold\": 83,\n \"potentialRoleCount\": 8,\n \"potentialRolesReadyCount\": 4,\n \"status\": {\n \"state\": \"POTENTIAL_ROLES_PROCESSING\"\n },\n \"id\": \"602ba738-cf48-499b-a780-7b67b3fc1ecf\",\n \"createdDate\": \"2021-09-08T16:11:05.348Z\",\n \"modifiedDate\": \"2021-09-08T16:11:05.348Z\",\n \"type\": \"SPECIALIZED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "70c27fab-0126-4ed4-9692-d42818d208c0", + "id": "f3c83c49-9a53-4960-86a5-dcd583f026ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62539,7 +65796,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"PRUNE_THRESHOLD_OBTAINED\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": false,\n \"name\": \"\"\n}", + "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"pruneThreshold\": 5,\n \"prescribedPruneThreshold\": 10,\n \"minNumIdentitiesInPotentialRole\": 20,\n \"potentialRoleCount\": 0,\n \"potentialRolesReadyCount\": 0,\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"2c918090761a5aac0176215c46a62d58\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"identityCount\": 0,\n \"saved\": true,\n \"name\": \"Saved RM Session - 07/10\"\n}", "options": { "raw": { "headerFamily": "json", @@ -62556,12 +65813,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "171bbda6-d382-46b7-82f1-1e34a4f1d609", + "id": "dc8951a0-1d6d-44f7-8ddd-06f4d545a408", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62595,7 +65852,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"PRUNE_THRESHOLD_OBTAINED\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": false,\n \"name\": \"\"\n}", + "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"pruneThreshold\": 5,\n \"prescribedPruneThreshold\": 10,\n \"minNumIdentitiesInPotentialRole\": 20,\n \"potentialRoleCount\": 0,\n \"potentialRolesReadyCount\": 0,\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"2c918090761a5aac0176215c46a62d58\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"identityCount\": 0,\n \"saved\": true,\n \"name\": \"Saved RM Session - 07/10\"\n}", "options": { "raw": { "headerFamily": "json", @@ -62612,12 +65869,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d8ea144b-4108-43a6-977f-4e1e2693c757", + "id": "bd717a11-7c8c-4276-b8d4-9a18238ca95e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62651,7 +65908,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"PRUNE_THRESHOLD_OBTAINED\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": false,\n \"name\": \"\"\n}", + "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"pruneThreshold\": 5,\n \"prescribedPruneThreshold\": 10,\n \"minNumIdentitiesInPotentialRole\": 20,\n \"potentialRoleCount\": 0,\n \"potentialRolesReadyCount\": 0,\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"2c918090761a5aac0176215c46a62d58\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"identityCount\": 0,\n \"saved\": true,\n \"name\": \"Saved RM Session - 07/10\"\n}", "options": { "raw": { "headerFamily": "json", @@ -62668,12 +65925,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ef895cf5-beef-4f46-9ee7-702e338b06c0", + "id": "8b19b918-5826-41c8-ac2b-c366b4209897", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62707,7 +65964,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"PRUNE_THRESHOLD_OBTAINED\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": false,\n \"name\": \"\"\n}", + "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"pruneThreshold\": 5,\n \"prescribedPruneThreshold\": 10,\n \"minNumIdentitiesInPotentialRole\": 20,\n \"potentialRoleCount\": 0,\n \"potentialRolesReadyCount\": 0,\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"2c918090761a5aac0176215c46a62d58\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"identityCount\": 0,\n \"saved\": true,\n \"name\": \"Saved RM Session - 07/10\"\n}", "options": { "raw": { "headerFamily": "json", @@ -62724,12 +65981,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "347530dd-c547-41a3-9b83-ad38a0f4dbdf", + "id": "e2fac523-c02c-42aa-a72e-9f6353d2bf4f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62763,7 +66020,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"PRUNE_THRESHOLD_OBTAINED\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": false,\n \"name\": \"\"\n}", + "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"pruneThreshold\": 5,\n \"prescribedPruneThreshold\": 10,\n \"minNumIdentitiesInPotentialRole\": 20,\n \"potentialRoleCount\": 0,\n \"potentialRolesReadyCount\": 0,\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"2c918090761a5aac0176215c46a62d58\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"identityCount\": 0,\n \"saved\": true,\n \"name\": \"Saved RM Session - 07/10\"\n}", "options": { "raw": { "headerFamily": "json", @@ -62780,7 +66037,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -62791,7 +66048,7 @@ } }, { - "id": "52e51d93-c3e2-4f13-b4df-8570f3f506dc", + "id": "62cc479b-b8a8-4d57-bb25-8971ac8d45ad", "name": "Retrieves all role mining sessions", "request": { "name": "Retrieves all role mining sessions", @@ -62814,7 +66071,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "saved eq \"true\" and name sw \"RM Session\"" }, { "disabled": true, @@ -62823,7 +66080,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdBy,createdDate" }, { "disabled": true, @@ -62850,7 +66107,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -62866,7 +66123,7 @@ }, "response": [ { - "id": "b8935441-2dcc-4af1-8acb-3a091090ade4", + "id": "250c376c-59df-4286-a1e6-796404e05028", "name": "Succeeded. Returns all role mining sessions that match the query parameters.", "originalRequest": { "url": { @@ -62884,7 +66141,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "saved eq \"true\" and name sw \"RM Session\"" }, { "disabled": true, @@ -62893,7 +66150,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdBy,createdDate" }, { "disabled": true, @@ -62920,7 +66177,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -62950,12 +66207,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"POTENTIAL_ROLES_PROCESSING\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": false,\n \"name\": \"\"\n },\n {\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"IDENTITIES_OBTAINED\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": false,\n \"name\": \"\"\n }\n]", + "body": "[\n {\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"pruneThreshold\": 5,\n \"prescribedPruneThreshold\": 10,\n \"minNumIdentitiesInPotentialRole\": 20,\n \"potentialRoleCount\": 0,\n \"potentialRolesReadyCount\": 0,\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"2c918090761a5aac0176215c46a62d58\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"identityCount\": 0,\n \"saved\": true,\n \"name\": \"Saved RM Session - 07/10\"\n },\n {\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"pruneThreshold\": 5,\n \"prescribedPruneThreshold\": 10,\n \"minNumIdentitiesInPotentialRole\": 20,\n \"potentialRoleCount\": 0,\n \"potentialRolesReadyCount\": 0,\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"2c918090761a5aac0176215c46a62d58\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"identityCount\": 0,\n \"saved\": true,\n \"name\": \"Saved RM Session - 07/10\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12506dc8-2f9d-4f27-b7a1-d9e944e6ca30", + "id": "40ef60a4-72ba-471c-9f34-b40a81609f05", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62973,7 +66230,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "saved eq \"true\" and name sw \"RM Session\"" }, { "disabled": true, @@ -62982,7 +66239,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdBy,createdDate" }, { "disabled": true, @@ -63009,7 +66266,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -63039,12 +66296,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8249774a-02ef-4b65-8f81-6e7f32915b74", + "id": "f273b942-7a00-40a5-99f4-63c827ab349c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63062,7 +66319,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "saved eq \"true\" and name sw \"RM Session\"" }, { "disabled": true, @@ -63071,7 +66328,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdBy,createdDate" }, { "disabled": true, @@ -63098,7 +66355,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -63128,12 +66385,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d9129b0-f9b8-443e-8911-a1832c0f8c48", + "id": "ca448186-1dbf-4286-81d4-2fb8762ad36f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63151,7 +66408,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "saved eq \"true\" and name sw \"RM Session\"" }, { "disabled": true, @@ -63160,7 +66417,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdBy,createdDate" }, { "disabled": true, @@ -63187,7 +66444,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -63217,12 +66474,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6e68d0ff-9449-41e3-9d03-ae18235f521d", + "id": "ee5ba96b-9f75-406d-a362-5f540fc45bea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63240,7 +66497,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "saved eq \"true\" and name sw \"RM Session\"" }, { "disabled": true, @@ -63249,7 +66506,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdBy,createdDate" }, { "disabled": true, @@ -63276,7 +66533,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -63306,12 +66563,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "759b5dce-2f88-4878-904e-304abce36706", + "id": "e81f6803-0371-4e62-93c2-e827dbf49ad7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63329,7 +66586,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "saved eq \"true\" and name sw \"RM Session\"" }, { "disabled": true, @@ -63338,7 +66595,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdBy,createdDate" }, { "disabled": true, @@ -63365,7 +66622,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -63395,7 +66652,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -63406,7 +66663,7 @@ } }, { - "id": "01e0c2d0-ea9f-4478-bb2d-5a7d318f78bc", + "id": "0fc8e940-4772-4432-87f0-50535fdf6e98", "name": "Patch a role mining session", "request": { "name": "Patch a role mining session", @@ -63426,7 +66683,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -63449,7 +66706,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/pruneThreshold\",\n \"value\": \"83\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/minNumIdentitiesInPotentialRole\",\n \"value\": \"10\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -63460,7 +66717,7 @@ }, "response": [ { - "id": "3ced705c-c1af-454a-b890-005ce6eb9c11", + "id": "e8447532-bd3b-4bc2-b24c-1e8f1a3adfa4", "name": "Success", "originalRequest": { "url": { @@ -63495,7 +66752,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/pruneThreshold\",\n \"value\": \"83\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/minNumIdentitiesInPotentialRole\",\n \"value\": \"10\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -63517,7 +66774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf1183ce-a4b8-4ff8-8e85-3b83e09f28ad", + "id": "a48e43e4-d93b-4324-8b44-3526d238760e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63552,7 +66809,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/pruneThreshold\",\n \"value\": \"83\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/minNumIdentitiesInPotentialRole\",\n \"value\": \"10\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -63569,12 +66826,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "54a0f789-be64-487c-8104-a8c49fa8d119", + "id": "871cc756-e78c-4fd2-96ba-c50c649090bb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63609,7 +66866,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/pruneThreshold\",\n \"value\": \"83\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/minNumIdentitiesInPotentialRole\",\n \"value\": \"10\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -63626,12 +66883,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5532dbd5-b687-43e5-8ef0-ad570ce9a11d", + "id": "803b5ab1-916f-48ff-aedf-bcbd9b5a24c5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63666,7 +66923,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/pruneThreshold\",\n \"value\": \"83\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/minNumIdentitiesInPotentialRole\",\n \"value\": \"10\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -63683,12 +66940,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6ffe7bf4-204e-4ff7-8a70-177c541a7357", + "id": "1821461d-c0d7-4567-92ed-9949d93c2b64", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -63723,7 +66980,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/pruneThreshold\",\n \"value\": \"83\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/minNumIdentitiesInPotentialRole\",\n \"value\": \"10\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -63740,12 +66997,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b3fa9de3-673b-4bf5-86db-6c81a4bfee49", + "id": "771978ab-5d4b-4f22-bd17-b586c5fddb82", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63780,7 +67037,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/pruneThreshold\",\n \"value\": \"83\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/minNumIdentitiesInPotentialRole\",\n \"value\": \"10\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -63797,12 +67054,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e7ab1879-2a2a-4f76-973c-b20a26e0366d", + "id": "9761531e-0584-41b4-9867-f67090862b4c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63837,7 +67094,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/pruneThreshold\",\n \"value\": \"83\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/minNumIdentitiesInPotentialRole\",\n \"value\": \"10\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/name\",\n \"value\": \"RM Session - 07/10/22\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -63854,7 +67111,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -63865,7 +67122,7 @@ } }, { - "id": "26f1c97c-e49a-439b-9e9b-7e98fcb5edce", + "id": "4b275c41-1ec2-4640-9f12-fdafa622d240", "name": "Get a role mining session", "request": { "name": "Get a role mining session", @@ -63885,7 +67142,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -63906,7 +67163,7 @@ }, "response": [ { - "id": "acda7467-4d1a-4ea8-bb02-fabe4d6510ee", + "id": "26254cc2-76f3-4944-9048-d93b42d93659", "name": "Returns a role mining session", "originalRequest": { "url": { @@ -63945,12 +67202,12 @@ "value": "application/json" } ], - "body": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"pruneThreshold\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"id\": \"\",\n \"createdDate\": \"\",\n \"modifiedDate\": \"\",\n \"type\": \"COMMON\"\n}", + "body": "{\n \"scope\": {\n \"identityIds\": [],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 70,\n \"prescribedPruneThreshold\": 83,\n \"potentialRoleCount\": 8,\n \"potentialRolesReadyCount\": 4,\n \"status\": {\n \"state\": \"POTENTIAL_ROLES_PROCESSING\"\n },\n \"id\": \"602ba738-cf48-499b-a780-7b67b3fc1ecf\",\n \"createdDate\": \"2021-09-08T16:11:05.348Z\",\n \"modifiedDate\": \"2021-09-08T16:11:05.348Z\",\n \"type\": \"SPECIALIZED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0da68e0c-7e19-4d59-bbce-16e2efb9a2dd", + "id": "0931f455-5304-485f-97ec-715bf080d0ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63989,12 +67246,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "599fabbc-de71-4455-a768-f943c365d471", + "id": "6d5e287f-b828-41b7-9430-6ceb5a30cb56", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64033,12 +67290,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "11d4dc08-79d8-4004-8853-6b0145ad076c", + "id": "d55c8bb3-5f60-4e65-808c-91d3eb9c8841", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64077,12 +67334,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "66dc6268-f6c2-4feb-a379-cc4802820ffa", + "id": "6a9db119-0434-44e7-a8bc-66179560b361", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64121,12 +67378,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "44b8f7ff-bd09-46f1-b074-29445bf46215", + "id": "1e625cfa-5562-4293-aeef-c5bc3d9cf466", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64165,12 +67422,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "25a75648-98e9-4d11-8da2-24e3e89152f5", + "id": "7cd3b495-aeff-42f4-a6d4-d7df0eca8da2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64209,7 +67466,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -64220,7 +67477,7 @@ } }, { - "id": "1f57797b-cfef-489f-a1e7-b899920b1b50", + "id": "f5c9674d-a0c1-4b8f-adf2-55d02f2f27d6", "name": "Get role mining session status state", "request": { "name": "Get role mining session status state", @@ -64241,7 +67498,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -64262,7 +67519,7 @@ }, "response": [ { - "id": "6c1fe42e-d8e3-4762-9178-bd71b3914a18", + "id": "22d5dca4-064d-4e57-b6d6-911f551326e9", "name": "Succeeded. Returns session status", "originalRequest": { "url": { @@ -64302,12 +67559,12 @@ "value": "application/json" } ], - "body": "{\n \"state\": \"POTENTIAL_ROLES_CREATED\"\n}", + "body": "{\n \"state\": \"CREATED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2c8467fd-1020-4df0-afcc-6dcb31a14bb7", + "id": "654c6510-283f-43c1-81d5-a30b00ddc371", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64347,12 +67604,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "580efe02-833d-431a-a850-1921d0bf4368", + "id": "5bb7d321-4b0c-474c-b51a-22afb58b1547", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64392,12 +67649,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e29bea64-ab46-4112-ab03-acf4b2ff3258", + "id": "059df731-ae0b-4b65-9bf4-fef1fbd0e4a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64437,12 +67694,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c239461c-5c25-4cb9-a266-2c83f64d8264", + "id": "8552bbb3-fc37-4f39-a525-e22ff0da1549", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64482,7 +67739,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -64493,7 +67750,7 @@ } }, { - "id": "3772501f-3ef2-42d2-943c-36444b30bd4a", + "id": "c187123c-73b3-41e0-bd87-87de7bc81c56", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -64518,7 +67775,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdDate" }, { "disabled": true, @@ -64527,7 +67784,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "(createdByName co \"int\")and (createdById sw \"2c9180907\")and (type eq \"COMMON\")and ((name co \"entt\")or (saved eq true))" }, { "disabled": true, @@ -64554,13 +67811,13 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -64581,7 +67838,7 @@ }, "response": [ { - "id": "c53f2b22-23eb-4732-9ee4-b8e1066ab19b", + "id": "eb4e5bc5-41a7-4ac1-86b2-447b917b3d55", "name": "Succeeded. Returns a list of potential role summaries for a role mining session.", "originalRequest": { "url": { @@ -64601,7 +67858,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdDate" }, { "disabled": true, @@ -64610,7 +67867,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "(createdByName co \"int\")and (createdById sw \"2c9180907\")and (type eq \"COMMON\")and ((name co \"entt\")or (saved eq true))" }, { "disabled": true, @@ -64637,7 +67894,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -64667,12 +67924,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"potentialRoleRef\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"identityCount\": \"\",\n \"entitlementCount\": \"\",\n \"identityGroupStatus\": \"\",\n \"provisionState\": \"POTENTIAL\",\n \"roleId\": \"\",\n \"density\": \"\",\n \"freshness\": \"\",\n \"quality\": \"\",\n \"type\": \"SPECIALIZED\",\n \"session\": {\n \"id\": \"\",\n \"name\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"pruneThreshold\": \"\",\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"AUTO_RM\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"potentialRoleRef\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"identityCount\": \"\",\n \"entitlementCount\": \"\",\n \"identityGroupStatus\": \"\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"\",\n \"density\": \"\",\n \"freshness\": \"\",\n \"quality\": \"\",\n \"type\": \"SPECIALIZED\",\n \"session\": {\n \"id\": \"\",\n \"name\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"pruneThreshold\": \"\",\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"POTENTIAL_ROLES_PROCESSING\",\n \"scopingMethod\": \"MANUAL\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\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 },\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\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 }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7985399-43ca-453d-be23-fd89f4d03222", + "id": "9a46cd21-085f-4b7b-96f1-c9c0ecc6015e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64692,7 +67949,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdDate" }, { "disabled": true, @@ -64701,7 +67958,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "(createdByName co \"int\")and (createdById sw \"2c9180907\")and (type eq \"COMMON\")and ((name co \"entt\")or (saved eq true))" }, { "disabled": true, @@ -64728,7 +67985,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -64758,12 +68015,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "83b1fd7a-719f-4c5c-82f2-d28edc940161", + "id": "1cd3f5b8-b0bc-43de-a454-53a7aeaefd8c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64783,7 +68040,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdDate" }, { "disabled": true, @@ -64792,7 +68049,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "(createdByName co \"int\")and (createdById sw \"2c9180907\")and (type eq \"COMMON\")and ((name co \"entt\")or (saved eq true))" }, { "disabled": true, @@ -64819,7 +68076,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -64849,12 +68106,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c09818a5-e240-4458-81ea-98214cc95fec", + "id": "ee4c05ed-ba71-40bc-9355-ad15f530c7a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64874,7 +68131,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdDate" }, { "disabled": true, @@ -64883,7 +68140,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "(createdByName co \"int\")and (createdById sw \"2c9180907\")and (type eq \"COMMON\")and ((name co \"entt\")or (saved eq true))" }, { "disabled": true, @@ -64910,7 +68167,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -64940,12 +68197,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d08dc0a9-a802-4673-96ba-45b261cd9bfe", + "id": "8d79239e-861b-4bf0-86d9-07c059443418", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64965,7 +68222,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdDate" }, { "disabled": true, @@ -64974,7 +68231,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "(createdByName co \"int\")and (createdById sw \"2c9180907\")and (type eq \"COMMON\")and ((name co \"entt\")or (saved eq true))" }, { "disabled": true, @@ -65001,7 +68258,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -65031,12 +68288,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a329138f-6eea-464b-8ab8-eb1a47f3ab96", + "id": "f14ed177-cf19-49b2-90fa-6816b06b792f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65056,7 +68313,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdDate" }, { "disabled": true, @@ -65065,7 +68322,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "(createdByName co \"int\")and (createdById sw \"2c9180907\")and (type eq \"COMMON\")and ((name co \"entt\")or (saved eq true))" }, { "disabled": true, @@ -65092,7 +68349,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -65122,7 +68379,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -65133,7 +68390,7 @@ } }, { - "id": "610441c4-106e-4ea9-8a20-03834b1500a4", + "id": "25e6c1f9-5b37-421f-8017-b2fcc135772f", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -65155,7 +68412,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -65165,7 +68422,7 @@ }, { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "potentialRoleId", "disabled": true, "description": { @@ -65186,7 +68443,7 @@ }, "response": [ { - "id": "e916b727-d081-45c8-a424-ae20cf1babde", + "id": "61b15e76-4d57-47b5-8956-bdff4802f138", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -65227,12 +68484,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"density\": \"\",\n \"description\": \"\",\n \"entitlementCount\": \"\",\n \"excludedEntitlements\": [\n \"\",\n \"\"\n ],\n \"freshness\": \"\",\n \"identityCount\": \"\",\n \"identityDistribution\": [\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"dolore_66\": \"\"\n },\n {\n \"fugiat514\": \"\",\n \"laborea\": \"\"\n }\n ]\n },\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"sint_d\": \"\",\n \"magna_2f\": \"\"\n },\n {\n \"id3\": \"\",\n \"ex0\": \"\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"name\": \"\",\n \"provisionState\": \"FAILED\",\n \"quality\": \"\",\n \"roleId\": \"\",\n \"saved\": \"\",\n \"session\": {\n \"id\": \"\",\n \"name\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"pruneThreshold\": \"\",\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"UPDATED\",\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 \"consectetur52\": \"aliqua et\",\n \"ullamco6be\": \"exercitation enim\"\n },\n {\n \"Lorem_c0_\": \"laborum in velit\",\n \"iruref76\": \"m\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"elitbf\": \"proident sint aliquip occaecat\"\n },\n {\n \"sint_9\": \"et pariatur culpa nostrud\"\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": "651b0bd6-fe6d-40c7-8c34-a88b4d8348c4", + "id": "00ac4a45-df18-4228-b926-bd1b713cad51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65273,12 +68530,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "59af9f9f-0891-4f8f-98f9-e662a1552d61", + "id": "80d85449-3fb5-4b71-82ed-497d3296f280", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65319,12 +68576,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f778e4aa-c7fb-400d-ac5b-4e15c5d45def", + "id": "051d6838-77b0-418f-961f-9515ae645c46", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65365,12 +68622,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f7f28931-72b3-4d6a-b81c-ea0f482c2fb4", + "id": "8d2fd2b3-4cfe-453d-8841-1b90600bb505", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65411,12 +68668,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a5055b79-33d6-4d41-bd78-1b1033092f83", + "id": "9e13e321-af32-4880-b783-49f1b5fffab0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65457,7 +68714,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -65468,7 +68725,7 @@ } }, { - "id": "286b4194-f7ee-42ae-b892-6a51e4533b0e", + "id": "82e6a00f-5884-4099-8ffd-9c13610ea14f", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -65490,7 +68747,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -65500,7 +68757,7 @@ }, { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "potentialRoleId", "disabled": true, "description": { @@ -65523,7 +68780,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -65534,7 +68791,7 @@ }, "response": [ { - "id": "ade36476-89af-4d52-8c04-fa349e2dab59", + "id": "e9e7d797-4fd5-4aff-b53a-aaa09c29acc9", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -65571,7 +68828,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -65593,7 +68850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3834aa44-650b-4f54-83be-2f156fd4be86", + "id": "0277f0ed-7246-4214-99d0-1b9975ddef51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65630,7 +68887,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -65647,12 +68904,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bb82a29d-9a57-4adb-8bee-46a8afc73870", + "id": "c069474a-a928-43f5-8887-e997e0959e92", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65689,7 +68946,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -65706,12 +68963,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "548cabaf-1d76-4e45-9f98-8337166f0ae9", + "id": "87241be1-0757-47fd-848e-b6d4c371e106", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65748,7 +69005,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -65765,12 +69022,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e3b98e4a-2ffb-49b0-950a-3c606297da8f", + "id": "a3e77977-cbfa-4560-b30d-5da5d77057c6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -65807,7 +69064,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -65824,12 +69081,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a827a183-6c13-4a24-98ec-d9d72110e4d6", + "id": "2a01cca9-85e3-45ca-ae69-02dbbfcac7f9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65866,7 +69123,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -65883,12 +69140,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "489dcc09-4c48-494a-8ac8-dabb4faa6f11", + "id": "97780000-bee3-4dd7-a437-b5ced1f3468c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65925,7 +69182,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -65942,7 +69199,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -65953,7 +69210,7 @@ } }, { - "id": "beea3c36-625e-49c5-ba5c-208658bd7be2", + "id": "8a1dcef0-fd68-4432-b0b0-f49a0241d224", "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", @@ -65998,13 +69255,13 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -66014,7 +69271,7 @@ }, { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "potentialRoleId", "disabled": true, "description": { @@ -66035,7 +69292,7 @@ }, "response": [ { - "id": "34b41eaa-8de5-42e3-bd2a-73f28213e446", + "id": "b45965fa-c02b-42a2-8cd7-872d067ccc1a", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -66075,7 +69332,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -66105,12 +69362,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n]", + "body": "[\n {\n \"name\": \"Slack\"\n },\n {\n \"name\": \"Slack\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6954dee-35cb-4682-9bb3-db3317272863", + "id": "1ea11932-d72a-4078-8d5d-0db34daf5f60", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66150,7 +69407,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -66180,12 +69437,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6bd1a9a5-a5b2-4b7c-a1ff-19ea10258f74", + "id": "f286befd-84ff-46e5-b6c6-01dee97ddb90", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66225,7 +69482,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -66255,12 +69512,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "68cd04e5-a1c4-4fd5-ac7b-2f5a0f1d52fa", + "id": "9792f704-da3e-42ff-9674-8247fbae981e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66300,7 +69557,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -66330,12 +69587,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f61e720e-7e6c-4ad2-a129-1cd7baab7bce", + "id": "3078cc49-2698-4b58-afcb-c84a17b24ed4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66375,7 +69632,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -66405,7 +69662,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -66416,7 +69673,7 @@ } }, { - "id": "7809ed3b-3b10-4552-8038-35353b50823f", + "id": "494ecc87-8310-44ac-96b8-e1a165a8de99", "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", @@ -66443,7 +69700,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "" + "value": "true" }, { "disabled": true, @@ -66452,7 +69709,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "popularity" }, { "disabled": true, @@ -66461,7 +69718,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "applicationName sw \"AD\"" }, { "disabled": true, @@ -66488,13 +69745,13 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -66504,7 +69761,7 @@ }, { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "potentialRoleId", "disabled": true, "description": { @@ -66525,7 +69782,7 @@ }, "response": [ { - "id": "4dd5ab2f-f1e3-482f-9aa7-236c14723c45", + "id": "b0a2a038-932c-43d3-a7e3-5d058e8cf151", "name": "Succeeded. Returns a list of entitlements for a potential role.", "originalRequest": { "url": { @@ -66547,7 +69804,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "" + "value": "true" }, { "disabled": true, @@ -66556,7 +69813,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "popularity" }, { "disabled": true, @@ -66565,7 +69822,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "applicationName sw \"AD\"" }, { "disabled": true, @@ -66592,7 +69849,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -66622,12 +69879,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"entitlementRef\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"attribute\": \"\"\n },\n \"name\": \"\",\n \"applicationName\": \"\",\n \"identityCount\": \"\",\n \"popularity\": \"\",\n \"popularityInOrg\": \"\",\n \"sourceId\": \"\",\n \"activitySourceState\": \"\",\n \"sourceUsagePercent\": \"\"\n },\n {\n \"entitlementRef\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"attribute\": \"\"\n },\n \"name\": \"\",\n \"applicationName\": \"\",\n \"identityCount\": \"\",\n \"popularity\": \"\",\n \"popularityInOrg\": \"\",\n \"sourceId\": \"\",\n \"activitySourceState\": \"\",\n \"sourceUsagePercent\": \"\"\n }\n]", + "body": "[\n {\n \"entitlementRef\": {\n \"name\": \"App.entitlement.1\",\n \"description\": \"Entitlement 1\",\n \"attribute\": \"groups\"\n },\n \"name\": \"Add/modify/delete users\",\n \"applicationName\": \"AppName\",\n \"identityCount\": 45,\n \"popularity\": 65.2,\n \"popularityInOrg\": 35.8,\n \"sourceId\": \"2c9180877620c1460176267f336a106f\",\n \"activitySourceState\": \"complete\",\n \"sourceUsagePercent\": 65.6\n },\n {\n \"entitlementRef\": {\n \"name\": \"App.entitlement.1\",\n \"description\": \"Entitlement 1\",\n \"attribute\": \"groups\"\n },\n \"name\": \"Add/modify/delete users\",\n \"applicationName\": \"AppName\",\n \"identityCount\": 45,\n \"popularity\": 65.2,\n \"popularityInOrg\": 35.8,\n \"sourceId\": \"2c9180877620c1460176267f336a106f\",\n \"activitySourceState\": \"complete\",\n \"sourceUsagePercent\": 65.6\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "acf1aa6b-1b1d-49e2-ba00-048961115b80", + "id": "9bd686dc-26f5-4750-9ebc-0039767e06c4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66649,7 +69906,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "" + "value": "true" }, { "disabled": true, @@ -66658,7 +69915,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "popularity" }, { "disabled": true, @@ -66667,7 +69924,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "applicationName sw \"AD\"" }, { "disabled": true, @@ -66694,7 +69951,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -66724,12 +69981,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ac7c4874-62f2-4c3f-bd59-6127b5b4165d", + "id": "2470b5dd-e86c-4e6e-be55-470a649398d6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66751,7 +70008,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "" + "value": "true" }, { "disabled": true, @@ -66760,7 +70017,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "popularity" }, { "disabled": true, @@ -66769,7 +70026,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "applicationName sw \"AD\"" }, { "disabled": true, @@ -66796,7 +70053,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -66826,12 +70083,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5c6d206-e3a4-45c0-afa3-6103437d457e", + "id": "e194cfc1-02dd-4d05-a934-38e662d589dd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66853,7 +70110,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "" + "value": "true" }, { "disabled": true, @@ -66862,7 +70119,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "popularity" }, { "disabled": true, @@ -66871,7 +70128,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "applicationName sw \"AD\"" }, { "disabled": true, @@ -66898,7 +70155,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -66928,12 +70185,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9645e1fa-fd77-473f-8b02-67e038880ba5", + "id": "7255e44e-0869-4a35-8466-700b4b2e47d9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66955,7 +70212,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "" + "value": "true" }, { "disabled": true, @@ -66964,7 +70221,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "popularity" }, { "disabled": true, @@ -66973,7 +70230,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "applicationName sw \"AD\"" }, { "disabled": true, @@ -67000,7 +70257,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -67030,7 +70287,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -67041,7 +70298,7 @@ } }, { - "id": "deef8634-0225-4398-9bf5-0d213c4027b2", + "id": "e6f8f1b5-cdea-4961-aae1-8d0ec955a9af", "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", @@ -67068,13 +70325,13 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -67084,7 +70341,7 @@ }, { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "potentialRoleId", "disabled": true, "description": { @@ -67105,7 +70362,7 @@ }, "response": [ { - "id": "6a1df3bf-e282-4a40-953f-46749d13ac2d", + "id": "bb5900b4-cf92-4186-9954-e804ae92f0b1", "name": "Succeeded. Returns a map containing entitlement popularity distribution for a potential role.", "originalRequest": { "url": { @@ -67127,7 +70384,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "" + "value": "true" } ], "variable": [] @@ -67157,12 +70414,12 @@ "value": "application/json" } ], - "body": "{\n \"dolore3\": \"\"\n}", + "body": "{\n \"laboris_2c1\": 54643146\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4d93b53-5ca4-45a0-88c5-25a4a4e3b64a", + "id": "eed0a218-8a77-4369-b4e5-5f57cf30fd98", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67184,7 +70441,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "" + "value": "true" } ], "variable": [] @@ -67214,12 +70471,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "90a6a46d-a49c-40cc-9744-c7e3e6d04f81", + "id": "827cd45f-51c4-404c-80c9-cf13297912b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67241,7 +70498,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "" + "value": "true" } ], "variable": [] @@ -67271,12 +70528,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c8af7be8-6876-4a6d-a57d-46571ebea96d", + "id": "b34186f0-097c-4210-b95c-b17830182316", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67298,7 +70555,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "" + "value": "true" } ], "variable": [] @@ -67328,12 +70585,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3b12c361-4b87-4d7f-8ab1-828a2d27c4f4", + "id": "eda32f39-fd74-41be-9410-40d1d8839b8a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67355,7 +70612,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "" + "value": "true" } ], "variable": [] @@ -67385,7 +70642,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -67396,7 +70653,7 @@ } }, { - "id": "b5042497-421f-4342-b556-9992e8d60a97", + "id": "3772af6b-878c-4f7b-8f28-46946835d226", "name": "Edit entitlements for a potential role to exclude some entitlements", "request": { "name": "Edit entitlements for a potential role to exclude some entitlements", @@ -67419,7 +70676,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -67429,7 +70686,7 @@ }, { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "potentialRoleId", "disabled": true, "description": { @@ -67452,7 +70709,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ],\n \"exclude\": \"\"\n}", + "raw": "{\n \"ids\": [\n \"entId1\",\n \"entId2\"\n ],\n \"exclude\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -67463,7 +70720,7 @@ }, "response": [ { - "id": "5cfb7d6b-3316-4c4a-90aa-209c1759543d", + "id": "e023226d-5d97-4b3c-9c1b-dce922742f89", "name": "Adds or removes entitlements from a potential role's entitlement exclusion list.", "originalRequest": { "url": { @@ -67501,7 +70758,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ],\n \"exclude\": \"\"\n}", + "raw": "{\n \"ids\": [\n \"entId1\",\n \"entId2\"\n ],\n \"exclude\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -67518,12 +70775,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"density\": \"\",\n \"description\": \"\",\n \"entitlementCount\": \"\",\n \"excludedEntitlements\": [\n \"\",\n \"\"\n ],\n \"freshness\": \"\",\n \"identityCount\": \"\",\n \"identityDistribution\": [\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"dolore_66\": \"\"\n },\n {\n \"fugiat514\": \"\",\n \"laborea\": \"\"\n }\n ]\n },\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"sint_d\": \"\",\n \"magna_2f\": \"\"\n },\n {\n \"id3\": \"\",\n \"ex0\": \"\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"name\": \"\",\n \"provisionState\": \"FAILED\",\n \"quality\": \"\",\n \"roleId\": \"\",\n \"saved\": \"\",\n \"session\": {\n \"id\": \"\",\n \"name\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"pruneThreshold\": \"\",\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"UPDATED\",\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 \"consectetur52\": \"aliqua et\",\n \"ullamco6be\": \"exercitation enim\"\n },\n {\n \"Lorem_c0_\": \"laborum in velit\",\n \"iruref76\": \"m\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"elitbf\": \"proident sint aliquip occaecat\"\n },\n {\n \"sint_9\": \"et pariatur culpa nostrud\"\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": "b4e18f96-2bfa-42fb-97db-1d93adfda7d7", + "id": "1251512a-d690-46d6-ac60-6c2f7498f9b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67561,7 +70818,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ],\n \"exclude\": \"\"\n}", + "raw": "{\n \"ids\": [\n \"entId1\",\n \"entId2\"\n ],\n \"exclude\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -67578,12 +70835,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2bafcd87-0474-4b50-bca4-936452649de2", + "id": "c550d4dc-ed3c-47bf-a914-5ec6818abef2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67621,7 +70878,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ],\n \"exclude\": \"\"\n}", + "raw": "{\n \"ids\": [\n \"entId1\",\n \"entId2\"\n ],\n \"exclude\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -67638,12 +70895,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "876f4ebe-60d1-421d-80b7-b15774f14ace", + "id": "dc0acb9c-ec49-4c59-b890-68a07e80d2ea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67681,7 +70938,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ],\n \"exclude\": \"\"\n}", + "raw": "{\n \"ids\": [\n \"entId1\",\n \"entId2\"\n ],\n \"exclude\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -67698,12 +70955,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "316c303d-3f2e-402b-88a1-eaedd0ecbe70", + "id": "4e1724ca-9bae-4e45-9a61-e181f37e15db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67741,7 +70998,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ],\n \"exclude\": \"\"\n}", + "raw": "{\n \"ids\": [\n \"entId1\",\n \"entId2\"\n ],\n \"exclude\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -67758,7 +71015,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -67769,7 +71026,7 @@ } }, { - "id": "da520821-2b32-4b2c-90db-fbf046ad6e51", + "id": "45c9bfce-4c1b-4a40-8940-583cefcd7da0", "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", @@ -67796,7 +71053,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -67805,7 +71062,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -67832,13 +71089,13 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -67848,7 +71105,7 @@ }, { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "potentialRoleId", "disabled": true, "description": { @@ -67869,7 +71126,7 @@ }, "response": [ { - "id": "048e0cdd-abdd-49a0-b54d-dd7f40ad4c1a", + "id": "f3cfadc5-8ad5-43c9-8525-cb441a30e0a2", "name": "Succeeded. Returns a list of identities for a potential role.", "originalRequest": { "url": { @@ -67891,7 +71148,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -67900,7 +71157,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -67927,7 +71184,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -67957,12 +71214,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"Excepteur_35\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"sitfa\": \"\"\n }\n }\n]", + "body": "[\n {\n \"name\": \"Allene Abernathy-Welch\",\n \"attributes\": {\n \"jobTitle\": \"SQL Developer\",\n \"department\": \"IT\",\n \"location\": \"NYC\",\n \"firstName\": \"Allene\"\n }\n },\n {\n \"name\": \"Allene Abernathy-Welch\",\n \"attributes\": {\n \"jobTitle\": \"SQL Developer\",\n \"department\": \"IT\",\n \"location\": \"NYC\",\n \"firstName\": \"Allene\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7a104ae3-f38e-485c-bd99-04dc8fd9ac4f", + "id": "7b8e1f3f-eb11-4a1d-b732-9d652d9d9a57", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67984,7 +71241,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -67993,7 +71250,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -68020,7 +71277,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -68050,12 +71307,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "52bb14cc-bfb7-4d82-9bdd-c6457eeb9e71", + "id": "0ffe770a-6985-4020-9654-dd5126cdc909", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68077,7 +71334,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -68086,7 +71343,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -68113,7 +71370,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -68143,12 +71400,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9106d558-e071-40b1-858e-3f7d06fd31ad", + "id": "60b0f2b1-f585-4227-81ac-b1179d206aeb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68170,7 +71427,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -68179,7 +71436,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -68206,7 +71463,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -68236,12 +71493,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fe226491-08f6-4c46-a59a-ae84f38166b2", + "id": "94f394dd-b0e9-4f34-b3c2-46aa5a57145f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68263,7 +71520,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -68272,7 +71529,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -68299,7 +71556,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -68329,7 +71586,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -68340,7 +71597,7 @@ } }, { - "id": "5b7530fe-e4c2-43dc-bc01-44514e59f427", + "id": "91ed4d5e-a68e-4e1c-91e2-ed39204ece34", "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", @@ -68363,7 +71620,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -68373,7 +71630,7 @@ }, { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "potentialRoleId", "disabled": true, "description": { @@ -68394,7 +71651,7 @@ }, "response": [ { - "id": "bb621a64-0997-4603-aa3c-f5d3ae90d373", + "id": "941435c3-a8c0-4ff4-bf7c-5c2315ae7898", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -68436,12 +71693,12 @@ "value": "application/zip" } ], - "body": "", + "body": "velit aliquip", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "3bb4fa7d-e2f3-4ac8-bf8c-d86aaaa300cf", + "id": "7b08ac38-c10e-4187-86c6-92bb5d6925ad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68483,12 +71740,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ebf9bc3f-0088-4291-9fd8-53ac6052cd7b", + "id": "281c2fb0-9b0b-4d3f-87af-b59564385030", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68530,12 +71787,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a2640bf-c70b-49fc-a060-4a1581c2f374", + "id": "d4206a9c-c758-4d9f-829f-586299410603", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68577,12 +71834,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "33bfd7fd-015c-4ba6-a223-87f84ace48be", + "id": "91ffadea-90b4-4fa7-82fb-c282078dbd88", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68624,7 +71881,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -68635,7 +71892,7 @@ } }, { - "id": "c326b63c-3979-47c3-842f-6ab5a9f97962", + "id": "21b5bb5f-4ea9-468e-afa1-e3b6e3610182", "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", @@ -68658,7 +71915,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -68668,7 +71925,7 @@ }, { "type": "any", - "value": "", + "value": "278359a6-04b7-4669-9468-924cf580964a", "key": "potentialRoleId", "disabled": true, "description": { @@ -68691,7 +71948,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\"\n}", + "raw": "{\n \"minEntitlementPopularity\": 0,\n \"includeCommonAccess\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -68702,7 +71959,7 @@ }, "response": [ { - "id": "4de515c8-ffee-4303-be5b-79b20a74c423", + "id": "0c92ae5a-8069-4f84-a8a5-c7ade3954a8d", "name": "Job Submitted. Returns a reportId that can be used to download the zip once complete", "originalRequest": { "url": { @@ -68740,7 +71997,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\"\n}", + "raw": "{\n \"minEntitlementPopularity\": 0,\n \"includeCommonAccess\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -68757,12 +72014,12 @@ "value": "application/json" } ], - "body": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\",\n \"exportId\": \"\",\n \"status\": \"IN_PROGRESS\"\n}", + "body": "{\n \"exportId\": \"0c6cdb76-1227-4aaf-af21-192dbdfbfa04\",\n \"status\": \"QUEUED\",\n \"minEntitlementPopularity\": 0,\n \"includeCommonAccess\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f1c6d90-c37f-47c2-89d0-2cc5e7bbd80d", + "id": "c91029ff-1b4c-431d-ab67-1056574be36e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68800,7 +72057,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\"\n}", + "raw": "{\n \"minEntitlementPopularity\": 0,\n \"includeCommonAccess\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -68817,12 +72074,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "461ddfe6-7a9c-4485-bfd3-02b51cd30252", + "id": "60e60400-e4e6-464f-944c-88f83ed0b345", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68860,7 +72117,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\"\n}", + "raw": "{\n \"minEntitlementPopularity\": 0,\n \"includeCommonAccess\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -68877,12 +72134,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2727bbe5-5620-4087-b9be-9d2917dd7bad", + "id": "3ba8210b-fc5b-49bb-8333-0c4baa3e87c0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68920,7 +72177,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\"\n}", + "raw": "{\n \"minEntitlementPopularity\": 0,\n \"includeCommonAccess\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -68937,12 +72194,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "32b10b8e-df88-408d-bfb0-85a7d9bf1876", + "id": "d5ab6baf-4df7-4e14-9012-bade33b3798d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68980,7 +72237,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\"\n}", + "raw": "{\n \"minEntitlementPopularity\": 0,\n \"includeCommonAccess\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -68997,7 +72254,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -69008,7 +72265,7 @@ } }, { - "id": "83619815-07fe-4839-a984-94c80d8ca992", + "id": "32b1860a-eadf-4471-9c77-fe17b622b919", "name": "Retrieve status of a potential role export job", "request": { "name": "Retrieve status of a potential role export job", @@ -69032,7 +72289,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -69042,7 +72299,7 @@ }, { "type": "any", - "value": "", + "value": "278359a6-04b7-4669-9468-924cf580964a", "key": "potentialRoleId", "disabled": true, "description": { @@ -69052,7 +72309,7 @@ }, { "type": "any", - "value": "", + "value": "4940ffd4-836f-48a3-b2b0-6d498c3fdf40", "key": "exportId", "disabled": true, "description": { @@ -69073,7 +72330,7 @@ }, "response": [ { - "id": "af85ac6b-0926-415a-aded-5094d0f1b02a", + "id": "7809bb7f-73b6-44c1-8ce1-fb2316409dfe", "name": "Success. Returns the current status of this export", "originalRequest": { "url": { @@ -69116,12 +72373,12 @@ "value": "application/json" } ], - "body": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\",\n \"exportId\": \"\",\n \"status\": \"IN_PROGRESS\"\n}", + "body": "{\n \"exportId\": \"0c6cdb76-1227-4aaf-af21-192dbdfbfa04\",\n \"status\": \"QUEUED\",\n \"minEntitlementPopularity\": 0,\n \"includeCommonAccess\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c3218149-ba75-4e51-b382-aed91be67674", + "id": "24502689-ee14-4978-8d69-e6b9066cd230", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69164,12 +72421,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8e0e086e-6862-4bc7-8e7a-97bde2aee902", + "id": "21252024-86f1-4d00-9e52-8c897a0587c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69212,12 +72469,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bce62e89-d653-4bc1-8b05-bbc86873ff3c", + "id": "ef32f263-e37b-44dd-9bf0-01e8b212d256", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69260,12 +72517,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "836c9b17-9ad0-4aea-8bb4-6c5df8cb1276", + "id": "4b5682a3-1a05-4a0e-b8e1-43b6447e6976", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69308,7 +72565,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -69319,7 +72576,7 @@ } }, { - "id": "96ddc861-a54f-4886-a7b8-788b445fe18a", + "id": "35093724-0dc2-4f93-a6ad-3783f3a64ed4", "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", @@ -69344,7 +72601,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -69354,7 +72611,7 @@ }, { "type": "any", - "value": "", + "value": "278359a6-04b7-4669-9468-924cf580964a", "key": "potentialRoleId", "disabled": true, "description": { @@ -69364,7 +72621,7 @@ }, { "type": "any", - "value": "", + "value": "4940ffd4-836f-48a3-b2b0-6d498c3fdf40", "key": "exportId", "disabled": true, "description": { @@ -69385,7 +72642,7 @@ }, "response": [ { - "id": "b34fae11-df7c-4774-b853-e214f3dd3d3a", + "id": "5ad921f6-6c04-499d-9481-fc29db3c9426", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -69429,12 +72686,12 @@ "value": "application/zip" } ], - "body": "", + "body": "velit aliquip", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "8a7ce613-4793-49da-a6c7-29ce2aa39e71", + "id": "567ced12-1873-4d2e-bfcf-e419a1d4e340", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69478,12 +72735,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8f4437be-b162-46b7-bec5-fd13d5cd428b", + "id": "de2897c7-9ccf-442b-92cc-62a2b803c8ee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69527,12 +72784,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fcaf7def-ad04-47ee-8e65-014989044ee8", + "id": "69d2638f-df70-45f9-8136-c198e8043abb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69576,12 +72833,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "cce78351-9409-4f15-9a6d-0f549980eea8", + "id": "5de5eede-e2a9-4d04-b9d7-4dbaf784891d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69625,7 +72882,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -69636,7 +72893,7 @@ } }, { - "id": "5a8c6868-fdde-42a7-aa90-bd0d025d26b3", + "id": "d4ca6dc9-4e74-42c5-aca9-e823bc8913c7", "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.", @@ -69678,7 +72935,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -69688,7 +72945,7 @@ }, { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "potentialRoleId", "disabled": true, "description": { @@ -69711,7 +72968,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"ownerId\": \"\"\n}", + "raw": "{\n \"roleName\": \"Finance - Accounting\",\n \"roleDescription\": \"General access for accounting department\",\n \"ownerId\": \"2b568c65bc3c4c57a43bd97e3a8e41\"\n}", "options": { "raw": { "headerFamily": "json", @@ -69722,7 +72979,7 @@ }, "response": [ { - "id": "f71a1cf7-dd68-43d8-bc85-842c1345fb09", + "id": "5532f5a7-d88c-4fec-baea-3a1d90ab831d", "name": "Accepted. Returns a potential role summary including the status of the provison request", "originalRequest": { "url": { @@ -69779,7 +73036,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"ownerId\": \"\"\n}", + "raw": "{\n \"roleName\": \"Finance - Accounting\",\n \"roleDescription\": \"General access for accounting department\",\n \"ownerId\": \"2b568c65bc3c4c57a43bd97e3a8e41\"\n}", "options": { "raw": { "headerFamily": "json", @@ -69796,12 +73053,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"potentialRoleRef\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"identityCount\": \"\",\n \"entitlementCount\": \"\",\n \"identityGroupStatus\": \"\",\n \"provisionState\": \"FAILED\",\n \"roleId\": \"\",\n \"density\": \"\",\n \"freshness\": \"\",\n \"quality\": \"\",\n \"type\": \"COMMON\",\n \"session\": {\n \"id\": \"\",\n \"name\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"pruneThreshold\": \"\",\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"AUTO_RM\"\n }\n}", + "body": "{\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af4dff3e-b9c4-4c6f-8583-8bb6a9e34a2d", + "id": "9d9f71a7-b834-4936-9d99-822abfd544bd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69858,7 +73115,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"ownerId\": \"\"\n}", + "raw": "{\n \"roleName\": \"Finance - Accounting\",\n \"roleDescription\": \"General access for accounting department\",\n \"ownerId\": \"2b568c65bc3c4c57a43bd97e3a8e41\"\n}", "options": { "raw": { "headerFamily": "json", @@ -69875,12 +73132,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1d529e5d-1cb2-4724-9bd4-4c173da11736", + "id": "a7222959-bd7f-4efd-9243-a16ea4331bff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69937,7 +73194,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"ownerId\": \"\"\n}", + "raw": "{\n \"roleName\": \"Finance - Accounting\",\n \"roleDescription\": \"General access for accounting department\",\n \"ownerId\": \"2b568c65bc3c4c57a43bd97e3a8e41\"\n}", "options": { "raw": { "headerFamily": "json", @@ -69954,12 +73211,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "889c0bde-120e-4c25-b73d-928707f4b463", + "id": "2379ef39-e3a1-442f-bd59-93378a737c3a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70016,7 +73273,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"ownerId\": \"\"\n}", + "raw": "{\n \"roleName\": \"Finance - Accounting\",\n \"roleDescription\": \"General access for accounting department\",\n \"ownerId\": \"2b568c65bc3c4c57a43bd97e3a8e41\"\n}", "options": { "raw": { "headerFamily": "json", @@ -70033,12 +73290,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c7197e84-c0a3-4bd0-bc77-fcd5a9d588f5", + "id": "e003028c-eab2-41ce-bc19-9bb4711632bb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -70095,7 +73352,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"ownerId\": \"\"\n}", + "raw": "{\n \"roleName\": \"Finance - Accounting\",\n \"roleDescription\": \"General access for accounting department\",\n \"ownerId\": \"2b568c65bc3c4c57a43bd97e3a8e41\"\n}", "options": { "raw": { "headerFamily": "json", @@ -70112,12 +73369,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "89e69b60-d32f-411c-9e26-931a43cbcf08", + "id": "1bf5bc4c-4ac2-4f6c-849f-5c24455206a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70174,7 +73431,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"ownerId\": \"\"\n}", + "raw": "{\n \"roleName\": \"Finance - Accounting\",\n \"roleDescription\": \"General access for accounting department\",\n \"ownerId\": \"2b568c65bc3c4c57a43bd97e3a8e41\"\n}", "options": { "raw": { "headerFamily": "json", @@ -70191,7 +73448,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -70202,7 +73459,7 @@ } }, { - "id": "77c36288-b2ec-49ff-b098-b6ddb9294f3f", + "id": "3ac9351e-c65e-4a65-9a50-e32eabc034e0", "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", @@ -70229,7 +73486,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "populariity" }, { "disabled": true, @@ -70238,7 +73495,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "applicationName sw \"AD\"" }, { "disabled": true, @@ -70265,13 +73522,13 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId", "disabled": true, "description": { @@ -70281,7 +73538,7 @@ }, { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "potentialRoleId", "disabled": true, "description": { @@ -70302,7 +73559,7 @@ }, "response": [ { - "id": "c7184e38-7086-49b9-9cb7-40f8c7702860", + "id": "eb430ecb-3e56-45d6-91e0-0c9cbfe5381b", "name": "Succeeded. Returns a list of excluded entitlements for a potential roles.", "originalRequest": { "url": { @@ -70324,7 +73581,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "populariity" }, { "disabled": true, @@ -70333,7 +73590,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "applicationName sw \"AD\"" }, { "disabled": true, @@ -70360,7 +73617,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -70390,12 +73647,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"entitlementRef\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"attribute\": \"\"\n },\n \"name\": \"\",\n \"applicationName\": \"\",\n \"identityCount\": \"\",\n \"popularity\": \"\",\n \"popularityInOrg\": \"\",\n \"sourceId\": \"\",\n \"activitySourceState\": \"\",\n \"sourceUsagePercent\": \"\"\n },\n {\n \"entitlementRef\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"attribute\": \"\"\n },\n \"name\": \"\",\n \"applicationName\": \"\",\n \"identityCount\": \"\",\n \"popularity\": \"\",\n \"popularityInOrg\": \"\",\n \"sourceId\": \"\",\n \"activitySourceState\": \"\",\n \"sourceUsagePercent\": \"\"\n }\n]", + "body": "[\n {\n \"entitlementRef\": {\n \"name\": \"App.entitlement.1\",\n \"description\": \"Entitlement 1\",\n \"attribute\": \"groups\"\n },\n \"name\": \"Add/modify/delete users\",\n \"applicationName\": \"AppName\",\n \"identityCount\": 45,\n \"popularity\": 65.2,\n \"popularityInOrg\": 35.8,\n \"sourceId\": \"2c9180877620c1460176267f336a106f\",\n \"activitySourceState\": \"complete\",\n \"sourceUsagePercent\": 65.6\n },\n {\n \"entitlementRef\": {\n \"name\": \"App.entitlement.1\",\n \"description\": \"Entitlement 1\",\n \"attribute\": \"groups\"\n },\n \"name\": \"Add/modify/delete users\",\n \"applicationName\": \"AppName\",\n \"identityCount\": 45,\n \"popularity\": 65.2,\n \"popularityInOrg\": 35.8,\n \"sourceId\": \"2c9180877620c1460176267f336a106f\",\n \"activitySourceState\": \"complete\",\n \"sourceUsagePercent\": 65.6\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "be7ce00a-b9c0-4dbe-a89f-97790e4a8873", + "id": "aeafb444-023b-4c6c-8520-dae8d412774b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70417,7 +73674,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "populariity" }, { "disabled": true, @@ -70426,7 +73683,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "applicationName sw \"AD\"" }, { "disabled": true, @@ -70453,7 +73710,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -70483,12 +73740,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "002c1395-5539-48df-8cf6-7d42c7f3a233", + "id": "18645180-829b-4e30-a8e0-84a3371aee5e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70510,7 +73767,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "populariity" }, { "disabled": true, @@ -70519,7 +73776,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "applicationName sw \"AD\"" }, { "disabled": true, @@ -70546,7 +73803,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -70576,12 +73833,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "edff2496-3f1e-42d5-96bc-bd1b6b81f68d", + "id": "5e92d3c0-58f6-47eb-845e-3c6661a4fce8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70603,7 +73860,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "populariity" }, { "disabled": true, @@ -70612,7 +73869,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "applicationName sw \"AD\"" }, { "disabled": true, @@ -70639,7 +73896,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -70669,12 +73926,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f8a35749-a93d-41d0-8994-504881f34168", + "id": "f838bf74-e93d-443f-bfb7-370bc80352c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70696,7 +73953,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "populariity" }, { "disabled": true, @@ -70705,7 +73962,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "applicationName sw \"AD\"" }, { "disabled": true, @@ -70732,7 +73989,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -70762,7 +74019,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -70773,7 +74030,7 @@ } }, { - "id": "f8b58ebf-a1ab-44cf-8cbd-708f1db30027", + "id": "c9c66234-3414-4d36-af5d-c005edd8ca49", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -70796,7 +74053,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdDate" }, { "disabled": true, @@ -70805,7 +74062,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "(createdByName co \"int\") and (createdById sw \"2c9180907\") and (type eq \"COMMON\") and ((name co \"entt\") or (saved eq true))" }, { "disabled": true, @@ -70832,7 +74089,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -70848,7 +74105,7 @@ }, "response": [ { - "id": "514554af-a30e-42f9-96f5-bb5c9fe69ccd", + "id": "284ba572-2162-48c0-9da2-653d8824ddb1", "name": "Succeeded. Returns all potential role summaries that match the query parameters.", "originalRequest": { "url": { @@ -70866,7 +74123,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdDate" }, { "disabled": true, @@ -70875,7 +74132,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "(createdByName co \"int\") and (createdById sw \"2c9180907\") and (type eq \"COMMON\") and ((name co \"entt\") or (saved eq true))" }, { "disabled": true, @@ -70902,7 +74159,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -70932,12 +74189,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"potentialRoleRef\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"identityCount\": \"\",\n \"entitlementCount\": \"\",\n \"identityGroupStatus\": \"\",\n \"provisionState\": \"POTENTIAL\",\n \"roleId\": \"\",\n \"density\": \"\",\n \"freshness\": \"\",\n \"quality\": \"\",\n \"type\": \"SPECIALIZED\",\n \"session\": {\n \"id\": \"\",\n \"name\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"pruneThreshold\": \"\",\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"AUTO_RM\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"potentialRoleRef\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"identityCount\": \"\",\n \"entitlementCount\": \"\",\n \"identityGroupStatus\": \"\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"\",\n \"density\": \"\",\n \"freshness\": \"\",\n \"quality\": \"\",\n \"type\": \"SPECIALIZED\",\n \"session\": {\n \"id\": \"\",\n \"name\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"pruneThreshold\": \"\",\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"POTENTIAL_ROLES_PROCESSING\",\n \"scopingMethod\": \"MANUAL\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\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 },\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\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 }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1f090b20-a39a-4f53-bead-d0e36c559c1a", + "id": "c239ec08-6c2b-4345-bc09-0417753d5ede", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70955,7 +74212,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdDate" }, { "disabled": true, @@ -70964,7 +74221,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "(createdByName co \"int\") and (createdById sw \"2c9180907\") and (type eq \"COMMON\") and ((name co \"entt\") or (saved eq true))" }, { "disabled": true, @@ -70991,7 +74248,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -71021,12 +74278,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5582f8f3-cc31-4f59-a7cb-55f85a2361e1", + "id": "dfbceb63-9424-42ff-9e32-fc15a4251dd0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71044,7 +74301,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdDate" }, { "disabled": true, @@ -71053,7 +74310,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "(createdByName co \"int\") and (createdById sw \"2c9180907\") and (type eq \"COMMON\") and ((name co \"entt\") or (saved eq true))" }, { "disabled": true, @@ -71080,7 +74337,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -71110,12 +74367,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b64d5c4-6915-4baf-9ffd-de43b2c424bf", + "id": "abef9186-50ed-491c-9e6d-08ce3ce80157", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71133,7 +74390,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdDate" }, { "disabled": true, @@ -71142,7 +74399,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "(createdByName co \"int\") and (createdById sw \"2c9180907\") and (type eq \"COMMON\") and ((name co \"entt\") or (saved eq true))" }, { "disabled": true, @@ -71169,7 +74426,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -71199,12 +74456,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9d10cd44-8e20-4615-8d27-b19f0f5aff15", + "id": "791688b4-8d29-440a-8968-6933514f306c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71222,7 +74479,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdDate" }, { "disabled": true, @@ -71231,7 +74488,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "(createdByName co \"int\") and (createdById sw \"2c9180907\") and (type eq \"COMMON\") and ((name co \"entt\") or (saved eq true))" }, { "disabled": true, @@ -71258,7 +74515,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -71288,12 +74545,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb78762d-a112-4192-9d4a-5aa90fbfe8b1", + "id": "66956eac-f597-43eb-bbf1-93ac32c11168", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71311,7 +74568,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "createdDate" }, { "disabled": true, @@ -71320,7 +74577,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "(createdByName co \"int\") and (createdById sw \"2c9180907\") and (type eq \"COMMON\") and ((name co \"entt\") or (saved eq true))" }, { "disabled": true, @@ -71347,7 +74604,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -71377,7 +74634,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -71388,7 +74645,7 @@ } }, { - "id": "40a02e19-72f2-4845-a45a-5e841e57dde9", + "id": "ef6f39c8-e2a9-44aa-871d-079e078b872e", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -71408,7 +74665,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "potentialRoleId", "disabled": true, "description": { @@ -71429,7 +74686,7 @@ }, "response": [ { - "id": "c8eb9a75-3b98-4561-b608-f876c8962c39", + "id": "f30c6895-f34f-4948-8aa1-816eb19b93af", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -71468,12 +74725,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"density\": \"\",\n \"description\": \"\",\n \"entitlementCount\": \"\",\n \"excludedEntitlements\": [\n \"\",\n \"\"\n ],\n \"freshness\": \"\",\n \"identityCount\": \"\",\n \"identityDistribution\": [\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"dolore_66\": \"\"\n },\n {\n \"fugiat514\": \"\",\n \"laborea\": \"\"\n }\n ]\n },\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"sint_d\": \"\",\n \"magna_2f\": \"\"\n },\n {\n \"id3\": \"\",\n \"ex0\": \"\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"name\": \"\",\n \"provisionState\": \"FAILED\",\n \"quality\": \"\",\n \"roleId\": \"\",\n \"saved\": \"\",\n \"session\": {\n \"id\": \"\",\n \"name\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"pruneThreshold\": \"\",\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"UPDATED\",\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 \"consectetur52\": \"aliqua et\",\n \"ullamco6be\": \"exercitation enim\"\n },\n {\n \"Lorem_c0_\": \"laborum in velit\",\n \"iruref76\": \"m\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"elitbf\": \"proident sint aliquip occaecat\"\n },\n {\n \"sint_9\": \"et pariatur culpa nostrud\"\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": "9e91f0a6-7559-4c08-b0cd-14d6d073fbd9", + "id": "5165f2cc-91d6-47c2-874c-67cc17bae206", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71512,12 +74769,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ba74d0d9-7f0d-4f53-add9-c6d2026114e2", + "id": "d30dc894-baad-4d3c-b816-617797cfd1ba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71556,12 +74813,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "889e64aa-69f6-423a-8a61-ed3ee2e40d9e", + "id": "3b5047cb-2400-4f6c-a124-4a43a661ca19", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71600,12 +74857,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "29895c5a-ec96-4379-8c11-955ebb37586a", + "id": "975bab7b-71e0-4b67-b6cf-cfc3b07437cb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71644,12 +74901,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "59cc469a-3ab1-44b8-b4e2-0788d59fa7d5", + "id": "4e802271-906e-4372-9bfd-3baebb0d5e31", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71688,7 +74945,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -71699,7 +74956,7 @@ } }, { - "id": "000039ef-f1cd-4b06-bde0-307b0e45d311", + "id": "1ddfe1b9-975b-4f29-824f-160d03d382ee", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -71719,7 +74976,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "potentialRoleId", "disabled": true, "description": { @@ -71734,7 +74991,7 @@ "type": "text/plain" }, "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "sessionId" } ] @@ -71752,7 +75009,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -71763,7 +75020,7 @@ }, "response": [ { - "id": "d9193c7b-74ef-4baf-98c4-a36ee8f4467d", + "id": "27856954-2a15-4303-a5a4-7396a2cbec41", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -71798,7 +75055,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -71820,7 +75077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b97a0e7f-da19-473c-98ed-8ee55556974c", + "id": "bef4cd88-ad2a-427f-88d5-3b412c0585a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71855,7 +75112,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -71872,12 +75129,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "969196da-7618-43bd-b08c-6a15793fb4a6", + "id": "68da13f4-fc07-4643-954e-e1842de9dcf5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71912,7 +75169,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -71929,12 +75186,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "659d43c7-d5e1-4c6e-b246-57dfb0b14090", + "id": "0586106d-e9a5-4aaa-bbf3-4c3a183c3232", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71969,7 +75226,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -71986,12 +75243,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "340a9fb5-2304-4839-b7ab-9cca27d31276", + "id": "afb3db9e-ae60-45e1-bc21-fd528b8e43ff", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -72026,7 +75283,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -72043,12 +75300,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c2a0d57d-832b-4f6b-9d92-1b0b97d9d46d", + "id": "4aea5572-224f-48d3-bdfa-fcfdaf4529f5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72083,7 +75340,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -72100,12 +75357,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "953ca3db-f907-4cf6-b3f3-b3e04c3aae38", + "id": "e6e5f101-bc48-4e5d-b95b-8e4c5848bd56", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72140,7 +75397,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"/description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Acct I - Potential Role\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/saved\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/saved\",\n \"value\": \"false\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"/name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Potential Role Accounting\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -72157,7 +75414,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -72168,7 +75425,7 @@ } }, { - "id": "e01afa34-9952-4eeb-931b-d8f469e6d77a", + "id": "0951bde8-ac8e-4ed5-9a9c-6cd71dceb46b", "name": "Retrieves all saved potential roles", "request": { "name": "Retrieves all saved potential roles", @@ -72192,7 +75449,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "modified" }, { "disabled": true, @@ -72219,7 +75476,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -72235,7 +75492,7 @@ }, "response": [ { - "id": "c1bc40e3-96e4-4891-b40a-c5d40e5a5317", + "id": "eb9117ba-86ca-4d87-bc51-80f0159f41a8", "name": "Succeeded. Returns a list of draft roles for a role mining session.", "originalRequest": { "url": { @@ -72254,7 +75511,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "modified" }, { "disabled": true, @@ -72281,7 +75538,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -72311,12 +75568,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"description\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"excludedEntitlements\": [\n \"\",\n \"\"\n ],\n \"modified\": \"\",\n \"name\": \"\",\n \"type\": \"SPECIALIZED\"\n },\n {\n \"description\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"excludedEntitlements\": [\n \"\",\n \"\"\n ],\n \"modified\": \"\",\n \"name\": \"\",\n \"type\": \"COMMON\"\n }\n]", + "body": "[\n {\n \"description\": \"Person who develops software\",\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\"\n ],\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"modified\": \"2020-09-16T18:49:32.150Z\",\n \"name\": \"Saved RM Session - 07/10\",\n \"type\": \"SPECIALIZED\"\n },\n {\n \"description\": \"Person who develops software\",\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\"\n ],\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"modified\": \"2020-09-16T18:49:32.150Z\",\n \"name\": \"Saved RM Session - 07/10\",\n \"type\": \"SPECIALIZED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aedfb96a-b9e3-49bf-9012-0e6f9a01c0a2", + "id": "b5fedd0b-f325-4164-a46b-b33159499574", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72335,7 +75592,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "modified" }, { "disabled": true, @@ -72362,7 +75619,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -72392,12 +75649,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "229d9b98-fe24-4c36-9086-a92ae1c16493", + "id": "29331378-2a00-4594-bf94-542ac40add25", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72416,7 +75673,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "modified" }, { "disabled": true, @@ -72443,7 +75700,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -72473,12 +75730,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "45358941-df45-4c70-bc1a-0aa4f8145cb6", + "id": "4dd64303-5405-4595-8a43-50a468884203", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72497,7 +75754,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "modified" }, { "disabled": true, @@ -72524,7 +75781,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -72554,12 +75811,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c01eae8e-75c0-4251-adcd-66324237566f", + "id": "42e8de31-567b-4bb1-89d2-2f6483f36854", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72578,7 +75835,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "modified" }, { "disabled": true, @@ -72605,7 +75862,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -72635,12 +75892,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "503d58e8-92c1-4744-bfd2-5c3bc50130dc", + "id": "83e22e20-894d-4592-a7b1-afc3c06f7c59", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72659,7 +75916,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "modified" }, { "disabled": true, @@ -72686,7 +75943,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -72716,7 +75973,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -72727,7 +75984,7 @@ } }, { - "id": "1f528cbf-4005-4be4-9f16-8c8bc53cbff9", + "id": "6b6d5cb0-ad29-4ee8-a376-9ac9fd9d8286", "name": "Retrieves potential role source usage", "request": { "name": "Retrieves potential role source usage", @@ -72754,7 +76011,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-usageCount" }, { "disabled": true, @@ -72781,13 +76038,13 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "e0cc5d7d-bf7f-4f81-b2af-8885b09d9923", "key": "potentialRoleId", "disabled": true, "description": { @@ -72797,7 +76054,7 @@ }, { "type": "any", - "value": "", + "value": "2c9180877620c1460176267f336a106f", "key": "sourceId", "disabled": true, "description": { @@ -72818,7 +76075,7 @@ }, "response": [ { - "id": "47a3540b-98fe-48d7-b925-7dcdf58aff6e", + "id": "ca9b9081-56ee-48b7-88f9-58c75d378cf6", "name": "Succeeded. Returns a list of source usage for the identities in a potential role.", "originalRequest": { "url": { @@ -72840,7 +76097,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-usageCount" }, { "disabled": true, @@ -72867,7 +76124,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -72897,12 +76154,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"displayName\": \"\",\n \"email\": \"\",\n \"usageCount\": \"\"\n },\n {\n \"id\": \"\",\n \"displayName\": \"\",\n \"email\": \"\",\n \"usageCount\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"2c918089762475180176267f894b54dc\",\n \"displayName\": \"Kirk Koepp\",\n \"email\": \"kirk.koepp@testmail.identitynow.com\",\n \"usageCount\": 25\n },\n {\n \"id\": \"2c918089762475180176267f894b54dc\",\n \"displayName\": \"Kirk Koepp\",\n \"email\": \"kirk.koepp@testmail.identitynow.com\",\n \"usageCount\": 25\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "08e67845-10ee-4539-9b12-6da1bd3759f1", + "id": "cbadb02a-10dc-4d00-a33a-67c3c7b1f29b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72924,7 +76181,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-usageCount" }, { "disabled": true, @@ -72951,7 +76208,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -72981,12 +76238,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9af87865-37b1-4324-9da4-e3c3bfa20251", + "id": "85917e14-2d7e-4e7c-a4b5-0214132c4480", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73008,7 +76265,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-usageCount" }, { "disabled": true, @@ -73035,7 +76292,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -73065,12 +76322,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b8db6ab-8387-4c88-9041-02cdd7bfa272", + "id": "c213ea7e-4268-4207-8ad1-bc21d63b041a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73092,7 +76349,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-usageCount" }, { "disabled": true, @@ -73119,7 +76376,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -73149,12 +76406,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "40474fe9-4864-43dd-a7c3-704ebde8f888", + "id": "1f8a9d22-427b-4ee5-8529-a6a202bf474f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73176,7 +76433,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-usageCount" }, { "disabled": true, @@ -73203,7 +76460,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -73233,12 +76490,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7db900c5-1091-4ab5-99f9-73ea20a3feff", + "id": "31abaf3c-dd51-4c37-a495-65336a527af1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73260,7 +76517,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-usageCount" }, { "disabled": true, @@ -73287,7 +76544,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -73317,7 +76574,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -73334,7 +76591,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": "62045421-cdc4-4f3c-b1ed-7f601e6719ba", + "id": "0f140dbb-f195-4f45-96ca-fd1997bdb62d", "name": "Attribute synchronization for single identity.", "request": { "name": "Attribute synchronization for single identity.", @@ -73355,7 +76612,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "velit aliquip", "key": "identityId", "disabled": true, "description": { @@ -73376,7 +76633,7 @@ }, "response": [ { - "id": "7f73b9a4-5c0c-45ef-8811-19cf2908f1ff", + "id": "9c2a72b7-941b-41da-85c3-1037d9fd581d", "name": "An Identity Sync job", "originalRequest": { "url": { @@ -73416,12 +76673,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"status\": \"SUCCESS\",\n \"payload\": {\n \"type\": \"\",\n \"dataJson\": \"\"\n }\n}", + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3dfc\",\n \"status\": \"IN_PROGRESS\",\n \"payload\": {\n \"type\": \"SYNCHRONIZE_IDENTITY_ATTRIBUTES\",\n \"dataJson\": \"{\\\"identityId\\\":\\\"2c918083746f642c01746f990884012a\\\"}\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5556876c-804b-4c98-b289-cbaea055f728", + "id": "897d8c2c-d4fb-4a6a-8dd6-b919173e418f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73461,12 +76718,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "718cf412-ce58-4591-88d7-930606abd2f3", + "id": "73c3e9b0-50de-4cb5-ad21-ca66a104af7d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73506,12 +76763,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2584164f-c5a2-4520-b00e-4f7497c5041d", + "id": "d790d8b0-9fe1-4ab4-a9b3-5c772327eb94", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73551,12 +76808,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a1a2680f-568e-48b1-853c-82034b8180b4", + "id": "b7a23608-8c37-4f12-b4ff-e7d38b4b7fa7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -73596,12 +76853,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d934d017-ff2d-4e1d-9807-4227b3ddbbc3", + "id": "7a38b96b-81bb-4d3f-a2cf-9db5c16da13a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73641,12 +76898,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e737c1c9-eea1-4b22-9025-5479f60eadca", + "id": "0a9d2708-67fd-466a-ae6b-aad90e2e56dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73686,7 +76943,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -73697,7 +76954,7 @@ } }, { - "id": "232da565-f40e-408d-a054-c52b1d740ead", + "id": "ffbb8b05-5976-4070-9a69-2bcb1bfd4740", "name": "Get ownership details", "request": { "name": "Get ownership details", @@ -73718,7 +76975,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ff8081814d2a8036014d701f3fbf53fa", "key": "identityId", "disabled": true, "description": { @@ -73739,7 +76996,7 @@ }, "response": [ { - "id": "2aa0f872-b9c2-4af5-af82-3cad7584710f", + "id": "dd5207d7-eb65-4a8f-9619-63dc43f370b3", "name": "Ownership association details of an Identity.", "originalRequest": { "url": { @@ -73779,12 +77036,12 @@ "value": "application/json" } ], - "body": "{\n \"associationDetails\": [\n {\n \"associationType\": \"\",\n \"entities\": [\n {\n \"identityEntity\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\"\n }\n },\n {\n \"identityEntity\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\"\n }\n }\n ]\n },\n {\n \"associationType\": \"\",\n \"entities\": [\n {\n \"identityEntity\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\"\n }\n },\n {\n \"identityEntity\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\"\n }\n }\n ]\n }\n ]\n}", + "body": "{\n \"associationDetails\": {\n \"associationType\": \"ROLE_OWNER\",\n \"entities\": [\n {\n \"id\": \"b660a232f05b4e04812ca974b3011e0f\",\n \"name\": \"Gaston.800ddf9640a\",\n \"type\": \"ROLE\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "98c07dc3-6f5f-481e-a747-bc2b239690c2", + "id": "53a329d3-eab2-4f5b-9f81-1103f7ee19a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73824,12 +77081,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a977d1c2-fc76-4b8f-87de-3eb8b3232906", + "id": "10193259-df18-4b9f-8369-bb922cd265a9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73869,12 +77126,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c2e9453-dca3-4625-ad8c-e1c028cb9fd4", + "id": "29d75b59-b303-4a57-a91d-10decbfbe726", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73914,12 +77171,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2149b37d-96e8-4c8a-9326-ce79934b15d2", + "id": "a5ac0902-0c0b-4688-b6e4-d09036acbce6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -73959,12 +77216,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "aa788c33-70e8-427d-82a5-96d3595e9c8c", + "id": "d726ef8c-da7e-4e08-bd76-47f1089ea926", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74004,12 +77261,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dc9abe09-145a-4ffa-bb02-f47d107cc01e", + "id": "61701142-a375-46bc-b047-4fd6334494b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74049,7 +77306,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -74060,7 +77317,7 @@ } }, { - "id": "17047867-59d4-4c85-96af-c9cb5f7771d1", + "id": "6095e13f-38dc-4b99-b4b2-31a0c26da5cb", "name": "List Identities", "request": { "name": "List Identities", @@ -74083,7 +77340,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"6c9079b270a266a60170a2779fcb0006\" or correlated eq false" }, { "disabled": true, @@ -74092,7 +77349,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-cloudStatus" }, { "disabled": true, @@ -74101,7 +77358,7 @@ "type": "text/plain" }, "key": "defaultFilter", - "value": "CORRELATED_ONLY" + "value": "NONE" }, { "disabled": true, @@ -74110,7 +77367,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -74144,7 +77401,7 @@ }, "response": [ { - "id": "382cfa3b-edc3-4c4a-a452-81857ea52ee4", + "id": "f960a98f-59a8-458a-b73f-0f0d80f76b76", "name": "List of identities.", "originalRequest": { "url": { @@ -74162,7 +77419,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"6c9079b270a266a60170a2779fcb0006\" or correlated eq false" }, { "disabled": true, @@ -74171,7 +77428,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-cloudStatus" }, { "disabled": true, @@ -74180,7 +77437,7 @@ "type": "text/plain" }, "key": "defaultFilter", - "value": "CORRELATED_ONLY" + "value": "NONE" }, { "disabled": true, @@ -74189,7 +77446,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -74237,12 +77494,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"alias\": \"\",\n \"emailAddress\": \"\",\n \"processingState\": \"ERROR\",\n \"identityStatus\": \"DISABLED\",\n \"managerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"isManager\": false,\n \"lastRefresh\": \"\",\n \"attributes\": {},\n \"lifecycleState\": {\n \"stateName\": \"\",\n \"manuallyUpdated\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"alias\": \"\",\n \"emailAddress\": \"\",\n \"processingState\": \"ERROR\",\n \"identityStatus\": \"TERMINATED\",\n \"managerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"isManager\": false,\n \"lastRefresh\": \"\",\n \"attributes\": {},\n \"lifecycleState\": {\n \"stateName\": \"\",\n \"manuallyUpdated\": \"\"\n }\n }\n]", + "body": "[\n {\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"alias\": \"walter.white\",\n \"emailAddress\": \"sender@example.com\",\n \"processingState\": \"ERROR\",\n \"identityStatus\": \"LOCKED\",\n \"managerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n },\n \"isManager\": true,\n \"lastRefresh\": \"2020-11-22T15:42:31.123Z\",\n \"attributes\": {},\n \"lifecycleState\": {\n \"stateName\": \"active\",\n \"manuallyUpdated\": true\n }\n },\n {\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"alias\": \"walter.white\",\n \"emailAddress\": \"sender@example.com\",\n \"processingState\": \"ERROR\",\n \"identityStatus\": \"LOCKED\",\n \"managerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n },\n \"isManager\": true,\n \"lastRefresh\": \"2020-11-22T15:42:31.123Z\",\n \"attributes\": {},\n \"lifecycleState\": {\n \"stateName\": \"active\",\n \"manuallyUpdated\": true\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "39bd7055-41a7-4e16-8a30-342931718a38", + "id": "6746e17c-ba3c-46a6-af29-b1f0d7f6c4a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74260,7 +77517,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"6c9079b270a266a60170a2779fcb0006\" or correlated eq false" }, { "disabled": true, @@ -74269,7 +77526,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-cloudStatus" }, { "disabled": true, @@ -74278,7 +77535,7 @@ "type": "text/plain" }, "key": "defaultFilter", - "value": "CORRELATED_ONLY" + "value": "NONE" }, { "disabled": true, @@ -74287,7 +77544,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -74335,12 +77592,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b0c46d91-9d74-4a96-8a9a-733dabbecbe8", + "id": "5975cf62-3046-4b64-9ee8-e0360d51f321", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74358,7 +77615,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"6c9079b270a266a60170a2779fcb0006\" or correlated eq false" }, { "disabled": true, @@ -74367,7 +77624,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-cloudStatus" }, { "disabled": true, @@ -74376,7 +77633,7 @@ "type": "text/plain" }, "key": "defaultFilter", - "value": "CORRELATED_ONLY" + "value": "NONE" }, { "disabled": true, @@ -74385,7 +77642,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -74433,12 +77690,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8fc2c9bf-174d-488f-9f20-e81e2c2e52fe", + "id": "cd1bf379-b05a-45cd-b8bc-3424f0f1db9b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74456,7 +77713,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"6c9079b270a266a60170a2779fcb0006\" or correlated eq false" }, { "disabled": true, @@ -74465,7 +77722,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-cloudStatus" }, { "disabled": true, @@ -74474,7 +77731,7 @@ "type": "text/plain" }, "key": "defaultFilter", - "value": "CORRELATED_ONLY" + "value": "NONE" }, { "disabled": true, @@ -74483,7 +77740,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -74531,12 +77788,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "71374b5a-9b6e-44a0-afae-4bc2bc7c1201", + "id": "18d68b94-04b0-4043-9656-5516fec6b238", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74554,7 +77811,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"6c9079b270a266a60170a2779fcb0006\" or correlated eq false" }, { "disabled": true, @@ -74563,7 +77820,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-cloudStatus" }, { "disabled": true, @@ -74572,7 +77829,7 @@ "type": "text/plain" }, "key": "defaultFilter", - "value": "CORRELATED_ONLY" + "value": "NONE" }, { "disabled": true, @@ -74581,7 +77838,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -74629,12 +77886,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1e20f5e7-fcac-42d2-845e-62874ce902fa", + "id": "64da84fc-4d01-44de-ab62-746b12637127", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74652,7 +77909,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"6c9079b270a266a60170a2779fcb0006\" or correlated eq false" }, { "disabled": true, @@ -74661,7 +77918,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-cloudStatus" }, { "disabled": true, @@ -74670,7 +77927,7 @@ "type": "text/plain" }, "key": "defaultFilter", - "value": "CORRELATED_ONLY" + "value": "NONE" }, { "disabled": true, @@ -74679,7 +77936,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -74727,7 +77984,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -74738,7 +77995,7 @@ } }, { - "id": "fa0f24a0-02cf-4637-ab68-dd9f49e14eb4", + "id": "e4f0744e-7da0-488b-b1cf-7aee3e71595c", "name": "Identity Details", "request": { "name": "Identity Details", @@ -74758,7 +78015,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -74779,7 +78036,7 @@ }, "response": [ { - "id": "a118a4c9-5c05-4442-b50f-5506d898a632", + "id": "99794a14-bb22-4ee9-848c-da1dc862bd03", "name": "An identity object", "originalRequest": { "url": { @@ -74818,12 +78075,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"alias\": \"\",\n \"emailAddress\": \"\",\n \"processingState\": \"OK\",\n \"identityStatus\": \"ERROR\",\n \"managerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"isManager\": false,\n \"lastRefresh\": \"\",\n \"attributes\": {},\n \"lifecycleState\": {\n \"stateName\": \"\",\n \"manuallyUpdated\": \"\"\n }\n}", + "body": "{\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"alias\": \"walter.white\",\n \"emailAddress\": \"sender@example.com\",\n \"processingState\": \"ERROR\",\n \"identityStatus\": \"LOCKED\",\n \"managerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n },\n \"isManager\": true,\n \"lastRefresh\": \"2020-11-22T15:42:31.123Z\",\n \"attributes\": {},\n \"lifecycleState\": {\n \"stateName\": \"active\",\n \"manuallyUpdated\": true\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35d714fe-74b8-442b-a901-b8562e149734", + "id": "a51690ee-510c-43e7-b734-55f78583fa16", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74862,12 +78119,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b1e632e8-18ba-44cf-be23-22e13fdc3a8e", + "id": "f60c3c98-915b-427d-8848-03b1c13dc128", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74906,12 +78163,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "40d41ce7-d549-4a8c-bcc8-d1b1c84318d9", + "id": "70431dc2-d7a8-4492-ad4e-8374d408a028", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74950,12 +78207,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2340e153-fda7-4284-b421-3da263cafd6c", + "id": "62deb85e-e64d-4fbc-8c2a-f889f39fd880", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -74994,12 +78251,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "40e07180-8aa6-4e86-8121-7c719f1bcab4", + "id": "c86acf07-0350-4648-bbf1-9fd5c573f82d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75038,12 +78295,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3c1c7e1-42c4-4296-bb5a-2589a60198b5", + "id": "2e997c1c-1fd6-4e40-995a-2622907ff1a7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75082,7 +78339,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -75093,7 +78350,7 @@ } }, { - "id": "2940760e-b878-4106-a4d7-09e4a9a78892", + "id": "de3640c0-e1ee-4f39-8d91-f04d52d36ae0", "name": "Deletes an identity.", "request": { "name": "Deletes an identity.", @@ -75113,7 +78370,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -75134,7 +78391,7 @@ }, "response": [ { - "id": "2452682a-7339-4dd1-ab93-a8ed82015a3b", + "id": "105b05e7-069f-4a47-b455-b64c0897415a", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -75168,7 +78425,7 @@ "_postman_previewlanguage": "text" }, { - "id": "84bc0dcd-3239-4066-a16e-5a6b4c2e986e", + "id": "918e917b-4524-4a6a-8d8c-f44d6a8b22bd", "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": { @@ -75207,12 +78464,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": \"\",\n \"associationDetails\": [\n {\n \"associationType\": \"\",\n \"entities\": [\n {\n \"identityEntity\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\"\n }\n },\n {\n \"identityEntity\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\"\n }\n }\n ]\n },\n {\n \"associationType\": \"\",\n \"entities\": [\n {\n \"identityEntity\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\"\n }\n },\n {\n \"identityEntity\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\"\n }\n }\n ]\n }\n ]\n}", + "body": "{\n \"message\": \"Identity is the owner of following resources\",\n \"associationDetails\": {\n \"associationType\": \"CAMPAIGN_OWNER\",\n \"entities\": [\n {\n \"id\": \"b660a232f05b4e04812ca974b3011e0f\",\n \"name\": \"Gaston.800ddf9640a\",\n \"type\": \"CAMPAIGN_CAMPAIGNER\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "248d0528-ce73-4597-aab7-48428f369194", + "id": "66443bc6-9d1a-4cb1-bf06-4478987f7cd9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75251,12 +78508,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e206fe1f-32e2-4876-b5fa-1857bef741e1", + "id": "b97a4aa7-77e8-43df-9918-bb3bbdc1e83e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75295,12 +78552,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "231ce7b5-5368-4aa0-983c-9df940baee53", + "id": "53ce3dd2-fe5b-4df9-9980-f284ea467b58", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -75339,12 +78596,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3eb22676-0613-4d68-b851-07d7ad8f1a5a", + "id": "9a55686c-dd0e-4bfb-a525-38d2da308c52", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75383,12 +78640,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e959afc-ffc4-4702-8576-5e26d39d7689", + "id": "b8c66cfe-2d21-4a5f-b61b-2e48f631b026", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75427,7 +78684,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -75438,7 +78695,7 @@ } }, { - "id": "bf1b368a-c187-48f2-8940-8d0aabc033b5", + "id": "cb0f8159-5b1f-422e-8ee3-f9ae61eff594", "name": "Process a list of identityIds", "request": { "name": "Process a list of identityIds", @@ -75470,7 +78727,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"ef38f94347e94562b5bb8424a56397d8\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -75481,7 +78738,7 @@ }, "response": [ { - "id": "7663c813-86ac-46ea-a049-1d9f3b6366ff", + "id": "6eeff632-1c33-466e-be84-df831bdd3c43", "name": "Object containing the DTO type TASK_RESULT and the job id for the task", "originalRequest": { "url": { @@ -75516,7 +78773,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"ef38f94347e94562b5bb8424a56397d8\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -75533,12 +78790,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\"\n}", + "body": "{\n \"type\": \"TASK_RESULT\",\n \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"name\": \"null\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dd81e749-f840-4a9f-afd7-b0282097b350", + "id": "fba48643-af9b-420d-b922-22495bab81c3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75573,7 +78830,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"ef38f94347e94562b5bb8424a56397d8\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -75590,12 +78847,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1a873980-883b-4ee9-b939-d70e2ebcda0e", + "id": "c72b3063-1069-4036-9f49-cf87135d7a10", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75630,7 +78887,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"ef38f94347e94562b5bb8424a56397d8\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -75647,12 +78904,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "61be621f-78a0-4699-8d5b-859b5c752b8d", + "id": "962902e9-5ba5-440d-820a-4c7e8c020875", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75687,7 +78944,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"ef38f94347e94562b5bb8424a56397d8\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -75704,12 +78961,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9667eea9-8f6d-47e8-a40b-5541cd099fb2", + "id": "071f6a1e-13fc-4819-8c10-892871158537", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -75744,7 +79001,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"ef38f94347e94562b5bb8424a56397d8\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -75761,12 +79018,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "cdbcb22e-fcdb-4644-a449-3a00024820c9", + "id": "fcecdf3c-c4e2-48d2-b446-359861141055", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75801,7 +79058,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"ef38f94347e94562b5bb8424a56397d8\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -75818,12 +79075,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e6bc2eb7-9777-4cd2-bd5a-9404c344e60e", + "id": "a6b6e5dc-b380-4d8c-8ac3-b420e934d3b8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75858,7 +79115,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityIds\": [\n \"\"\n ]\n}", + "raw": "{\n \"identityIds\": [\n \"ef38f94347e94562b5bb8424a56397d8\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -75875,7 +79132,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -75892,7 +79149,7 @@ "description": "", "item": [ { - "id": "901d1bdb-b724-4280-b5aa-24478a531b40", + "id": "8a9c9059-bcf8-43df-ae04-bff12ac6d6cc", "name": "List Identity Attributes", "request": { "name": "List Identity Attributes", @@ -75942,7 +79199,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -75958,7 +79215,7 @@ }, "response": [ { - "id": "5e5c5cb1-adf8-454e-a9d8-91f23d416853", + "id": "de4ad348-c2c9-4a1d-ad14-480051ed9d98", "name": "List of identity attributes", "originalRequest": { "url": { @@ -76003,7 +79260,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -76033,12 +79290,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n }\n]", + "body": "[\n {\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n },\n {\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "10b7735e-6324-42a5-b399-ac56c63dc665", + "id": "50d860d9-e4a8-4493-9fd2-f0ce86113f0b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76083,7 +79340,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -76113,12 +79370,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9c0ef3ab-5c66-422f-96a1-9a22499ba4ec", + "id": "d96a0153-e1ff-4546-bdda-b326b4f6264b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76163,7 +79420,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -76193,12 +79450,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b42b9064-e52c-4606-8ea4-7c88191d6d58", + "id": "42c6053e-d9d2-4ec1-ba77-a39e8b8b482e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76243,7 +79500,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -76273,12 +79530,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "33982bd2-90b8-4dbf-9aed-704439406006", + "id": "9d66df8e-195e-4ada-9bb4-dc7bd29e1852", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76323,7 +79580,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -76353,12 +79610,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4862e576-50bb-45b8-a740-d5fcfb3eb730", + "id": "901b0b79-c7e4-4711-88eb-eba43580a026", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76403,7 +79660,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -76433,7 +79690,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -76444,7 +79701,7 @@ } }, { - "id": "e853a5fb-da0b-4d11-bc81-722a04e4625e", + "id": "9cc25991-a3ed-4f2e-8864-ee43662bc7cd", "name": "Create Identity Attribute", "request": { "name": "Create Identity Attribute", @@ -76475,7 +79732,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -76486,7 +79743,7 @@ }, "response": [ { - "id": "09cc0348-c4a0-4091-b5ad-e37fc14784e2", + "id": "ed9d95a8-d246-47ec-bbc6-31fbaabb4aef", "name": "The identity attribute was created successfully", "originalRequest": { "url": { @@ -76520,7 +79777,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -76537,12 +79794,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "body": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3f84df17-7140-4d91-bcbc-291619deaf56", + "id": "b90f8440-97f2-4a6a-9d3a-216bbfeeca48", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76576,7 +79833,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -76593,12 +79850,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5f7b6172-9ffe-4e45-b155-95845587be81", + "id": "b6f5c2c5-f132-4f17-88e1-f91fc51760b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76632,7 +79889,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -76649,12 +79906,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d3e8acf-840a-416a-9ffd-eeaf983388b4", + "id": "aa1624fc-a014-468a-a6a0-4ae84f3ddbc2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76688,7 +79945,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -76705,12 +79962,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6d35dff5-c758-46a6-bc61-90764485dc82", + "id": "65185547-85d5-4c31-b15a-9fa2636debea", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -76744,7 +80001,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -76761,12 +80018,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "eddcc776-7735-4eb0-8ee1-528f1e40537b", + "id": "db2f9adc-9092-4b00-8832-8cde9e0bfe33", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76800,7 +80057,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -76817,12 +80074,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "43d44a17-a8ee-4f8e-acac-447a48394919", + "id": "b71f0635-d9db-47f2-80f2-c2938a903d72", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76856,7 +80113,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -76873,7 +80130,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -76884,7 +80141,7 @@ } }, { - "id": "419fd720-21e9-4d6f-8b75-5e987cc533b9", + "id": "b0532961-0a98-4902-b2a3-01d89f669259", "name": "Get Identity Attribute", "request": { "name": "Get Identity Attribute", @@ -76904,7 +80161,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "displayName", "key": "name", "disabled": true, "description": { @@ -76925,7 +80182,7 @@ }, "response": [ { - "id": "84ec821a-c633-4252-90ea-4f92d543a9ca", + "id": "acd940d4-80c6-4676-893f-036538acfbc1", "name": "The identity attribute with the given name", "originalRequest": { "url": { @@ -76964,12 +80221,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "body": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b2048f31-3357-4a50-b0d1-c766ba1267f5", + "id": "cc02dcda-ef57-4900-ac6f-ed924ad5d95d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77008,12 +80265,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "653daa2b-3e64-48ff-b42b-7a1083cc81c9", + "id": "d5ec87ab-51b3-4c7c-994c-16b5e8e095f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77052,12 +80309,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a8602c32-c47e-4ca2-8ade-7694b67682bd", + "id": "c3ddb340-6338-434a-9717-ee5846efa6fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77096,12 +80353,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a5b5802d-e305-47d7-95bf-2d6ce5884b72", + "id": "9289612a-3aac-4701-aebb-47b2cb7a9443", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -77140,12 +80397,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2f83205d-8741-4a61-83f5-b9eedce52f9e", + "id": "ef910703-69c7-4e83-92ef-017715edf512", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77184,12 +80441,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "81effe48-0859-4b6a-b255-1c321baec2c4", + "id": "bf0d4527-5cbc-4f17-811b-a1496105d104", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77228,7 +80485,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -77239,7 +80496,7 @@ } }, { - "id": "e14664ab-3d23-4b89-8232-584fdf5a7fdb", + "id": "f389fc11-a95f-410b-a6b8-c1efa79cce47", "name": "Update Identity Attribute", "request": { "name": "Update Identity Attribute", @@ -77259,7 +80516,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "displayName", "key": "name", "disabled": true, "description": { @@ -77282,7 +80539,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -77293,7 +80550,7 @@ }, "response": [ { - "id": "601ed322-cbbd-4809-9136-92030bdb6542", + "id": "3a6723e9-2f35-4e03-9c20-47cfe3ed2d2d", "name": "The identity attribute was updated successfully", "originalRequest": { "url": { @@ -77328,7 +80585,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -77345,12 +80602,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "body": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f9e88d66-c2d9-4b65-adaf-4190499429a0", + "id": "85b1ad9b-4a67-40b6-aefa-b418fa44bebe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77385,7 +80642,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -77402,12 +80659,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c0036ff0-65df-4720-8a7c-8adb41bc9659", + "id": "817c2ade-f4d5-48ba-825e-746517ee5016", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77442,7 +80699,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -77459,12 +80716,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36691218-e8cb-4c8b-a4b5-965aac834aed", + "id": "de96eabf-3ce4-49cf-b434-25b6198bd024", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77499,7 +80756,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -77516,12 +80773,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "038d88a8-660b-4827-b131-29058ac1bd8e", + "id": "6d4f0e38-7a92-4ed0-a551-3b1c59182e08", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -77556,7 +80813,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -77573,12 +80830,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ccac5186-2c03-47cf-b0f7-f4ace2b7c23c", + "id": "368ba0dc-648d-4321-964f-f499e42f4edd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77613,7 +80870,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -77630,12 +80887,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "117d9854-e3b6-4bba-9713-9c37bf88bb2a", + "id": "921fded0-1a7d-4a33-b09a-0064e597c9f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77670,7 +80927,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"standard\": false,\n \"type\": \"\",\n \"multi\": false,\n \"searchable\": false,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"\",\n \"properties\": {}\n },\n {\n \"type\": \"\",\n \"properties\": {}\n }\n ]\n}", + "raw": "{\n \"name\": \"uid\",\n \"displayName\": \"IdentityNow Username\",\n \"standard\": true,\n \"type\": \"string\",\n \"multi\": false,\n \"searchable\": true,\n \"system\": false,\n \"sources\": [\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n },\n {\n \"type\": \"rule\",\n \"properties\": {\n \"attribute\": null,\n \"sourceName\": \"Employees\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -77687,7 +80944,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -77698,7 +80955,7 @@ } }, { - "id": "091a2142-20f2-493f-9c8a-5b65e230a937", + "id": "4ce41a70-2a8b-43b9-b41d-49904c140d14", "name": "Delete Identity Attribute", "request": { "name": "Delete Identity Attribute", @@ -77718,7 +80975,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "displayName", "key": "name", "disabled": true, "description": { @@ -77739,7 +80996,7 @@ }, "response": [ { - "id": "8b8c6343-89df-4df7-a0ed-73442ddee3af", + "id": "8bbb8699-a5a2-48d2-9ebb-6d439442168f", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -77773,7 +81030,7 @@ "_postman_previewlanguage": "text" }, { - "id": "99ca4cbe-b4a2-44b9-8bc2-bc9566d063a6", + "id": "6442fc8f-e7b0-4b80-abad-275e5389039b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77812,12 +81069,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4fe6fba2-3d99-45bc-85ac-240c3fae151b", + "id": "ced4d7f0-99b6-4d98-94fe-5fcb39ca3d5f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77856,12 +81113,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0bdac4e2-ca36-4d65-b310-0d8854b79c07", + "id": "1f8417d9-ee0a-42b4-84c6-11df258c0272", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77900,12 +81157,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "75101aa7-83a1-4a6b-8274-b7a976ef77dc", + "id": "51aaf014-c21a-4af7-bf31-d12cc43308b7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -77944,12 +81201,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a1f81924-d046-4d84-8f70-6d2f478fc140", + "id": "ed9e6b20-7d8f-439f-991c-d440ca6af710", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77988,12 +81245,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4867fda5-47bc-4eef-b621-8c39c451656f", + "id": "d388c11c-d22a-441b-b87c-707544b1258f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78032,7 +81289,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -78043,7 +81300,7 @@ } }, { - "id": "e7d6263e-d832-4439-809b-c0ca7d41a347", + "id": "de8128f3-e875-413e-8fe3-8d45062bb8b4", "name": "Bulk delete Identity Attributes", "request": { "name": "Bulk delete Identity Attributes", @@ -78075,7 +81332,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"name\",\n \"displayName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -78086,7 +81343,7 @@ }, "response": [ { - "id": "91982c4b-c4a0-4cce-9f9a-3b898d9eaa4f", + "id": "970e260e-6da3-4ec7-80de-c136deeff323", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -78117,7 +81374,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"name\",\n \"displayName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -78133,7 +81390,7 @@ "_postman_previewlanguage": "text" }, { - "id": "676e060b-6067-4779-ab21-726eda4be110", + "id": "dc009f31-a4ef-4ba3-88cf-3266d56af619", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78168,7 +81425,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"name\",\n \"displayName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -78185,12 +81442,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "07a7f401-d947-4851-94d7-125bc8a0e202", + "id": "f3813557-8895-479e-ae95-222a0895f1a8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78225,7 +81482,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"name\",\n \"displayName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -78242,12 +81499,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "120eb8db-7325-4b01-af9f-a3201259398c", + "id": "a3382c28-e52b-4723-89f1-11fc3ad35abf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78282,7 +81539,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"name\",\n \"displayName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -78299,12 +81556,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "81986738-0fba-40bf-9a69-c2fbe287a3d7", + "id": "2993e6a2-ea66-4cc5-9722-a502154f499a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78339,7 +81596,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"name\",\n \"displayName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -78356,12 +81613,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6b36a415-53b6-40bb-8ddb-767e22bc73b6", + "id": "0f2bfaa2-7b96-4dae-9923-5b73a5cc189a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78396,7 +81653,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"name\",\n \"displayName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -78413,12 +81670,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f199ec41-1331-45c5-b263-dc93afef8378", + "id": "9930b436-5b9e-4ce7-8322-b6728b5a5bfb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78453,7 +81710,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"name\",\n \"displayName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -78470,7 +81727,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -78487,7 +81744,7 @@ "description": "", "item": [ { - "id": "d63d9d3a-90dd-4546-9ee9-d1d8c09a1885", + "id": "bc01afb3-4d91-4997-8e5d-a1068f57779e", "name": "Lists all the identities", "request": { "name": "Lists all the identities", @@ -78510,7 +81767,7 @@ "type": "text/plain" }, "key": "starts-with-query", - "value": "" + "value": "Ada" }, { "disabled": true, @@ -78519,7 +81776,7 @@ "type": "text/plain" }, "key": "is-deleted", - "value": "" + "value": "true" }, { "disabled": true, @@ -78528,7 +81785,7 @@ "type": "text/plain" }, "key": "is-active", - "value": "" + "value": "true" }, { "disabled": true, @@ -78562,7 +81819,7 @@ }, "response": [ { - "id": "5fed6554-ba24-415e-a61c-fc5d25bc8937", + "id": "aa5d75ca-5c08-4d57-bdcb-4308809cfd8c", "name": "List of identities for the customer.", "originalRequest": { "url": { @@ -78580,7 +81837,7 @@ "type": "text/plain" }, "key": "starts-with-query", - "value": "" + "value": "Ada" }, { "disabled": true, @@ -78589,7 +81846,7 @@ "type": "text/plain" }, "key": "is-deleted", - "value": "" + "value": "true" }, { "disabled": true, @@ -78598,7 +81855,7 @@ "type": "text/plain" }, "key": "is-active", - "value": "" + "value": "true" }, { "disabled": true, @@ -78646,12 +81903,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"displayName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"active\": true,\n \"deletedDate\": \"\"\n },\n {\n \"id\": \"\",\n \"displayName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"active\": true,\n \"deletedDate\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"bc693f07e7b645539626c25954c58554\",\n \"displayName\": \"Adam Zampa\",\n \"firstName\": \"Adam\",\n \"lastName\": \"Zampa\",\n \"active\": true,\n \"deletedDate\": \"2007-03-01T13:00:00.000Z\"\n },\n {\n \"id\": \"bc693f07e7b645539626c25954c58554\",\n \"displayName\": \"Adam Zampa\",\n \"firstName\": \"Adam\",\n \"lastName\": \"Zampa\",\n \"active\": true,\n \"deletedDate\": \"2007-03-01T13:00:00.000Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "42c58488-6991-43d2-ae55-2e411162a18f", + "id": "20d56023-323a-449d-8474-7e62ddef8b77", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78669,7 +81926,7 @@ "type": "text/plain" }, "key": "starts-with-query", - "value": "" + "value": "Ada" }, { "disabled": true, @@ -78678,7 +81935,7 @@ "type": "text/plain" }, "key": "is-deleted", - "value": "" + "value": "true" }, { "disabled": true, @@ -78687,7 +81944,7 @@ "type": "text/plain" }, "key": "is-active", - "value": "" + "value": "true" }, { "disabled": true, @@ -78735,12 +81992,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "30d7c28c-f4eb-4035-90b1-70ed0330740e", + "id": "6880179d-2939-493a-baa2-fe0ea21f4409", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78758,7 +82015,7 @@ "type": "text/plain" }, "key": "starts-with-query", - "value": "" + "value": "Ada" }, { "disabled": true, @@ -78767,7 +82024,7 @@ "type": "text/plain" }, "key": "is-deleted", - "value": "" + "value": "true" }, { "disabled": true, @@ -78776,7 +82033,7 @@ "type": "text/plain" }, "key": "is-active", - "value": "" + "value": "true" }, { "disabled": true, @@ -78824,12 +82081,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2f1a3e36-ff7c-426b-bbcc-66567ebc1fea", + "id": "7aeeb512-624d-4874-a4d7-6ee3f8a0ef79", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78847,7 +82104,7 @@ "type": "text/plain" }, "key": "starts-with-query", - "value": "" + "value": "Ada" }, { "disabled": true, @@ -78856,7 +82113,7 @@ "type": "text/plain" }, "key": "is-deleted", - "value": "" + "value": "true" }, { "disabled": true, @@ -78865,7 +82122,7 @@ "type": "text/plain" }, "key": "is-active", - "value": "" + "value": "true" }, { "disabled": true, @@ -78913,12 +82170,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c41ebfd0-6393-4828-b40f-08861cc50a33", + "id": "24ae774c-f6d9-410b-a407-ab32b2d6c182", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78936,7 +82193,7 @@ "type": "text/plain" }, "key": "starts-with-query", - "value": "" + "value": "Ada" }, { "disabled": true, @@ -78945,7 +82202,7 @@ "type": "text/plain" }, "key": "is-deleted", - "value": "" + "value": "true" }, { "disabled": true, @@ -78954,7 +82211,7 @@ "type": "text/plain" }, "key": "is-active", - "value": "" + "value": "true" }, { "disabled": true, @@ -79002,12 +82259,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "01a5a0c9-b3a8-429e-a8a1-0799ee2729f4", + "id": "968cc363-abd7-4cb2-ae69-d7e791743055", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79025,7 +82282,7 @@ "type": "text/plain" }, "key": "starts-with-query", - "value": "" + "value": "Ada" }, { "disabled": true, @@ -79034,7 +82291,7 @@ "type": "text/plain" }, "key": "is-deleted", - "value": "" + "value": "true" }, { "disabled": true, @@ -79043,7 +82300,7 @@ "type": "text/plain" }, "key": "is-active", - "value": "" + "value": "true" }, { "disabled": true, @@ -79091,7 +82348,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -79102,7 +82359,7 @@ } }, { - "id": "c4a9d48a-a87c-4bfb-85ab-398c8d67d6c8", + "id": "f807f2c5-c781-485c-a20a-b6758d93cd30", "name": "Get latest snapshot of identity", "request": { "name": "Get latest snapshot of identity", @@ -79122,7 +82379,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -79143,7 +82400,7 @@ }, "response": [ { - "id": "a82e3dbc-f92e-4d41-ba50-3277e23d1eb7", + "id": "b1a43a6a-7fab-4c3d-9482-42ae03554a3e", "name": "The identity object.", "originalRequest": { "url": { @@ -79182,12 +82439,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"displayName\": \"\",\n \"snapshot\": \"\",\n \"deletedDate\": \"\",\n \"accessItemCount\": {\n \"dolore49\": \"\",\n \"cillum_0\": \"\",\n \"minim_3f\": \"\"\n },\n \"attributes\": {\n \"Utfc\": \"\",\n \"voluptate_05\": \"\",\n \"labore__\": \"\",\n \"Duis5b2\": \"\"\n }\n}", + "body": "{\n \"id\": \"2c9079b270a266a60170a2779fcb0007\",\n \"displayName\": \"Lahoma Wuckert\",\n \"deletedDate\": null,\n \"snapshot\": \"2007-03-01T13:00:00.000Z\",\n \"attributes\": {\n \"jobTitle\": \"HR Manager\",\n \"location\": \"NYC\",\n \"firstname\": \"Lahoma\",\n \"lastname\": \"Wuckert\",\n \"department\": \"HR\"\n },\n \"accessItemCount\": {\n \"role\": 2,\n \"accessProfile\": 2,\n \"entitlement\": 28,\n \"account\": 3\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5486b77-4cae-47a6-8fb1-22c21d7b54e9", + "id": "9ac06183-d361-4dae-a4ef-4aff9afc3180", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79226,12 +82483,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "03dd7f69-a7e1-438e-893a-19cb1a3543c3", + "id": "ae02ff50-d304-4eec-b4e7-39254276d54e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79270,12 +82527,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de28bdeb-d7e4-40b7-96dd-907caca51e36", + "id": "19e3856b-c6f1-49a2-9cec-c2255feeb59d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79314,12 +82571,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0159c084-1a49-4134-b416-1ca73952d245", + "id": "3295181b-db87-460d-b611-4c8984c8b2ed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79358,12 +82615,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0e3d88d1-dc80-4934-ba33-7052174446e9", + "id": "6bbee83c-f0a4-42d8-b5a9-733ec38f8027", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79402,7 +82659,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -79413,7 +82670,7 @@ } }, { - "id": "57c03d6d-7e3b-4988-a31d-6ffb3f19966c", + "id": "06d881b2-6b74-4db3-af7c-ef49b045af56", "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", @@ -79438,13 +82695,13 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "account" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -79465,8 +82722,8 @@ }, "response": [ { - "id": "5f2a3db2-d783-4ad4-ac32-47ff2e1ddc82", - "name": "The list of access items.", + "id": "f653dadc-05e0-491c-988c-e5aa313f5acf", + "name": "Access Profile", "originalRequest": { "url": { "path": [ @@ -79485,7 +82742,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "account" } ], "variable": [] @@ -79515,12 +82772,232 @@ "value": "application/json" } ], - "body": "[\n {\n \"accessType\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceName\": \"\",\n \"sourceId\": \"\",\n \"description\": \"\",\n \"displayName\": \"\",\n \"entitlementCount\": \"\",\n \"appDisplayName\": \"\"\n },\n {\n \"accessType\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceName\": \"\",\n \"sourceId\": \"\",\n \"description\": \"\",\n \"displayName\": \"\",\n \"entitlementCount\": \"\",\n \"appDisplayName\": \"\"\n }\n]", + "body": "[\n {\n \"accessType\": \"accessProfile\",\n \"id\": \"2c918087763e69d901763e72e97f006f\",\n \"name\": \"sample\",\n \"sourceName\": \"DataScienceDataset\",\n \"sourceId\": \"2793o32dwd\",\n \"description\": \"AccessProfile - Workday/Citizenship access\",\n \"displayName\": \"Dr. Arden Rogahn MD\",\n \"entitlementCount\": 12,\n \"appDisplayName\": \"AppName\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1fda4811-c410-467e-bddc-e5bca7426110", + "id": "fdc1ae53-7d8f-4d07-949b-9d973ac78a18", + "name": "Account", + "originalRequest": { + "url": { + "path": [ + "historical-identities", + ":id", + "access-items" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "The type of access item for the identity. If not provided, it defaults to account", + "type": "text/plain" + }, + "key": "type", + "value": "account" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"accessType\": \"account\",\n \"id\": \"2c918087763e69d901763e72e97f006f\",\n \"nativeIdentity\": \"dr.arden.ogahn.d\",\n \"sourceName\": \"DataScienceDataset\",\n \"sourceId\": \"2793o32dwd\",\n \"entitlementCount\": 12,\n \"displayName\": \"Dr. Arden Rogahn MD\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "54238312-016a-4f60-b1e5-e1e8406e5635", + "name": "App", + "originalRequest": { + "url": { + "path": [ + "historical-identities", + ":id", + "access-items" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "The type of access item for the identity. If not provided, it defaults to account", + "type": "text/plain" + }, + "key": "type", + "value": "account" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"accessType\": \"app\",\n \"id\": \"2c918087763e69d901763e72e97f006f\",\n \"name\": \"appName\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1a64eee2-2804-4eec-90a8-f27a9c1a562a", + "name": "Entitlement", + "originalRequest": { + "url": { + "path": [ + "historical-identities", + ":id", + "access-items" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "The type of access item for the identity. If not provided, it defaults to account", + "type": "text/plain" + }, + "key": "type", + "value": "account" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"accessType\": \"entitlement\",\n \"id\": \"2c918087763e69d901763e72e97f006f\",\n \"attribute\": \"groups\",\n \"value\": \"Upward mobility access\",\n \"type\": \"group\",\n \"sourceName\": \"DataScienceDataset\",\n \"sourceId\": \"2793o32dwd\",\n \"description\": \"Entitlement - Workday/Citizenship access\",\n \"displayName\": \"Dr. Arden Rogahn MD\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "497abb8b-8b47-462b-bff9-bfc0fe2da163", + "name": "Role", + "originalRequest": { + "url": { + "path": [ + "historical-identities", + ":id", + "access-items" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "The type of access item for the identity. If not provided, it defaults to account", + "type": "text/plain" + }, + "key": "type", + "value": "account" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"accessType\": \"role\",\n \"id\": \"2c918087763e69d901763e72e97f006f\",\n \"name\": \"sample\",\n \"description\": \"Role - Workday/Citizenship access\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "e3582c55-54cf-4ef9-b55c-44368c741d15", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79540,7 +83017,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "account" } ], "variable": [] @@ -79570,12 +83047,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2f5da738-7443-47cf-a543-36686e1e89fa", + "id": "572d466c-6e7d-4e53-b61b-1f04f1841fe8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79595,7 +83072,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "account" } ], "variable": [] @@ -79625,12 +83102,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b68100f-3513-416f-a480-7496da13c737", + "id": "a72da0a3-641e-48ba-aa97-d73faebcf81d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79650,7 +83127,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "account" } ], "variable": [] @@ -79680,12 +83157,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "65165185-0df0-4754-ba3d-34141584a7a9", + "id": "e71cced6-0892-4d3a-adf9-17cf950443cd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79705,7 +83182,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "account" } ], "variable": [] @@ -79735,12 +83212,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a5970fd9-dd90-498b-b5de-0125ebd0ccfb", + "id": "761175a4-a704-4b79-9a0d-5ffa77ed94a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79760,7 +83237,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "account" } ], "variable": [] @@ -79790,7 +83267,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -79801,7 +83278,7 @@ } }, { - "id": "ec4fd54f-3f72-486f-8313-bff1f3769c05", + "id": "cb31ecb0-79d2-4772-a7ee-8b4ad11cce15", "name": "Lists all the snapshots for the identity", "request": { "name": "Lists all the snapshots for the identity", @@ -79826,7 +83303,7 @@ "type": "text/plain" }, "key": "start", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -79862,13 +83339,13 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -79889,7 +83366,7 @@ }, "response": [ { - "id": "0acc58dc-bac1-4e2e-846b-0bd4046a18c1", + "id": "8f4b9411-4e15-4350-881e-5b2d93daf478", "name": "A list of identity summary for each snapshot.", "originalRequest": { "url": { @@ -79909,7 +83386,7 @@ "type": "text/plain" }, "key": "start", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -79945,7 +83422,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -79975,12 +83452,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"snapshot\": \"\"\n },\n {\n \"snapshot\": \"\"\n }\n]", + "body": "[\n {\n \"snapshot\": \"2007-03-01T13:00:00.000Z\"\n },\n {\n \"snapshot\": \"2007-03-01T13:00:00.000Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "03971a5a-ff0d-42db-81ab-11c8f2145fce", + "id": "ce672ba6-2abf-4c3e-ae08-69e7bad7829c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80000,7 +83477,7 @@ "type": "text/plain" }, "key": "start", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -80036,7 +83513,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -80066,12 +83543,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e7e50d09-f99b-4f5e-9ed7-a7fa973a2f64", + "id": "d80900dd-1632-417f-830a-47a90cfddd97", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80091,7 +83568,7 @@ "type": "text/plain" }, "key": "start", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -80127,7 +83604,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -80157,12 +83634,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "66299392-bbc9-455d-9890-03525a7c7c5e", + "id": "d98f65a9-934e-4f63-b524-63acbc52dc72", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80182,7 +83659,7 @@ "type": "text/plain" }, "key": "start", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -80218,7 +83695,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -80248,12 +83725,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ed32a1e5-4d87-49ab-9ca8-b171005887c3", + "id": "f4f4655e-a29a-42e4-94ff-24ac56a3bafe", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -80273,7 +83750,7 @@ "type": "text/plain" }, "key": "start", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -80309,7 +83786,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -80339,12 +83816,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "23e53440-c977-4e9b-bf1b-49fab8273c7b", + "id": "7bf8ea97-f5ec-4440-9710-1da4bc3043c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80364,7 +83841,7 @@ "type": "text/plain" }, "key": "start", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -80400,7 +83877,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -80430,7 +83907,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -80441,7 +83918,7 @@ } }, { - "id": "bf4945b6-60e0-4844-866e-d3b3bc2ded0a", + "id": "4d8f115c-d53b-4acb-bf97-719e697102e5", "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", @@ -80466,7 +83943,7 @@ "type": "text/plain" }, "key": "before", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -80484,7 +83961,7 @@ "type": "text/plain" }, "key": "time-zone", - "value": "" + "value": "UTC" }, { "disabled": true, @@ -80511,13 +83988,13 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -80538,7 +84015,7 @@ }, "response": [ { - "id": "6ba60f32-5ff5-45cd-9890-0f7a1d28912e", + "id": "66425753-f7aa-4e40-9293-e026a02092f5", "name": "A summary list of identity changes in date histogram format.", "originalRequest": { "url": { @@ -80558,7 +84035,7 @@ "type": "text/plain" }, "key": "before", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -80576,7 +84053,7 @@ "type": "text/plain" }, "key": "time-zone", - "value": "" + "value": "UTC" }, { "disabled": true, @@ -80603,7 +84080,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -80633,12 +84110,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"value\": \"\"\n },\n {\n \"name\": \"\",\n \"value\": \"\"\n }\n]", + "body": "[\n {\n \"name\": \"2021-04-01T00:00:00.000Z\",\n \"value\": 2\n },\n {\n \"name\": \"2021-04-01T00:00:00.000Z\",\n \"value\": 2\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "396941fb-0947-40f8-b4f9-d0e36de9bcc8", + "id": "d2943e58-2013-4050-96f4-df6f8cf60354", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80658,7 +84135,7 @@ "type": "text/plain" }, "key": "before", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -80676,7 +84153,7 @@ "type": "text/plain" }, "key": "time-zone", - "value": "" + "value": "UTC" }, { "disabled": true, @@ -80703,7 +84180,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -80733,12 +84210,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6086434a-54a8-43e5-b036-ca208e3aa990", + "id": "de7f08d2-95d6-4eb2-bd96-80a512eae4eb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80758,7 +84235,7 @@ "type": "text/plain" }, "key": "before", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -80776,7 +84253,7 @@ "type": "text/plain" }, "key": "time-zone", - "value": "" + "value": "UTC" }, { "disabled": true, @@ -80803,7 +84280,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -80833,12 +84310,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26191428-7bc5-4753-b1ff-52f80e14776a", + "id": "b627cee0-9d17-4650-b763-7863b514ce4c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80858,7 +84335,7 @@ "type": "text/plain" }, "key": "before", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -80876,7 +84353,7 @@ "type": "text/plain" }, "key": "time-zone", - "value": "" + "value": "UTC" }, { "disabled": true, @@ -80903,7 +84380,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -80933,12 +84410,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6c98dc3f-28a3-4674-a8da-20ad02f10fca", + "id": "04dda7ee-690e-41a4-acdc-51b13107d857", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -80958,7 +84435,7 @@ "type": "text/plain" }, "key": "before", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -80976,7 +84453,7 @@ "type": "text/plain" }, "key": "time-zone", - "value": "" + "value": "UTC" }, { "disabled": true, @@ -81003,7 +84480,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -81033,12 +84510,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "65b457e8-c410-4bd7-9c8a-2a3e0db8fd46", + "id": "0069f26c-9744-4604-bdb3-0abafe670707", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81058,7 +84535,7 @@ "type": "text/plain" }, "key": "before", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -81076,7 +84553,7 @@ "type": "text/plain" }, "key": "time-zone", - "value": "" + "value": "UTC" }, { "disabled": true, @@ -81103,7 +84580,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -81133,7 +84610,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -81144,7 +84621,7 @@ } }, { - "id": "bacd02d0-a1e2-4a3b-8ec7-1b97826d80e5", + "id": "23fd5864-d69b-4d29-b8a6-adda37dcbc3c", "name": "Gets an identity snapshot at a given date", "request": { "name": "Gets an identity snapshot at a given date", @@ -81166,7 +84643,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -81176,7 +84653,7 @@ }, { "type": "any", - "value": "", + "value": "2007-03-01T13:00:00Z", "key": "date", "disabled": true, "description": { @@ -81197,7 +84674,7 @@ }, "response": [ { - "id": "213fe3d4-6aa8-4f4c-947b-2151db841f52", + "id": "4de0cdb9-6027-4033-8cad-2671da897985", "name": "The identity object.", "originalRequest": { "url": { @@ -81238,12 +84715,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"displayName\": \"\",\n \"snapshot\": \"\",\n \"deletedDate\": \"\",\n \"accessItemCount\": {\n \"dolore49\": \"\",\n \"cillum_0\": \"\",\n \"minim_3f\": \"\"\n },\n \"attributes\": {\n \"Utfc\": \"\",\n \"voluptate_05\": \"\",\n \"labore__\": \"\",\n \"Duis5b2\": \"\"\n }\n}", + "body": "{\n \"id\": \"2c9079b270a266a60170a2779fcb0007\",\n \"displayName\": \"Lahoma Wuckert\",\n \"deletedDate\": null,\n \"snapshot\": \"2007-03-01T13:00:00.000Z\",\n \"attributes\": {\n \"jobTitle\": \"HR Manager\",\n \"location\": \"NYC\",\n \"firstname\": \"Lahoma\",\n \"lastname\": \"Wuckert\",\n \"department\": \"HR\"\n },\n \"accessItemCount\": {\n \"role\": 2,\n \"accessProfile\": 2,\n \"entitlement\": 28,\n \"account\": 3\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c4b7ee60-d06b-48d1-b69d-61642b65dcda", + "id": "a526bfdc-f104-4055-afb1-442d1fdbf396", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81284,12 +84761,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "dc38abef-c900-45c9-a75d-26e09bac44a3", + "id": "856f6f92-d03d-4f29-85c3-4acd956dd401", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81330,12 +84807,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c98df18b-1172-44c3-aa74-5b4775883c67", + "id": "628fc34f-d95d-4e16-9338-dae2e77d34c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81376,12 +84853,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2c0df2b3-9690-4339-a3c4-c5e1919080d3", + "id": "b893010a-598c-4cd6-81d4-ae8c30832014", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81422,12 +84899,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6910f67f-af9f-4f4d-acfd-13890934994d", + "id": "951df465-5545-47ed-bc10-93821791048e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81468,7 +84945,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -81479,7 +84956,7 @@ } }, { - "id": "66d02ddb-8d53-49f8-bfe1-e2a6549c6d1e", + "id": "10a978be-fb5b-410f-9cae-0387953bb71c", "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", @@ -81506,13 +84983,13 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "account" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -81522,7 +84999,7 @@ }, { "type": "any", - "value": "", + "value": "2007-03-01T13:00:00Z", "key": "date", "disabled": true, "description": { @@ -81543,8 +85020,8 @@ }, "response": [ { - "id": "dc8fd36d-c7e3-444a-a9a2-d19dd20e776c", - "name": "The identity object.", + "id": "3be2a17e-4e38-4a8b-80af-be47df550278", + "name": "Access Item AccessProfile Response", "originalRequest": { "url": { "path": [ @@ -81565,7 +85042,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "account" } ], "variable": [] @@ -81595,12 +85072,240 @@ "value": "application/json" } ], - "body": "[\n {\n \"accessType\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceName\": \"\",\n \"sourceId\": \"\",\n \"description\": \"\",\n \"displayName\": \"\",\n \"entitlementCount\": \"\",\n \"appDisplayName\": \"\"\n },\n {\n \"accessType\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceName\": \"\",\n \"sourceId\": \"\",\n \"description\": \"\",\n \"displayName\": \"\",\n \"entitlementCount\": \"\",\n \"appDisplayName\": \"\"\n }\n]", + "body": "[\n {\n \"type\": \"accessProfile\",\n \"id\": \"2c918087763e69d901763e72e97f006f\",\n \"name\": \"sample\",\n \"sourceName\": \"DataScienceDataset\",\n \"sourceId\": \"2793o32dwd\",\n \"description\": \"AccessProfile - Workday/Citizenship access\",\n \"displayName\": \"Dr. Arden Rogahn MD\",\n \"entitlementCount\": 12,\n \"appDisplayName\": \"AppName\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "da091c78-ba20-4d66-a266-0b36d1821386", + "id": "621e495c-5b97-47da-bf33-4aae72f02775", + "name": "Access Item Account Response", + "originalRequest": { + "url": { + "path": [ + "historical-identities", + ":id", + "snapshots", + ":date", + "access-items" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "The access item type", + "type": "text/plain" + }, + "key": "type", + "value": "account" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"type\": \"account\",\n \"id\": \"2c918087763e69d901763e72e97f006f\",\n \"nativeIdentity\": \"dr.arden.ogahn.d\",\n \"sourceName\": \"DataScienceDataset\",\n \"sourceId\": \"2793o32dwd\",\n \"entitlementCount\": 12,\n \"displayName\": \"Dr. Arden Rogahn MD\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "58e30216-3ed2-4ed7-8ad9-b6785bd051be", + "name": "Access Item App Response", + "originalRequest": { + "url": { + "path": [ + "historical-identities", + ":id", + "snapshots", + ":date", + "access-items" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "The access item type", + "type": "text/plain" + }, + "key": "type", + "value": "account" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"type\": \"app\",\n \"id\": \"2c918087763e69d901763e72e97f006f\",\n \"name\": \"appName\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ba64da1f-cc67-4966-99e2-744376b45057", + "name": "Access Item Entitlement Response", + "originalRequest": { + "url": { + "path": [ + "historical-identities", + ":id", + "snapshots", + ":date", + "access-items" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "The access item type", + "type": "text/plain" + }, + "key": "type", + "value": "account" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"type\": \"entitlement\",\n \"id\": \"2c918087763e69d901763e72e97f006f\",\n \"attribute\": \"groups\",\n \"value\": \"Upward mobility access\",\n \"entitlementType\": \"entitlement\",\n \"sourceName\": \"DataScienceDataset\",\n \"sourceId\": \"2793o32dwd\",\n \"description\": \"Entitlement - Workday/Citizenship access\",\n \"displayName\": \"Dr. Arden Rogahn MD\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "84e9eba7-9210-41cb-a38c-adf8d4b9feb9", + "name": "Access Item Role Response", + "originalRequest": { + "url": { + "path": [ + "historical-identities", + ":id", + "snapshots", + ":date", + "access-items" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "The access item type", + "type": "text/plain" + }, + "key": "type", + "value": "account" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"type\": \"role\",\n \"id\": \"2c918087763e69d901763e72e97f006f\",\n \"name\": \"sample\",\n \"description\": \"Role - Workday/Citizenship access\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "bcbac6b1-7921-491c-867e-f4600ba9c3f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81622,7 +85327,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "account" } ], "variable": [] @@ -81652,12 +85357,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3ae9e0bc-8e8f-44c3-9b29-bd7f993fbdb1", + "id": "fc2d71cf-50cf-40c8-bb60-492bb878b0ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81679,7 +85384,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "account" } ], "variable": [] @@ -81709,12 +85414,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "797c42c2-b95e-4577-b40c-588ae75d9d2b", + "id": "9ac18956-85ab-4259-b074-a43e4ef1740e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81736,7 +85441,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "account" } ], "variable": [] @@ -81766,12 +85471,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e8a30cc4-9ee7-43be-a528-e8c7bb0b377c", + "id": "bcdb6ff5-365e-4882-a42a-a8639e6e37df", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81793,7 +85498,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "account" } ], "variable": [] @@ -81823,12 +85528,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "849b22fb-669b-4c60-8449-586a31fed010", + "id": "38482e6d-fe26-4a62-a690-51f9997dabf0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81850,7 +85555,7 @@ "type": "text/plain" }, "key": "type", - "value": "" + "value": "account" } ], "variable": [] @@ -81880,7 +85585,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -81891,7 +85596,7 @@ } }, { - "id": "b5fe1ae6-56fa-465c-a52b-47f4ee9ff05c", + "id": "6e838005-c055-40af-a57a-5cb27b0cf03c", "name": "Lists all events for the given identity", "request": { "name": "Lists all events for the given identity", @@ -81916,7 +85621,7 @@ "type": "text/plain" }, "key": "from", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -81925,7 +85630,7 @@ "type": "text/plain" }, "key": "eventTypes", - "value": "" + "value": "AccessAddedEvent" }, { "disabled": true, @@ -81934,7 +85639,7 @@ "type": "text/plain" }, "key": "eventTypes", - "value": "" + "value": "AccessRemovedEvent" }, { "disabled": true, @@ -81943,7 +85648,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "entitlement" }, { "disabled": true, @@ -81952,7 +85657,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "account" }, { "disabled": true, @@ -81979,13 +85684,13 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -82006,8 +85711,8 @@ }, "response": [ { - "id": "0fb4af47-c4d8-4917-9f80-17c57c25c796", - "name": "The list of events for the identity", + "id": "2515261b-fab7-4f14-921f-31cdbc5bfc69", + "name": "AccessItemAssociated", "originalRequest": { "url": { "path": [ @@ -82026,7 +85731,7 @@ "type": "text/plain" }, "key": "from", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -82035,7 +85740,7 @@ "type": "text/plain" }, "key": "eventTypes", - "value": "" + "value": "AccessRemovedEvent" }, { "disabled": true, @@ -82044,7 +85749,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "account" }, { "disabled": true, @@ -82071,7 +85776,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -82101,13 +85806,13 @@ "value": "application/json" } ], - "body": "[\n {\n \"accessItem\": {\n \"accessType\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceName\": \"\",\n \"sourceId\": \"\",\n \"description\": \"\",\n \"displayName\": \"\",\n \"entitlementCount\": \"\",\n \"appDisplayName\": \"\"\n },\n \"identityId\": \"\",\n \"eventType\": \"\",\n \"dt\": \"\",\n \"governanceEvent\": {\n \"name\": \"\",\n \"dt\": \"\",\n \"type\": \"accessRequest\",\n \"governanceId\": \"\",\n \"owners\": [\n {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n ],\n \"reviewers\": [\n {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n ],\n \"decisionMaker\": {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n }\n },\n {\n \"accessItem\": {\n \"accessType\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceName\": \"\",\n \"sourceId\": \"\",\n \"description\": \"\",\n \"displayName\": \"\",\n \"entitlementCount\": \"\",\n \"appDisplayName\": \"\"\n },\n \"identityId\": \"\",\n \"eventType\": \"\",\n \"dt\": \"\",\n \"governanceEvent\": {\n \"name\": \"\",\n \"dt\": \"\",\n \"type\": \"certification\",\n \"governanceId\": \"\",\n \"owners\": [\n {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n ],\n \"reviewers\": [\n {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n ],\n \"decisionMaker\": {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n }\n }\n]", + "body": "[\n {\n \"accessItem\": {\n \"id\": \"8c190e6787aa4ed9a90bd9d5344523fb\",\n \"accessType\": \"account\",\n \"nativeIdentity\": 127999,\n \"sourceName\": \"JDBC Entitlements Source\",\n \"entitlementCount\": 0,\n \"displayName\": \"Sample Name\"\n },\n \"eventType\": \"AccessItemAssociated\",\n \"identityId\": \"8a80828f643d484f01643e14202e206f\",\n \"dt\": \"2019-03-08T22:37:33.901Z\",\n \"governanceEvent\": {\n \"name\": \"Access Request 58\",\n \"dt\": \"2019-03-08T22:37:33.901Z\",\n \"type\": \"accessRequest\",\n \"governanceId\": \"2c91808a77ff216301782327a50f09e1\",\n \"owners\": [\n {\n \"id\": \"bc693f07e7b645539626c25954c58554\",\n \"displayName\": \"Jon Snow\"\n }\n ],\n \"reviewers\": [\n {\n \"id\": \"bc693f07e7b645539626c25954c58554\",\n \"displayName\": \"Jon Snow\"\n }\n ],\n \"decisionMaker\": {\n \"id\": \"bc693f07e7b645539626c25954c58554\",\n \"displayName\": \"Jon Snow\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7609f868-ec50-4097-855a-913be0443684", - "name": "Client Error - Returned if the request body is invalid.", + "id": "bd505dbe-814f-4c31-9627-04f3a8d141e9", + "name": "AccessItemRemoved", "originalRequest": { "url": { "path": [ @@ -82126,7 +85831,7 @@ "type": "text/plain" }, "key": "from", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -82135,7 +85840,7 @@ "type": "text/plain" }, "key": "eventTypes", - "value": "" + "value": "AccessRemovedEvent" }, { "disabled": true, @@ -82144,7 +85849,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "account" }, { "disabled": true, @@ -82171,7 +85876,507 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"accessItem\": {\n \"id\": \"8c190e6787aa4ed9a90bd9d5344523fb\",\n \"accessType\": \"account\",\n \"nativeIdentity\": 127999,\n \"sourceName\": \"JDBC Entitlements Source\",\n \"entitlementCount\": 0,\n \"displayName\": \"Sample Name\"\n },\n \"eventType\": \"AccessItemRemoved\",\n \"identityId\": \"8a80828f643d484f01643e14202e206f\",\n \"dt\": \"2019-03-08T22:37:33.901Z\",\n \"governanceEvent\": {\n \"name\": \"Manager Certification for Jon Snow\",\n \"dt\": \"2019-03-08T22:37:33.901Z\",\n \"type\": \"certification\",\n \"governanceId\": \"2c91808a77ff216301782327a50f09bf\",\n \"owners\": [\n {\n \"id\": \"bc693f07e7b645539626c25954c58554\",\n \"displayName\": \"Jon Snow\"\n }\n ],\n \"reviewers\": [\n {\n \"id\": \"bc693f07e7b645539626c25954c58554\",\n \"displayName\": \"Jon Snow\"\n }\n ],\n \"decisionMaker\": {\n \"id\": \"bc693f07e7b645539626c25954c58554\",\n \"displayName\": \"Jon Snow\"\n }\n }\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "8cb11744-494d-45aa-b083-0634c4d28a94", + "name": "AttributesChanged", + "originalRequest": { + "url": { + "path": [ + "historical-identities", + ":id", + "events" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "The optional instant from which to return the access events", + "type": "text/plain" + }, + "key": "from", + "value": "2007-03-01T13:00:00Z" + }, + { + "disabled": true, + "description": { + "content": "An optional list of event types to return. If null or empty, all events are returned", + "type": "text/plain" + }, + "key": "eventTypes", + "value": "AccessRemovedEvent" + }, + { + "disabled": true, + "description": { + "content": "An optional list of access item types (app, account, entitlement, etc...) to return. If null or empty, all access items types are returned", + "type": "text/plain" + }, + "key": "accessItemTypes", + "value": "account" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"attributeChanges\": [\n {\n \"name\": \"firstname\",\n \"previousValue\": \"adam\",\n \"newValue\": \"zampa\"\n }\n ],\n \"eventType\": \"AttributesChanged\",\n \"identityId\": \"8a80828f643d484f01643e14202e206f\",\n \"dt\": \"2019-03-08T22:37:33.901Z\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "cdb52372-b79d-4bea-9520-61ce0f503381", + "name": "AccessRequested", + "originalRequest": { + "url": { + "path": [ + "historical-identities", + ":id", + "events" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "The optional instant from which to return the access events", + "type": "text/plain" + }, + "key": "from", + "value": "2007-03-01T13:00:00Z" + }, + { + "disabled": true, + "description": { + "content": "An optional list of event types to return. If null or empty, all events are returned", + "type": "text/plain" + }, + "key": "eventTypes", + "value": "AccessRemovedEvent" + }, + { + "disabled": true, + "description": { + "content": "An optional list of access item types (app, account, entitlement, etc...) to return. If null or empty, all access items types are returned", + "type": "text/plain" + }, + "key": "accessItemTypes", + "value": "account" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"accessRequest\": {\n \"requesterId\": \"2c91808a77ff216301782327a50f09bf\",\n \"requestName\": \"Bing C\",\n \"items\": [\n {\n \"operation\": \"Add\",\n \"accessItemType\": \"role\",\n \"name\": \"Role-1\",\n \"decision\": \"APPROVED\",\n \"description\": \"The role descrition\",\n \"sourceId\": \"8a80828f643d484f01643e14202e206f\",\n \"sourceName\": \"Source1\",\n \"approvalInfos\": [\n {\n \"name\": \"John Snow\",\n \"id\": \"8a80828f643d484f01643e14202e2000\",\n \"status\": \"Approved\"\n }\n ]\n }\n ]\n },\n \"eventType\": \"AccessRequested\",\n \"identityId\": \"8a80828f643d484f01643e14202e206f\",\n \"dt\": \"2019-03-08T22:37:33.901Z\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "c04243ec-75a1-4868-b70d-0250037b6d10", + "name": "IdentityCertified", + "originalRequest": { + "url": { + "path": [ + "historical-identities", + ":id", + "events" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "The optional instant from which to return the access events", + "type": "text/plain" + }, + "key": "from", + "value": "2007-03-01T13:00:00Z" + }, + { + "disabled": true, + "description": { + "content": "An optional list of event types to return. If null or empty, all events are returned", + "type": "text/plain" + }, + "key": "eventTypes", + "value": "AccessRemovedEvent" + }, + { + "disabled": true, + "description": { + "content": "An optional list of access item types (app, account, entitlement, etc...) to return. If null or empty, all access items types are returned", + "type": "text/plain" + }, + "key": "accessItemTypes", + "value": "account" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"certification\": {\n \"id\": \"2c91808a77ff216301782327a50f09bf\",\n \"name\": \"Cert name\",\n \"signedDate\": \"2019-03-08T22:37:33.901Z\",\n \"certifiers\": [\n {\n \"id\": \"8a80828f643d484f01643e14202e206f\",\n \"displayName\": \"John Snow\"\n }\n ],\n \"reviewers\": [\n {\n \"id\": \"8a80828f643d484f01643e14202e206f\",\n \"displayName\": \"Daenerys Targaryen\"\n }\n ],\n \"signer\": {\n \"id\": \"8a80828f643d484f01643e14202e206f\",\n \"displayName\": \"Tyrion Lannister\"\n }\n },\n \"eventType\": \"IdentityCertified\",\n \"identityId\": \"8a80828f643d484f01643e14202e206f\",\n \"dt\": \"2019-03-08T22:37:33.901Z\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "8933e127-bfa7-434d-aabb-affd004e1e88", + "name": "AccountStatusChanged", + "originalRequest": { + "url": { + "path": [ + "historical-identities", + ":id", + "events" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "The optional instant from which to return the access events", + "type": "text/plain" + }, + "key": "from", + "value": "2007-03-01T13:00:00Z" + }, + { + "disabled": true, + "description": { + "content": "An optional list of event types to return. If null or empty, all events are returned", + "type": "text/plain" + }, + "key": "eventTypes", + "value": "AccessRemovedEvent" + }, + { + "disabled": true, + "description": { + "content": "An optional list of access item types (app, account, entitlement, etc...) to return. If null or empty, all access items types are returned", + "type": "text/plain" + }, + "key": "accessItemTypes", + "value": "account" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"account\": {\n \"id\": \"2c91808a77ff216301782327a50f09bf\",\n \"nativeIdentity\": 127999,\n \"displayName\": \"Sample Name\",\n \"sourceId\": \"8a80828f643d484f01643e14202e206f\",\n \"sourceName\": \"JDBC Entitlements Source\",\n \"entitlementCount\": 0,\n \"accessType\": \"account\"\n },\n \"statusChange\": {\n \"previousStatus\": \"ENABLED\",\n \"newStatus\": \"DISABLED\"\n },\n \"eventType\": \"AccountStatusChanged\",\n \"identityId\": \"8a80828f643d484f01643e14202e206f\",\n \"dt\": \"2019-03-08T22:37:33.901Z\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "d11e7adb-f5ae-467c-ac0c-a99543fdbca0", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "historical-identities", + ":id", + "events" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "The optional instant from which to return the access events", + "type": "text/plain" + }, + "key": "from", + "value": "2007-03-01T13:00:00Z" + }, + { + "disabled": true, + "description": { + "content": "An optional list of event types to return. If null or empty, all events are returned", + "type": "text/plain" + }, + "key": "eventTypes", + "value": "AccessRemovedEvent" + }, + { + "disabled": true, + "description": { + "content": "An optional list of access item types (app, account, entitlement, etc...) to return. If null or empty, all access items types are returned", + "type": "text/plain" + }, + "key": "accessItemTypes", + "value": "account" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" } ], "variable": [] @@ -82201,12 +86406,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "81f6b9d2-c46b-46c7-be39-4ca5c58c4053", + "id": "507f9fff-6130-4678-a791-a025338b4a0f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82226,7 +86431,7 @@ "type": "text/plain" }, "key": "from", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -82235,7 +86440,7 @@ "type": "text/plain" }, "key": "eventTypes", - "value": "" + "value": "AccessRemovedEvent" }, { "disabled": true, @@ -82244,7 +86449,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "account" }, { "disabled": true, @@ -82271,7 +86476,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -82301,12 +86506,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0a26db6c-5622-4e70-b970-ce09e0a84fe4", + "id": "304f031f-32d0-4c9c-8f74-ed93cccfa1b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82326,7 +86531,7 @@ "type": "text/plain" }, "key": "from", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -82335,7 +86540,7 @@ "type": "text/plain" }, "key": "eventTypes", - "value": "" + "value": "AccessRemovedEvent" }, { "disabled": true, @@ -82344,7 +86549,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "account" }, { "disabled": true, @@ -82371,7 +86576,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -82401,12 +86606,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1f942d48-fe77-4ab7-8731-590389e8a3bd", + "id": "b97dc98b-00c0-4152-9657-4a1e342b735c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -82426,7 +86631,7 @@ "type": "text/plain" }, "key": "from", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -82435,7 +86640,7 @@ "type": "text/plain" }, "key": "eventTypes", - "value": "" + "value": "AccessRemovedEvent" }, { "disabled": true, @@ -82444,7 +86649,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "account" }, { "disabled": true, @@ -82471,7 +86676,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -82501,12 +86706,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5a94b86c-af85-49aa-94e8-9c26df3912fd", + "id": "6d1533b7-dc56-4cc6-aa34-7b282497f5f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82526,7 +86731,7 @@ "type": "text/plain" }, "key": "from", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -82535,7 +86740,7 @@ "type": "text/plain" }, "key": "eventTypes", - "value": "" + "value": "AccessRemovedEvent" }, { "disabled": true, @@ -82544,7 +86749,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "account" }, { "disabled": true, @@ -82571,7 +86776,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -82601,12 +86806,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "513a7947-1b3c-48df-b613-b5abb755d84c", + "id": "4ed42079-48e9-4287-9e53-0ecfd1652454", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82626,7 +86831,7 @@ "type": "text/plain" }, "key": "from", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -82635,7 +86840,7 @@ "type": "text/plain" }, "key": "eventTypes", - "value": "" + "value": "AccessRemovedEvent" }, { "disabled": true, @@ -82644,7 +86849,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "account" }, { "disabled": true, @@ -82671,7 +86876,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -82701,7 +86906,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -82712,7 +86917,7 @@ } }, { - "id": "2727f82e-d8da-4cb6-b64d-74128e6022ae", + "id": "1d70c6f9-10bf-4c59-a5af-58fb2df2804b", "name": "Gets the start date of the identity", "request": { "name": "Gets the start date of the identity", @@ -82733,7 +86938,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -82754,7 +86959,7 @@ }, "response": [ { - "id": "2b487129-5ac4-467a-a03d-62edbce8732a", + "id": "1da03703-5439-450f-9fb0-4bb00412d3ce", "name": "The start date of the identity", "originalRequest": { "url": { @@ -82794,12 +86999,12 @@ "value": "application/json" } ], - "body": "", + "body": "2017-03-01T13:00:00.000Z", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3802be6b-4ddd-416d-9ac1-8bafff0474c8", + "id": "79687c4d-02cb-499d-ac7e-55ff0cdca76e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82839,12 +87044,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4ea0e9d6-f6ab-4728-ab9d-a55d2f00f5f4", + "id": "08aa14f2-1519-4cea-aa0f-64cafa71de70", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82884,12 +87089,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "333019f5-95e8-478f-8015-610a73a07382", + "id": "1d0fb1f0-7c86-4aae-ad11-495ea7d2f17e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82929,12 +87134,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c8479f3b-4f01-40b0-afee-713e81654fff", + "id": "df7c5a09-bc42-42ea-9ab5-973edb00832f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -82974,12 +87179,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ac01d76e-c4bc-43a6-bdb9-aa4abe270059", + "id": "5935285f-ae60-4b26-a476-e0552bab6d0a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83019,7 +87224,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -83030,7 +87235,7 @@ } }, { - "id": "c96e75fd-f1b5-49e0-8881-6c6ebc71e0e5", + "id": "c4d1075e-afb3-4db6-a0d1-4dcc3733c62f", "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", @@ -83055,7 +87260,7 @@ "type": "text/plain" }, "key": "snapshot1", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -83064,7 +87269,7 @@ "type": "text/plain" }, "key": "snapshot2", - "value": "" + "value": "2008-03-01T13:00:00Z" }, { "disabled": true, @@ -83073,7 +87278,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "aliquip anim minim" }, { "disabled": true, @@ -83082,7 +87287,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "non consequat laboris amet" }, { "disabled": true, @@ -83109,13 +87314,13 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -83136,7 +87341,7 @@ }, "response": [ { - "id": "4d5fea93-c1cf-4ca8-9a35-d06f41472a32", + "id": "cc444096-c14e-4b44-b0f2-c3e1bfef646c", "name": "A IdentityCompare object with difference details for each access item type", "originalRequest": { "url": { @@ -83156,7 +87361,7 @@ "type": "text/plain" }, "key": "snapshot1", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -83165,7 +87370,7 @@ "type": "text/plain" }, "key": "snapshot2", - "value": "" + "value": "2008-03-01T13:00:00Z" }, { "disabled": true, @@ -83174,7 +87379,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "non consequat laboris amet" }, { "disabled": true, @@ -83201,7 +87406,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -83231,12 +87436,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"accessItemDiff\": {\n \"elited0\": {}\n }\n },\n {\n \"accessItemDiff\": {\n \"inf73\": {},\n \"anim_46a\": {}\n }\n }\n]", + "body": "[\n {\n \"accessItemDiff\": {\n \"role\": {\n \"accessAdded\": 2,\n \"accessRemoved\": 3\n },\n \"entitlement\": {\n \"accessAdded\": 4,\n \"accessRemoved\": 0\n },\n \"accessProfile\": {\n \"accessAdded\": 0,\n \"accessRemoved\": 1\n }\n }\n },\n {\n \"accessItemDiff\": {\n \"role\": {\n \"accessAdded\": 2,\n \"accessRemoved\": 3\n },\n \"entitlement\": {\n \"accessAdded\": 4,\n \"accessRemoved\": 0\n },\n \"accessProfile\": {\n \"accessAdded\": 0,\n \"accessRemoved\": 1\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5d72ac5-a0ec-42b8-b193-b2e508ecb5c6", + "id": "60f717cd-92f8-42f5-90db-47bb4b994b72", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83256,7 +87461,7 @@ "type": "text/plain" }, "key": "snapshot1", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -83265,7 +87470,7 @@ "type": "text/plain" }, "key": "snapshot2", - "value": "" + "value": "2008-03-01T13:00:00Z" }, { "disabled": true, @@ -83274,7 +87479,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "non consequat laboris amet" }, { "disabled": true, @@ -83301,7 +87506,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -83331,12 +87536,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "31707550-c0d9-4021-b041-bb93fb98e4c2", + "id": "30e9c0ae-14bd-4bcc-9f1d-66aa35e807ea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83356,7 +87561,7 @@ "type": "text/plain" }, "key": "snapshot1", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -83365,7 +87570,7 @@ "type": "text/plain" }, "key": "snapshot2", - "value": "" + "value": "2008-03-01T13:00:00Z" }, { "disabled": true, @@ -83374,7 +87579,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "non consequat laboris amet" }, { "disabled": true, @@ -83401,7 +87606,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -83431,12 +87636,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "92a8da33-a471-4939-8793-9969f6215592", + "id": "57dff0f6-6bf8-4245-a937-a7b922ec10eb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83456,7 +87661,7 @@ "type": "text/plain" }, "key": "snapshot1", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -83465,7 +87670,7 @@ "type": "text/plain" }, "key": "snapshot2", - "value": "" + "value": "2008-03-01T13:00:00Z" }, { "disabled": true, @@ -83474,7 +87679,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "non consequat laboris amet" }, { "disabled": true, @@ -83501,7 +87706,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -83531,12 +87736,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4f6b8292-e373-49db-8cc9-4a75b176e51b", + "id": "fe396e9a-7ed2-48c6-a839-56105dfd77d1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -83556,7 +87761,7 @@ "type": "text/plain" }, "key": "snapshot1", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -83565,7 +87770,7 @@ "type": "text/plain" }, "key": "snapshot2", - "value": "" + "value": "2008-03-01T13:00:00Z" }, { "disabled": true, @@ -83574,7 +87779,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "non consequat laboris amet" }, { "disabled": true, @@ -83601,7 +87806,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -83631,12 +87836,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e3c355a0-fc97-467b-b310-3b83dd2294b5", + "id": "99fb6edf-ae14-4240-a8f3-658d0947a502", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83656,7 +87861,7 @@ "type": "text/plain" }, "key": "snapshot1", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -83665,7 +87870,7 @@ "type": "text/plain" }, "key": "snapshot2", - "value": "" + "value": "2008-03-01T13:00:00Z" }, { "disabled": true, @@ -83674,7 +87879,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "" + "value": "non consequat laboris amet" }, { "disabled": true, @@ -83701,7 +87906,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -83731,7 +87936,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -83742,7 +87947,7 @@ } }, { - "id": "613ec717-9c73-4260-adfa-cd40bee5098a", + "id": "6f221d62-85ad-4bef-b4d4-d6cd6439b0c1", "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", @@ -83768,7 +87973,7 @@ "type": "text/plain" }, "key": "access-associated", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -83777,7 +87982,7 @@ "type": "text/plain" }, "key": "snapshot1", - "value": "" + "value": "2008-03-01T13:00:00Z" }, { "disabled": true, @@ -83786,7 +87991,7 @@ "type": "text/plain" }, "key": "snapshot2", - "value": "" + "value": "2009-03-01T13:00:00Z" }, { "disabled": true, @@ -83813,13 +88018,13 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -83838,7 +88043,7 @@ "type": "text/plain" }, "type": "any", - "value": "", + "value": "role", "key": "accessType" } ] @@ -83854,7 +88059,7 @@ }, "response": [ { - "id": "da404418-66b7-4cd6-a483-fed23c531ec2", + "id": "de0e28f1-c8f3-4e9b-b59a-e18322ed2128", "name": "A list of events for the identity", "originalRequest": { "url": { @@ -83875,7 +88080,7 @@ "type": "text/plain" }, "key": "access-associated", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -83884,7 +88089,7 @@ "type": "text/plain" }, "key": "snapshot1", - "value": "" + "value": "2008-03-01T13:00:00Z" }, { "disabled": true, @@ -83893,7 +88098,7 @@ "type": "text/plain" }, "key": "snapshot2", - "value": "" + "value": "2009-03-01T13:00:00Z" }, { "disabled": true, @@ -83920,7 +88125,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -83950,12 +88155,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"eventType\": \"REMOVE\",\n \"displayName\": \"\",\n \"sourceName\": \"\"\n },\n {\n \"id\": \"\",\n \"eventType\": \"REMOVE\",\n \"displayName\": \"\",\n \"sourceName\": \"\"\n }\n]", + "body": "[\n {\n \"eventType\": \"ADD\",\n \"displayName\": \"Test\",\n \"sourceName\": \"Source\"\n },\n {\n \"eventType\": \"ADD\",\n \"displayName\": \"Test\",\n \"sourceName\": \"Source\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb1b106e-4f29-4604-8f4f-2a622b7704d5", + "id": "0af493ad-da69-4f5d-b1df-7d3330f5d514", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83976,7 +88181,7 @@ "type": "text/plain" }, "key": "access-associated", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -83985,7 +88190,7 @@ "type": "text/plain" }, "key": "snapshot1", - "value": "" + "value": "2008-03-01T13:00:00Z" }, { "disabled": true, @@ -83994,7 +88199,7 @@ "type": "text/plain" }, "key": "snapshot2", - "value": "" + "value": "2009-03-01T13:00:00Z" }, { "disabled": true, @@ -84021,7 +88226,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -84051,12 +88256,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7b73eaef-c6a4-4e90-a5af-5830874853f3", + "id": "c6bbf706-26c0-4145-8de1-43d3ec96acfe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84077,7 +88282,7 @@ "type": "text/plain" }, "key": "access-associated", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -84086,7 +88291,7 @@ "type": "text/plain" }, "key": "snapshot1", - "value": "" + "value": "2008-03-01T13:00:00Z" }, { "disabled": true, @@ -84095,7 +88300,7 @@ "type": "text/plain" }, "key": "snapshot2", - "value": "" + "value": "2009-03-01T13:00:00Z" }, { "disabled": true, @@ -84122,7 +88327,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -84152,12 +88357,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2925500f-3d2e-439a-84b3-30f0793975e1", + "id": "f126dbc6-ef3a-4bc0-97de-9ee563b1d19e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84178,7 +88383,7 @@ "type": "text/plain" }, "key": "access-associated", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -84187,7 +88392,7 @@ "type": "text/plain" }, "key": "snapshot1", - "value": "" + "value": "2008-03-01T13:00:00Z" }, { "disabled": true, @@ -84196,7 +88401,7 @@ "type": "text/plain" }, "key": "snapshot2", - "value": "" + "value": "2009-03-01T13:00:00Z" }, { "disabled": true, @@ -84223,7 +88428,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -84253,12 +88458,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b81c0349-4afe-4749-9571-1c23483cf9c1", + "id": "7cf5d2b7-8995-489e-b98f-0d11686964e6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84279,7 +88484,7 @@ "type": "text/plain" }, "key": "access-associated", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -84288,7 +88493,7 @@ "type": "text/plain" }, "key": "snapshot1", - "value": "" + "value": "2008-03-01T13:00:00Z" }, { "disabled": true, @@ -84297,7 +88502,7 @@ "type": "text/plain" }, "key": "snapshot2", - "value": "" + "value": "2009-03-01T13:00:00Z" }, { "disabled": true, @@ -84324,7 +88529,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -84354,12 +88559,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "66f7a9e3-cd1b-47a0-9040-ad601953a522", + "id": "bbc5f07f-4aaa-4e9d-8ceb-6abf7e1b876e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84380,7 +88585,7 @@ "type": "text/plain" }, "key": "access-associated", - "value": "" + "value": "2007-03-01T13:00:00Z" }, { "disabled": true, @@ -84389,7 +88594,7 @@ "type": "text/plain" }, "key": "snapshot1", - "value": "" + "value": "2008-03-01T13:00:00Z" }, { "disabled": true, @@ -84398,7 +88603,7 @@ "type": "text/plain" }, "key": "snapshot2", - "value": "" + "value": "2009-03-01T13:00:00Z" }, { "disabled": true, @@ -84425,7 +88630,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -84455,7 +88660,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -84472,7 +88677,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": "dbd256a3-1d60-4b31-8ea8-bedb8d61013d", + "id": "f9b648d8-240c-4be5-a3b6-4918fb5d7c0b", "name": "Identity Profiles list", "request": { "name": "Identity Profiles list", @@ -84513,7 +88718,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -84522,7 +88727,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -84531,7 +88736,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -84547,7 +88752,7 @@ }, "response": [ { - "id": "2e499729-d973-43ab-95d7-3c0977b8f12d", + "id": "70871958-63b7-413e-a7bf-68e33db56ba2", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -84583,7 +88788,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -84592,7 +88797,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -84601,7 +88806,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -84631,12 +88836,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"fugiat_ef\": 26374914.349867582,\n \"dolore_8ba\": 47843800.310585976\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sunt8\": \"amet consectetur\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n },\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"deseruntc\": true,\n \"voluptate41\": 21227663.978964984\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"laboris_9\": true,\n \"exercitation5de\": true,\n \"fugiat_5d3\": 21298203.104497388\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\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:25227008-4d37-9880-4f3c-654b4cdaeea6\",\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\": \"1b76532f-7f9d-6d35-faba-5359239bb6f6\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e3205d7c-d7a9-4f98-9ca1-f9a3d4d5b8a4", + "id": "20a52fe2-9221-4c5e-986c-f5d5754607bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84672,7 +88877,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -84681,7 +88886,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -84690,7 +88895,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -84720,12 +88925,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "99a784cc-c317-4b20-9b4f-8217995ac949", + "id": "8bc1282c-46f7-4d06-9204-e126ff60256e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84761,7 +88966,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -84770,7 +88975,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -84779,7 +88984,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -84809,12 +89014,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1e1538d8-6ae0-4e9e-88a5-d4e5179d58d2", + "id": "6683178a-b029-4251-99e0-8da131041b1d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84850,7 +89055,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -84859,7 +89064,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -84868,7 +89073,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -84898,12 +89103,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "16812254-c53f-4b3e-a79c-bb22db7a16b6", + "id": "83ce28ae-573f-4e03-ad64-7d1607b1a67c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84939,7 +89144,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -84948,7 +89153,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -84957,7 +89162,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -84987,12 +89192,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "987b84c9-04ed-4be4-a332-c58d1159e457", + "id": "418b99af-82d0-44f1-bf21-9dfe2db285ee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85028,7 +89233,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -85037,7 +89242,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -85046,7 +89251,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -85076,7 +89281,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -85087,7 +89292,7 @@ } }, { - "id": "66354db4-8889-4d1c-8776-7c42b180fe31", + "id": "f6ec6835-12d4-42c4-9915-38e41dd617e0", "name": "Create an Identity Profile", "request": { "name": "Create an Identity Profile", @@ -85118,7 +89323,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"consectetur_cd\": false,\n \"nostrud69b\": 2023573.2199151963\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nond4\": \"tempor eu aute elit\",\n \"nisi_5c4\": \"sunt laboris esse ea\",\n \"aute2da\": 96967731.95607361\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\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\": \"urn:uuid:adea4053-ad9a-7689-7c55-f48039f4d2de\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -85129,7 +89334,7 @@ }, "response": [ { - "id": "665d0199-abbb-4315-975c-91c645de8d5b", + "id": "4536663f-a146-4c61-9156-fdb21a2b8f6f", "name": "The created Identity Profile", "originalRequest": { "url": { @@ -85163,7 +89368,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"consectetur_cd\": false,\n \"nostrud69b\": 2023573.2199151963\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nond4\": \"tempor eu aute elit\",\n \"nisi_5c4\": \"sunt laboris esse ea\",\n \"aute2da\": 96967731.95607361\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\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\": \"urn:uuid:adea4053-ad9a-7689-7c55-f48039f4d2de\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -85180,12 +89385,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"consectetur_cd\": false,\n \"nostrud69b\": 2023573.2199151963\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nond4\": \"tempor eu aute elit\",\n \"nisi_5c4\": \"sunt laboris esse ea\",\n \"aute2da\": 96967731.95607361\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\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\": \"urn:uuid:adea4053-ad9a-7689-7c55-f48039f4d2de\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e040f939-4383-4d9f-9950-3becd0b76914", + "id": "25eeeda0-94ba-4306-bc13-4f972bbabbf6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85219,7 +89424,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"consectetur_cd\": false,\n \"nostrud69b\": 2023573.2199151963\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nond4\": \"tempor eu aute elit\",\n \"nisi_5c4\": \"sunt laboris esse ea\",\n \"aute2da\": 96967731.95607361\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\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\": \"urn:uuid:adea4053-ad9a-7689-7c55-f48039f4d2de\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -85236,12 +89441,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "843bafca-cba9-4a1f-9e81-830bd10a2d39", + "id": "408f62b4-dfd6-4768-a965-b542a309ca0b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85275,7 +89480,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"consectetur_cd\": false,\n \"nostrud69b\": 2023573.2199151963\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nond4\": \"tempor eu aute elit\",\n \"nisi_5c4\": \"sunt laboris esse ea\",\n \"aute2da\": 96967731.95607361\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\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\": \"urn:uuid:adea4053-ad9a-7689-7c55-f48039f4d2de\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -85292,12 +89497,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "430393f8-7096-4ae1-95c8-8091cba3650f", + "id": "35be0193-1eda-41ef-8043-ef1d5d032652", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85331,7 +89536,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"consectetur_cd\": false,\n \"nostrud69b\": 2023573.2199151963\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nond4\": \"tempor eu aute elit\",\n \"nisi_5c4\": \"sunt laboris esse ea\",\n \"aute2da\": 96967731.95607361\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\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\": \"urn:uuid:adea4053-ad9a-7689-7c55-f48039f4d2de\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -85348,12 +89553,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0732492d-7e55-4675-932f-76dbf34aec59", + "id": "2f99dd43-d685-448b-b131-97fd52ef0743", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85387,7 +89592,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"consectetur_cd\": false,\n \"nostrud69b\": 2023573.2199151963\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nond4\": \"tempor eu aute elit\",\n \"nisi_5c4\": \"sunt laboris esse ea\",\n \"aute2da\": 96967731.95607361\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\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\": \"urn:uuid:adea4053-ad9a-7689-7c55-f48039f4d2de\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -85404,12 +89609,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "84199a18-e11f-4f75-bc0f-d7bbdb9d799d", + "id": "40d6f678-3d47-4fa3-9140-e5e205ed1e6b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85443,7 +89648,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"consectetur_cd\": false,\n \"nostrud69b\": 2023573.2199151963\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nond4\": \"tempor eu aute elit\",\n \"nisi_5c4\": \"sunt laboris esse ea\",\n \"aute2da\": 96967731.95607361\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\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\": \"urn:uuid:adea4053-ad9a-7689-7c55-f48039f4d2de\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -85460,7 +89665,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -85471,7 +89676,7 @@ } }, { - "id": "c1b9a41d-5bab-44ef-868b-31e2660dfd0a", + "id": "6fb20834-6f13-4d73-90f9-1940dd24e14d", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -85503,7 +89708,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"2c9180867b2a34e0017b3078d60b0699\",\n \"2c9180867b2a34e0017b3078d60b0698\"\n]", "options": { "raw": { "headerFamily": "json", @@ -85514,7 +89719,7 @@ }, "response": [ { - "id": "3fcc09c3-2d98-4b34-85ab-d4d86bbb0228", + "id": "2ad18f33-8681-4e5c-9f42-61bcf272498e", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -85549,7 +89754,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"2c9180867b2a34e0017b3078d60b0699\",\n \"2c9180867b2a34e0017b3078d60b0698\"\n]", "options": { "raw": { "headerFamily": "json", @@ -85566,12 +89771,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"launched\": \"\",\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\": \"1975-10-20T14:59:19.652Z\",\n \"launched\": \"1968-08-02T16:58:38.185Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7dd31482-af02-4de5-a1dd-343881546a24", + "id": "32132b4b-8791-499e-8177-64006cfe04a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85606,7 +89811,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"2c9180867b2a34e0017b3078d60b0699\",\n \"2c9180867b2a34e0017b3078d60b0698\"\n]", "options": { "raw": { "headerFamily": "json", @@ -85623,12 +89828,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7911689c-c3ab-4bdc-8327-ad1c87d12963", + "id": "b071782a-f96f-4b05-94a6-b22c3bfc1bc9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85663,7 +89868,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"2c9180867b2a34e0017b3078d60b0699\",\n \"2c9180867b2a34e0017b3078d60b0698\"\n]", "options": { "raw": { "headerFamily": "json", @@ -85680,12 +89885,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "beb2677b-5ca1-4e41-94ba-100e14bf9f5b", + "id": "5bea4e86-c3dd-440f-a291-71f1d1143a44", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85720,7 +89925,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"2c9180867b2a34e0017b3078d60b0699\",\n \"2c9180867b2a34e0017b3078d60b0698\"\n]", "options": { "raw": { "headerFamily": "json", @@ -85737,12 +89942,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "10c38204-080f-4fc3-8e32-7316e4612f73", + "id": "63c505f4-bc8a-43bf-a925-6e3babd732a2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85777,7 +89982,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"2c9180867b2a34e0017b3078d60b0699\",\n \"2c9180867b2a34e0017b3078d60b0698\"\n]", "options": { "raw": { "headerFamily": "json", @@ -85794,12 +89999,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26c42a91-1df1-4fcd-a74e-dee07576d43c", + "id": "2c48d9ae-4c7b-431a-95b1-8b60d90d0636", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85834,7 +90039,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n \"\",\n \"\"\n]", + "raw": "[\n \"2c9180867b2a34e0017b3078d60b0699\",\n \"2c9180867b2a34e0017b3078d60b0698\"\n]", "options": { "raw": { "headerFamily": "json", @@ -85851,7 +90056,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -85862,7 +90067,7 @@ } }, { - "id": "eca1e326-56fb-4ded-8bac-6e903d9c2a8c", + "id": "3ffb5414-2df1-4f7d-bbd1-f8c5c30c23b6", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -85904,7 +90109,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -85913,7 +90118,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -85922,7 +90127,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -85938,7 +90143,7 @@ }, "response": [ { - "id": "d40f9db7-338e-498c-a8cf-5c2e589961b6", + "id": "e4e78d8f-3c96-49ef-92a6-49898cfa8567", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -85975,7 +90180,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -85984,7 +90189,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -85993,7 +90198,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -86023,12 +90228,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"SERVICE_DESK_INTEGRATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure014\": \"\",\n \"Excepteur_e7a\": \"\",\n \"eiusmod_9a\": \"\",\n \"aliqua_17\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"laboris7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"exc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure77\": \"\",\n \"eu_b\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "body": "[\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dd6646a2-3f58-4268-94b6-e4e9e4f2d61f", + "id": "e8d11a96-109c-486f-bdf0-02e26c7e6a3a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86065,7 +90270,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -86074,7 +90279,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -86083,7 +90288,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -86113,12 +90318,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9e6c3a9f-413a-42f6-a46a-b90bf2fbe216", + "id": "d5f254ad-781e-46d1-adc9-a2c104f19c6f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86155,7 +90360,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -86164,7 +90369,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -86173,7 +90378,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -86203,12 +90408,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3d3cde2c-254e-4b2f-8ede-d1ffd3067a26", + "id": "81a8fee4-2b63-4880-8066-84ed8546bdbe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86245,7 +90450,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -86254,7 +90459,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -86263,7 +90468,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -86293,12 +90498,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a7b88957-f1d0-4acf-8236-b80ca84b273a", + "id": "ac0377b2-1d6f-491c-ab99-86237949d55b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -86335,7 +90540,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -86344,7 +90549,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -86353,7 +90558,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -86383,12 +90588,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "267e9c14-47c1-404d-93d0-6a57a4296880", + "id": "f2388869-526b-404f-bce9-42727d1bb51d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86425,7 +90630,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -86434,7 +90639,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -86443,7 +90648,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -86473,12 +90678,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b323afb8-fc55-4b71-a2a5-5bb65b2e30e6", + "id": "9bbeef46-1c4c-4429-ab29-95d20772f04a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86515,7 +90720,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -86524,7 +90729,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 8c190e6787aa4ed9a90bd9d5344523fb" }, { "disabled": true, @@ -86533,7 +90738,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-priority" } ], "variable": [] @@ -86563,7 +90768,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -86574,7 +90779,7 @@ } }, { - "id": "47373e96-e1f7-4ae8-b9f9-0e2e824e28df", + "id": "e76d72ba-5150-4391-b156-c935055d2a21", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -86606,7 +90811,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"SERVICE_DESK_INTEGRATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure014\": \"\",\n \"Excepteur_e7a\": \"\",\n \"eiusmod_9a\": \"\",\n \"aliqua_17\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"laboris7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"exc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure77\": \"\",\n \"eu_b\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "raw": "[\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -86617,7 +90822,7 @@ }, "response": [ { - "id": "d11ea3ec-3cb4-4663-84c5-e8e6a5b249ab", + "id": "e19811e4-78a2-4a91-b1a2-e7267ee0c640", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -86652,7 +90857,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"SERVICE_DESK_INTEGRATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure014\": \"\",\n \"Excepteur_e7a\": \"\",\n \"eiusmod_9a\": \"\",\n \"aliqua_17\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"laboris7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"exc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure77\": \"\",\n \"eu_b\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "raw": "[\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -86669,12 +90874,12 @@ "value": "application/json" } ], - "body": "{\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"veniam_b2\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"ipsum_edf\": {},\n \"mollitca\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"cillum7\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"dolore52\": {},\n \"ea_5\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"culpa_466\": {},\n \"irure5__\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"ea1\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"TRANSFORM\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"TRIGGER_SUBSCRIPTION\",\n \"id\": \"\",\n \"name\": \"\"\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 \"inc\": {},\n \"fugiatf\": {},\n \"occaecat_d3\": {},\n \"nisi_37\": {},\n \"essec99\": {}\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 \"et4\": {},\n \"in7\": {}\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 \"ad_389\": {}\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 \"culpad2\": {}\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 \"sedf4\": {},\n \"adipisicing_d\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"in_d\": {}\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": "f494e3fa-f644-4df7-9292-add95624f6b4", + "id": "b6d926f2-a328-43f1-9fe8-30452d144fcb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86709,7 +90914,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"SERVICE_DESK_INTEGRATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure014\": \"\",\n \"Excepteur_e7a\": \"\",\n \"eiusmod_9a\": \"\",\n \"aliqua_17\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"laboris7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"exc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure77\": \"\",\n \"eu_b\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "raw": "[\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -86726,12 +90931,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ad18526a-2c80-42d2-9503-30e96e1ee6ba", + "id": "baa1d637-6f53-43d6-a713-0ee7e0006978", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86766,7 +90971,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"SERVICE_DESK_INTEGRATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure014\": \"\",\n \"Excepteur_e7a\": \"\",\n \"eiusmod_9a\": \"\",\n \"aliqua_17\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"laboris7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"exc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure77\": \"\",\n \"eu_b\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "raw": "[\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -86783,12 +90988,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a15cbaf-7d36-4501-961c-489e6f27c192", + "id": "120f3629-f1c5-4e4a-9493-16482a49f093", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86823,7 +91028,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"SERVICE_DESK_INTEGRATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure014\": \"\",\n \"Excepteur_e7a\": \"\",\n \"eiusmod_9a\": \"\",\n \"aliqua_17\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"laboris7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"exc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure77\": \"\",\n \"eu_b\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "raw": "[\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -86840,12 +91045,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "64084400-7a08-49bf-98a2-adfee889c79f", + "id": "2e7f19b1-e4c0-4f1a-bc31-d7b30e9914bc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86880,7 +91085,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"SERVICE_DESK_INTEGRATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure014\": \"\",\n \"Excepteur_e7a\": \"\",\n \"eiusmod_9a\": \"\",\n \"aliqua_17\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"laboris7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"exc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure77\": \"\",\n \"eu_b\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "raw": "[\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -86897,12 +91102,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ff741d36-4bee-4c30-a897-d553bfa4d71c", + "id": "282d1163-2f8b-4ccf-a462-652af8aa3be9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86937,7 +91142,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"SERVICE_DESK_INTEGRATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure014\": \"\",\n \"Excepteur_e7a\": \"\",\n \"eiusmod_9a\": \"\",\n \"aliqua_17\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"laboris7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"exc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"irure77\": \"\",\n \"eu_b\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "raw": "[\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2015-05-28T14:07:17Z\",\n \"modified\": \"2015-05-28T14:07:17Z\",\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\": \"2b838de9-db9b-abcf-e646-d4f274ad4238\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -86954,7 +91159,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -86965,7 +91170,7 @@ } }, { - "id": "bc9d73b6-3eed-43db-a952-002a15e1f9d3", + "id": "c19e44be-29e2-4ac1-9826-8271050808b5", "name": "Generate Identity Profile Preview", "request": { "name": "Generate Identity Profile Preview", @@ -86997,7 +91202,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"elit_d\": -18144640\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"do_8_6\": 26162090.751707196,\n \"sitb\": true,\n \"adipisicing_5\": 1165622\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"55eeec6b-4447-59d6-0cbe-057546b97eda\",\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", @@ -87008,7 +91213,7 @@ }, "response": [ { - "id": "1957ba7b-5c4c-4813-b1ae-0a6d1eacaf8b", + "id": "f215cb20-9ecb-4961-a01e-c088ab2dfd6e", "name": "Object representing the preview object with all of the identity attributes using the current mappings.", "originalRequest": { "url": { @@ -87043,7 +91248,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"elit_d\": -18144640\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"do_8_6\": 26162090.751707196,\n \"sitb\": true,\n \"adipisicing_5\": 1165622\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"55eeec6b-4447-59d6-0cbe-057546b97eda\",\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", @@ -87060,12 +91265,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"previewAttributes\": [\n {\n \"name\": \"\",\n \"value\": {},\n \"previousValue\": {},\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"name\": \"\",\n \"value\": {},\n \"previousValue\": {},\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"identity\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n },\n \"previewAttributes\": [\n {\n \"name\": \"email\",\n \"value\": {},\n \"previousValue\": {},\n \"errorMessages\": [\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 },\n {\n \"name\": \"email\",\n \"value\": {},\n \"previousValue\": {},\n \"errorMessages\": [\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 }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f34cae9d-7fbd-4812-8573-e15dd5bc4ca1", + "id": "eedef5f8-ec93-43df-84dc-45445a28294a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87100,7 +91305,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"elit_d\": -18144640\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"do_8_6\": 26162090.751707196,\n \"sitb\": true,\n \"adipisicing_5\": 1165622\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"55eeec6b-4447-59d6-0cbe-057546b97eda\",\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", @@ -87117,12 +91322,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "43fbfcd5-84fa-4262-8361-e370fa695b6d", + "id": "5d0a076c-2cc1-4910-85cd-b0bea8b3e8ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87157,7 +91362,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"elit_d\": -18144640\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"do_8_6\": 26162090.751707196,\n \"sitb\": true,\n \"adipisicing_5\": 1165622\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"55eeec6b-4447-59d6-0cbe-057546b97eda\",\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", @@ -87174,12 +91379,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f61d3aa0-ce85-4ea8-b866-409dac876e94", + "id": "a8d22258-bbfd-4961-bc74-8486911d4b2d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87214,7 +91419,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"elit_d\": -18144640\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"do_8_6\": 26162090.751707196,\n \"sitb\": true,\n \"adipisicing_5\": 1165622\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"55eeec6b-4447-59d6-0cbe-057546b97eda\",\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", @@ -87231,12 +91436,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ddc145bb-fe35-441a-a45f-75c32498b215", + "id": "a6c2d746-bc4f-43c6-ac16-f03b83c1b32c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87271,7 +91476,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"elit_d\": -18144640\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"do_8_6\": 26162090.751707196,\n \"sitb\": true,\n \"adipisicing_5\": 1165622\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"55eeec6b-4447-59d6-0cbe-057546b97eda\",\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", @@ -87288,12 +91493,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0e169aca-de0f-41b6-a0b0-56fce40e01c5", + "id": "155845c8-5202-480f-aea6-39b95bf982fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87328,7 +91533,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"elit_d\": -18144640\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"do_8_6\": 26162090.751707196,\n \"sitb\": true,\n \"adipisicing_5\": 1165622\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"55eeec6b-4447-59d6-0cbe-057546b97eda\",\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", @@ -87345,7 +91550,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -87356,7 +91561,7 @@ } }, { - "id": "fa6958db-f93a-42e2-8ec8-81b8c164800e", + "id": "b0b40480-8e4e-4b28-bea7-4af2f0938e18", "name": "Gets a single Identity Profile", "request": { "name": "Gets a single Identity Profile", @@ -87376,7 +91581,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "identity-profile-id", "disabled": true, "description": { @@ -87397,7 +91602,7 @@ }, "response": [ { - "id": "a9702fa1-458d-4dfb-ae4b-33c7b564033d", + "id": "105952cc-ccd7-48de-8c6c-b2a8e2fab5f9", "name": "An Identity Profile object", "originalRequest": { "url": { @@ -87436,12 +91641,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"consectetur_cd\": false,\n \"nostrud69b\": 2023573.2199151963\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nond4\": \"tempor eu aute elit\",\n \"nisi_5c4\": \"sunt laboris esse ea\",\n \"aute2da\": 96967731.95607361\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\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\": \"urn:uuid:adea4053-ad9a-7689-7c55-f48039f4d2de\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d649f89b-c9f6-4b2d-807d-9328a4f2d311", + "id": "54bad066-cd56-4d88-8faa-1f2897546eb8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87480,12 +91685,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3ef3c016-8774-4841-9be0-2fdc1bf79ce3", + "id": "4ef883c8-3a6b-4a57-a678-25ebea9e4a02", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87524,12 +91729,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bfcc11fa-b073-4ea2-b552-5281bc080105", + "id": "d93dfc3d-7773-4636-9897-d53c68bfc3fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87568,12 +91773,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2d74018c-0eb3-4716-9dfc-c8dd63d95405", + "id": "15b024de-89e3-43f7-9498-1ee68561e4e4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87612,12 +91817,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "cc447dae-e6cc-483e-b30d-759562f8bef1", + "id": "819abae5-9dab-43ad-879c-4866c2fc9fb1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87656,12 +91861,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "816bb345-2d80-48da-b5bc-108a9191ab38", + "id": "d93c5752-e8e0-4130-9a94-5590609b077c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87700,7 +91905,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -87711,7 +91916,7 @@ } }, { - "id": "34e2911b-4447-45ca-8296-5d5b6f540f33", + "id": "ea9915d6-7d1b-453f-89ad-7b4fd8b31727", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -87731,7 +91936,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "identity-profile-id", "disabled": true, "description": { @@ -87752,7 +91957,7 @@ }, "response": [ { - "id": "89f96185-39d4-4ad6-bdef-748ab9a45144", + "id": "7cabea5b-d089-43bf-a9db-d8a146d4695a", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -87791,12 +91996,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"launched\": \"\",\n \"completionStatus\": \"Error\"\n}", + "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1974-08-04T10:09:35.925Z\",\n \"launched\": \"2018-01-01T11:36:25.980Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "79e511b1-3b23-48f4-b597-d0184ed3697f", + "id": "8daea231-8b9e-4b74-a3ef-af5c5dcaaef7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87835,12 +92040,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "dd23df2e-018f-43be-ba6a-f6c67bad3b52", + "id": "620cf861-f95a-4114-9546-6b5b66f441aa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87879,12 +92084,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36cec6b2-b240-4476-915b-a916b06df2d8", + "id": "0180373a-125b-4124-93a9-d7ce10236738", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87923,12 +92128,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1a91ed9f-5c9a-4a28-be97-7ee228ecf5bd", + "id": "b85de478-7059-4ca9-b87e-5f59986b5ae9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87967,12 +92172,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2a0ef093-0afa-45ea-9e9f-bcb143766328", + "id": "4e57091d-799f-460f-ba45-b11148014d2a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88011,12 +92216,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8a0e8803-6a07-4b24-889e-1d1c56791a0a", + "id": "1faa5008-10ac-4fd2-9871-8725259c15f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88055,7 +92260,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -88066,7 +92271,7 @@ } }, { - "id": "f0f70491-9149-4723-9da6-34a17886218b", + "id": "727367bc-b2fa-474a-ac91-5ebe5b01aae5", "name": "Update the Identity Profile", "request": { "name": "Update the Identity Profile", @@ -88086,7 +92291,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "identity-profile-id", "disabled": true, "description": { @@ -88109,7 +92314,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/identityAttributeConfig/attributeTransforms/0\",\n \"value\": {\n \"identityAttributeName\": \"location\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"sourceName\": \"Employees\",\n \"attributeName\": \"location\",\n \"sourceId\": \"2c91808878b7d63b0178c66ffcdc4ce4\"\n }\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -88120,7 +92325,7 @@ }, "response": [ { - "id": "b67226c5-6595-4b09-9fce-8f9964cfc3f9", + "id": "6c81efc0-736c-431c-a79c-8da7769c9b58", "name": "The updated Identity Profile.", "originalRequest": { "url": { @@ -88155,7 +92360,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/identityAttributeConfig/attributeTransforms/0\",\n \"value\": {\n \"identityAttributeName\": \"location\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"sourceName\": \"Employees\",\n \"attributeName\": \"location\",\n \"sourceId\": \"2c91808878b7d63b0178c66ffcdc4ce4\"\n }\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -88172,12 +92377,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"consectetur_cd\": false,\n \"nostrud69b\": 2023573.2199151963\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nond4\": \"tempor eu aute elit\",\n \"nisi_5c4\": \"sunt laboris esse ea\",\n \"aute2da\": 96967731.95607361\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\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\": \"urn:uuid:adea4053-ad9a-7689-7c55-f48039f4d2de\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e95aaea-3e1f-4edf-bc21-ad40a266df22", + "id": "02829b5c-f6bb-4301-8902-695b9d280e5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88212,7 +92417,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/identityAttributeConfig/attributeTransforms/0\",\n \"value\": {\n \"identityAttributeName\": \"location\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"sourceName\": \"Employees\",\n \"attributeName\": \"location\",\n \"sourceId\": \"2c91808878b7d63b0178c66ffcdc4ce4\"\n }\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -88229,12 +92434,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a46b7f83-86fc-4462-8fc3-bcc53b946f8c", + "id": "1e09bbc4-58bc-4225-b831-e1fc79f0a2a9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88269,7 +92474,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/identityAttributeConfig/attributeTransforms/0\",\n \"value\": {\n \"identityAttributeName\": \"location\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"sourceName\": \"Employees\",\n \"attributeName\": \"location\",\n \"sourceId\": \"2c91808878b7d63b0178c66ffcdc4ce4\"\n }\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -88286,12 +92491,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "81e6b99d-0483-443b-9bbb-c0edb2490ab7", + "id": "34e8c63a-fe77-4660-bde5-54bc14fbc2bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88326,7 +92531,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/identityAttributeConfig/attributeTransforms/0\",\n \"value\": {\n \"identityAttributeName\": \"location\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"sourceName\": \"Employees\",\n \"attributeName\": \"location\",\n \"sourceId\": \"2c91808878b7d63b0178c66ffcdc4ce4\"\n }\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -88343,12 +92548,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d0c45cc1-70b8-4788-b0cf-c929dc93d5cf", + "id": "1523e3d9-51ef-425e-96e7-5d0ace493ef2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88383,7 +92588,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/identityAttributeConfig/attributeTransforms/0\",\n \"value\": {\n \"identityAttributeName\": \"location\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"sourceName\": \"Employees\",\n \"attributeName\": \"location\",\n \"sourceId\": \"2c91808878b7d63b0178c66ffcdc4ce4\"\n }\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -88400,12 +92605,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "356c4675-9e3b-45c5-abdf-1072a3312e93", + "id": "15eb1d38-67fa-419c-9ec4-530dfaae27d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88440,7 +92645,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/identityAttributeConfig/attributeTransforms/0\",\n \"value\": {\n \"identityAttributeName\": \"location\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"sourceName\": \"Employees\",\n \"attributeName\": \"location\",\n \"sourceId\": \"2c91808878b7d63b0178c66ffcdc4ce4\"\n }\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -88457,12 +92662,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f1eb176c-6c93-43a1-b363-749ed3c072e5", + "id": "46789c2b-08ed-4879-8197-02f1c7c60075", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88497,7 +92702,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/identityAttributeConfig/attributeTransforms/0\",\n \"value\": {\n \"identityAttributeName\": \"location\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"sourceName\": \"Employees\",\n \"attributeName\": \"location\",\n \"sourceId\": \"2c91808878b7d63b0178c66ffcdc4ce4\"\n }\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -88514,7 +92719,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -88525,7 +92730,7 @@ } }, { - "id": "102d0d9f-4677-44de-8efc-b90b03363981", + "id": "deca6747-943a-430d-84fc-a95db21aecec", "name": "Default identity attribute config", "request": { "name": "Default identity attribute config", @@ -88546,7 +92751,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "identity-profile-id", "disabled": true, "description": { @@ -88567,7 +92772,7 @@ }, "response": [ { - "id": "bbedb95d-7912-423b-8641-823a696af995", + "id": "e5012e4c-c709-452d-b645-b86338fe2ae0", "name": "An Identity Attribute Config object", "originalRequest": { "url": { @@ -88607,12 +92812,12 @@ "value": "application/json" } ], - "body": "{\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"dolor3\": 40476386.387221545,\n \"reprehenderit_ede\": -35617983,\n \"ut_c\": \"Duis magna\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"adipisicing_54\": 44193313,\n \"eua\": \"non Duis nulla\",\n \"quia\": -40144332.66837605\n }\n }\n }\n ]\n}", + "body": "{\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0bf14850-1c6e-41f4-acad-88062558655d", + "id": "37c0ad8f-89fa-4cf9-b328-15b6a10af70a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88652,12 +92857,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "815f4613-9fe9-40d0-b3cb-dfea47654d24", + "id": "683fb934-7c4c-412a-b6aa-37ff06dd1d80", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88697,12 +92902,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4a9a4a7e-a836-44f6-8fb7-a82582ad9962", + "id": "7548e4ce-3a97-454a-9d69-12a08d775621", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88742,12 +92947,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d7288ae3-64bb-495a-ac0e-d422112401d5", + "id": "1c6dc5ed-1189-4214-941b-5c49c4508105", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88787,12 +92992,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f4102d00-0e97-4f6a-8c15-15a57429908d", + "id": "731ad75d-ba24-49c1-912b-821e83a83246", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88832,12 +93037,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ed3aa6c-0263-42ce-a001-a150c4c79e94", + "id": "b63ae834-b99e-4a7b-9480-e030d5857514", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88877,7 +93082,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -88888,7 +93093,7 @@ } }, { - "id": "aab89153-d52b-4150-8eda-a74d4c4fcc5e", + "id": "4367aee9-4b74-4920-b021-1394da51b818", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -88909,7 +93114,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "identity-profile-id", "disabled": true, "description": { @@ -88930,7 +93135,7 @@ }, "response": [ { - "id": "163c07af-a1e5-4904-866c-5e753f5b8880", + "id": "87fa722d-16c7-436b-988c-4bc1c3ce2d76", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -88975,7 +93180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efb1ef5f-2f1e-47f5-91e9-d43fd5c4168f", + "id": "39e195e2-ec38-4e93-8a67-e4bab5c21962", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89015,12 +93220,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2b4f78d7-1f85-43f9-8f28-c960516b7628", + "id": "e214bbbb-7ad7-42a0-8060-75876d9a0a7f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89060,12 +93265,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "643d2f71-e8b5-4c53-95f8-d30de78a0118", + "id": "fd1cfd9e-ab2c-4cdd-8753-16c9dc8cd89f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89105,12 +93310,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f7bb15f9-564b-47fd-9cd9-b8c309ca2d96", + "id": "af26dd2a-e6a7-4e81-94cb-e9af69345cdf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -89150,12 +93355,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d300a910-782f-4767-87b9-5da3612a4573", + "id": "21f2e9fa-58d6-4ca2-93f5-60d6c164963a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89195,12 +93400,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "823383ad-decf-4646-b38a-66ad120107d5", + "id": "d2ee0aa5-2265-4368-9955-a2bc415c01a5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89240,7 +93445,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -89257,7 +93462,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": "2cc15a0e-a1d7-474e-b156-49a819fdcbe6", + "id": "410032b7-3900-450a-832e-bf12825c8d5b", "name": "Lifecycle State", "request": { "name": "Lifecycle State", @@ -89279,7 +93484,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "velit aliquip", "key": "identity-profile-id", "disabled": true, "description": { @@ -89289,7 +93494,7 @@ }, { "type": "any", - "value": "", + "value": "velit aliquip", "key": "lifecycle-state-id", "disabled": true, "description": { @@ -89310,7 +93515,7 @@ }, "response": [ { - "id": "01c4c586-02c3-4b1b-b028-d79ad3a6e507", + "id": "519ac1bb-7495-4f82-b0dc-d5adb18d4d49", "name": "lifecycle-state", "originalRequest": { "url": { @@ -89351,12 +93556,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"technicalName\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"identityCount\": \"\",\n \"emailNotificationOption\": {\n \"notifyManagers\": \"\",\n \"notifyAllAdmins\": \"\",\n \"notifySpecificUsers\": \"\",\n \"emailAddressList\": [\n \"\",\n \"\"\n ]\n },\n \"accountActions\": [\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"accessProfileIds\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"Lifecycle Name\",\n \"technicalName\": \"lifecycleTechnicalName\",\n \"description\": \"LifecycleDescription\",\n \"created\": \"2015-05-28T14:07:17.000Z\",\n \"modified\": \"2015-05-28T14:07:17.000Z\",\n \"enabled\": true,\n \"identityCount\": 12,\n \"emailNotificationOption\": {\n \"notifyManagers\": true,\n \"notifyAllAdmins\": true,\n \"notifySpecificUsers\": true,\n \"emailAddressList\": [\n \"test@test.com\",\n \"test2@test.com\"\n ]\n },\n \"accountActions\": [\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n },\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n }\n ],\n \"accessProfileIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f9d24e02-8740-4c14-b7ce-b627e946136b", + "id": "c9b60d7c-784a-4c8e-8374-605f3267b81a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89397,12 +93602,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d2084ec5-feba-420c-ae45-437c7a9fe96f", + "id": "a63e6e23-b928-44cb-a8f3-47d69cfb0717", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89443,12 +93648,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e04a8b4d-55a1-47d1-8e36-fbb27179572b", + "id": "85b107d1-5deb-4b68-97e4-af8adb02c8ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89489,12 +93694,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4fe69352-3431-4074-b3db-30b8d32de6a9", + "id": "46c5d67e-852f-4742-a962-20581c7cde71", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89535,12 +93740,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f53c9208-a2ff-471e-9778-bedb4a0c751f", + "id": "23eb310d-25aa-403b-8832-16f660fbf538", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89581,7 +93786,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -89592,7 +93797,7 @@ } }, { - "id": "d255e662-92b7-431e-aed0-f2d0ddf91127", + "id": "7c7b8cfb-f1c1-4ee8-977a-a23f61c9eb2d", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -89614,7 +93819,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "velit aliquip", "key": "identity-profile-id", "disabled": true, "description": { @@ -89624,7 +93829,7 @@ }, { "type": "any", - "value": "", + "value": "velit aliquip", "key": "lifecycle-state-id", "disabled": true, "description": { @@ -89647,7 +93852,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/accessProfileIds\",\n \"value\": [\n \"2c918087742bab150174407a80f3125e\",\n \"2c918087742bab150174407a80f3124f\"\n ]\n },\n {\n \"op\": \"replace\",\n \"path\": \"/accountActions\",\n \"value\": [\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"2c9180846a2f82fb016a481c1b1560c5\",\n \"2c9180846a2f82fb016a481c1b1560cc\"\n ]\n },\n {\n \"action\": \"DISABLE\",\n \"sourceIds\": [\n \"2c91808869a0c9980169a207258513fb\"\n ]\n }\n ]\n },\n {\n \"op\": \"replace\",\n \"path\": \"/emailNotificationOption\",\n \"value\": {\n \"notifyManagers\": true,\n \"notifyAllAdmins\": false,\n \"notifySpecificUsers\": false,\n \"emailAddressList\": []\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -89658,7 +93863,7 @@ }, "response": [ { - "id": "03105d52-c329-4df7-b2a5-7d171e507e76", + "id": "82c97b7e-8dcb-4cfc-90c0-5bf1c9662461", "name": "Updated lifecycle-state.", "originalRequest": { "url": { @@ -89695,7 +93900,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/accessProfileIds\",\n \"value\": [\n \"2c918087742bab150174407a80f3125e\",\n \"2c918087742bab150174407a80f3124f\"\n ]\n },\n {\n \"op\": \"replace\",\n \"path\": \"/accountActions\",\n \"value\": [\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"2c9180846a2f82fb016a481c1b1560c5\",\n \"2c9180846a2f82fb016a481c1b1560cc\"\n ]\n },\n {\n \"action\": \"DISABLE\",\n \"sourceIds\": [\n \"2c91808869a0c9980169a207258513fb\"\n ]\n }\n ]\n },\n {\n \"op\": \"replace\",\n \"path\": \"/emailNotificationOption\",\n \"value\": {\n \"notifyManagers\": true,\n \"notifyAllAdmins\": false,\n \"notifySpecificUsers\": false,\n \"emailAddressList\": []\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -89712,12 +93917,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"technicalName\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"identityCount\": \"\",\n \"emailNotificationOption\": {\n \"notifyManagers\": \"\",\n \"notifyAllAdmins\": \"\",\n \"notifySpecificUsers\": \"\",\n \"emailAddressList\": [\n \"\",\n \"\"\n ]\n },\n \"accountActions\": [\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"accessProfileIds\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"Lifecycle Name\",\n \"technicalName\": \"lifecycleTechnicalName\",\n \"description\": \"LifecycleDescription\",\n \"created\": \"2015-05-28T14:07:17.000Z\",\n \"modified\": \"2015-05-28T14:07:17.000Z\",\n \"enabled\": true,\n \"identityCount\": 12,\n \"emailNotificationOption\": {\n \"notifyManagers\": true,\n \"notifyAllAdmins\": true,\n \"notifySpecificUsers\": true,\n \"emailAddressList\": [\n \"test@test.com\",\n \"test2@test.com\"\n ]\n },\n \"accountActions\": [\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n },\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n }\n ],\n \"accessProfileIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a54cb5aa-2287-4ee9-af0c-d0f523ee375b", + "id": "b766adcc-4bc3-461f-a15c-c565f1b25c8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89754,7 +93959,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/accessProfileIds\",\n \"value\": [\n \"2c918087742bab150174407a80f3125e\",\n \"2c918087742bab150174407a80f3124f\"\n ]\n },\n {\n \"op\": \"replace\",\n \"path\": \"/accountActions\",\n \"value\": [\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"2c9180846a2f82fb016a481c1b1560c5\",\n \"2c9180846a2f82fb016a481c1b1560cc\"\n ]\n },\n {\n \"action\": \"DISABLE\",\n \"sourceIds\": [\n \"2c91808869a0c9980169a207258513fb\"\n ]\n }\n ]\n },\n {\n \"op\": \"replace\",\n \"path\": \"/emailNotificationOption\",\n \"value\": {\n \"notifyManagers\": true,\n \"notifyAllAdmins\": false,\n \"notifySpecificUsers\": false,\n \"emailAddressList\": []\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -89771,12 +93976,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b19c8084-ac91-4761-ab90-803767c175d1", + "id": "372e2161-ccb9-4e69-8bf5-c7d4462c94ec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89813,7 +94018,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/accessProfileIds\",\n \"value\": [\n \"2c918087742bab150174407a80f3125e\",\n \"2c918087742bab150174407a80f3124f\"\n ]\n },\n {\n \"op\": \"replace\",\n \"path\": \"/accountActions\",\n \"value\": [\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"2c9180846a2f82fb016a481c1b1560c5\",\n \"2c9180846a2f82fb016a481c1b1560cc\"\n ]\n },\n {\n \"action\": \"DISABLE\",\n \"sourceIds\": [\n \"2c91808869a0c9980169a207258513fb\"\n ]\n }\n ]\n },\n {\n \"op\": \"replace\",\n \"path\": \"/emailNotificationOption\",\n \"value\": {\n \"notifyManagers\": true,\n \"notifyAllAdmins\": false,\n \"notifySpecificUsers\": false,\n \"emailAddressList\": []\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -89830,12 +94035,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "38caf6c5-252f-40b2-b39c-6a82c7409533", + "id": "f670f426-f912-4191-848c-ffdbd3fc44e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89872,7 +94077,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/accessProfileIds\",\n \"value\": [\n \"2c918087742bab150174407a80f3125e\",\n \"2c918087742bab150174407a80f3124f\"\n ]\n },\n {\n \"op\": \"replace\",\n \"path\": \"/accountActions\",\n \"value\": [\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"2c9180846a2f82fb016a481c1b1560c5\",\n \"2c9180846a2f82fb016a481c1b1560cc\"\n ]\n },\n {\n \"action\": \"DISABLE\",\n \"sourceIds\": [\n \"2c91808869a0c9980169a207258513fb\"\n ]\n }\n ]\n },\n {\n \"op\": \"replace\",\n \"path\": \"/emailNotificationOption\",\n \"value\": {\n \"notifyManagers\": true,\n \"notifyAllAdmins\": false,\n \"notifySpecificUsers\": false,\n \"emailAddressList\": []\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -89889,12 +94094,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1f08dc54-275c-429e-b758-3fad85950b88", + "id": "899d442b-0668-46fd-8afb-69f1f2962dbb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89931,7 +94136,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/accessProfileIds\",\n \"value\": [\n \"2c918087742bab150174407a80f3125e\",\n \"2c918087742bab150174407a80f3124f\"\n ]\n },\n {\n \"op\": \"replace\",\n \"path\": \"/accountActions\",\n \"value\": [\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"2c9180846a2f82fb016a481c1b1560c5\",\n \"2c9180846a2f82fb016a481c1b1560cc\"\n ]\n },\n {\n \"action\": \"DISABLE\",\n \"sourceIds\": [\n \"2c91808869a0c9980169a207258513fb\"\n ]\n }\n ]\n },\n {\n \"op\": \"replace\",\n \"path\": \"/emailNotificationOption\",\n \"value\": {\n \"notifyManagers\": true,\n \"notifyAllAdmins\": false,\n \"notifySpecificUsers\": false,\n \"emailAddressList\": []\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -89948,12 +94153,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e9bea39-b725-4305-b34c-c2ac4f289b42", + "id": "8deca563-c167-40da-a20f-e5d163b6aebc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89990,7 +94195,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Updated description!\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/accessProfileIds\",\n \"value\": [\n \"2c918087742bab150174407a80f3125e\",\n \"2c918087742bab150174407a80f3124f\"\n ]\n },\n {\n \"op\": \"replace\",\n \"path\": \"/accountActions\",\n \"value\": [\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"2c9180846a2f82fb016a481c1b1560c5\",\n \"2c9180846a2f82fb016a481c1b1560cc\"\n ]\n },\n {\n \"action\": \"DISABLE\",\n \"sourceIds\": [\n \"2c91808869a0c9980169a207258513fb\"\n ]\n }\n ]\n },\n {\n \"op\": \"replace\",\n \"path\": \"/emailNotificationOption\",\n \"value\": {\n \"notifyManagers\": true,\n \"notifyAllAdmins\": false,\n \"notifySpecificUsers\": false,\n \"emailAddressList\": []\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -90007,7 +94212,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -90024,7 +94229,7 @@ "description": "Read and write operations for managing client data and statuses", "item": [ { - "id": "f7b39a87-701a-45e2-baaf-c90a518dc2bd", + "id": "bf777a0e-a355-4f4e-b5eb-f476e53f605d", "name": "Specified Managed Client Status.", "request": { "name": "Specified Managed Client Status.", @@ -90049,13 +94254,13 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "VA" } ], "variable": [ { "type": "any", - "value": "", + "value": "aClientId", "key": "id", "disabled": true, "description": { @@ -90076,7 +94281,7 @@ }, "response": [ { - "id": "ea6a6ef8-b962-4c2c-aa35-59792252ee1f", + "id": "81c76bdc-d86f-43dc-93a8-ebc3d2f7ec61", "name": "Responds with Managed Client Status having the given ID and Type.", "originalRequest": { "url": { @@ -90096,7 +94301,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "VA" } ], "variable": [] @@ -90126,12 +94331,12 @@ "value": "application/json" } ], - "body": "{\n \"body\": {},\n \"status\": \"UNDEFINED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\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": "671e6fa8-83ac-4526-8c83-a868ba5b7f34", + "id": "dc213fc7-957c-4aad-be75-8b28ef3fcb8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90151,7 +94356,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "VA" } ], "variable": [] @@ -90181,12 +94386,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "49943ff4-980b-48e5-98c7-f76b03b434bc", + "id": "5e9cb8ec-b8f7-4a48-92bd-2c1fc3166e00", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90206,7 +94411,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "VA" } ], "variable": [] @@ -90236,12 +94441,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "496562ae-7d6c-487d-a747-34d7503c9e6c", + "id": "c269b5d3-de8b-4b7d-a6d8-6f84c452cc47", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90261,7 +94466,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "VA" } ], "variable": [] @@ -90291,12 +94496,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "81b8421f-73f6-4d30-b9a9-d359354acda7", + "id": "5b41e793-8f9c-437c-8ee2-8e1147026cc5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -90316,7 +94521,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "VA" } ], "variable": [] @@ -90346,12 +94551,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1947b869-05d0-48a3-9980-88d306893f29", + "id": "db122f06-1aa5-475a-b817-17d41abcd8f9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90371,7 +94576,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "VA" } ], "variable": [] @@ -90401,12 +94606,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "804438de-dce6-4a4c-b7e5-f051f47edafb", + "id": "62551153-75e1-4b95-b339-5e2b416d4714", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90426,7 +94631,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "VA" } ], "variable": [] @@ -90456,7 +94661,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -90467,7 +94672,7 @@ } }, { - "id": "a5dcbfd8-430e-4728-bdbc-aa866422aec4", + "id": "7616b94b-e701-46a3-9ca2-8b8d90326d2b", "name": "Handle status request from client", "request": { "name": "Handle status request from client", @@ -90488,7 +94693,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "aClientId", "key": "id", "disabled": true, "description": { @@ -90511,7 +94716,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"UNDEFINED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\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", @@ -90522,7 +94727,7 @@ }, "response": [ { - "id": "272ec572-1b75-4e8f-be7f-e7d6bb60a154", + "id": "909e7a4f-2617-4957-b6de-06e8a25451cd", "name": "Responds with the updated Managed Client Status.", "originalRequest": { "url": { @@ -90558,7 +94763,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"UNDEFINED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\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", @@ -90575,12 +94780,12 @@ "value": "application/json" } ], - "body": "{\n \"body\": {},\n \"status\": \"CONFIGURING\",\n \"type\": \"CCG\",\n \"timestamp\": \"\"\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": "95a5d150-177e-4f67-a4a2-3fcb2bc0b3c5", + "id": "3fbdb847-4ab8-40b4-b390-52308884621d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90616,7 +94821,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"UNDEFINED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\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", @@ -90633,12 +94838,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "66238e1f-3d5a-42c1-8e43-4e08395af75e", + "id": "e1f7c432-fef9-4b64-9234-ed3f54b65def", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90674,7 +94879,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"UNDEFINED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\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", @@ -90691,12 +94896,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a625e146-7c0a-4c05-ae4f-fd6f77afd50f", + "id": "1487170a-576a-4622-80c6-1a59429e0faf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90732,7 +94937,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"UNDEFINED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\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", @@ -90749,12 +94954,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bcbf0a2d-a1d9-4e95-b2dc-3dabac86a7b8", + "id": "cddc9e60-5ab5-4ffb-89ad-e0c59389ef7c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -90790,7 +94995,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"UNDEFINED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\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", @@ -90807,12 +95012,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d56ecc9a-e030-4177-9c8d-04c86c0aeb2c", + "id": "0a066e7b-7733-4f6b-a33a-10bbaa81a153", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90848,7 +95053,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"UNDEFINED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\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", @@ -90865,12 +95070,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56d8a2e1-83e9-41b1-9838-e79ddf51472d", + "id": "5f14691d-136f-4519-9030-e6825c14ccba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90906,7 +95111,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"UNDEFINED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\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", @@ -90923,7 +95128,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -90940,7 +95145,7 @@ "description": "Operations for accessing and managing client Clusters, including Log Configuration", "item": [ { - "id": "ac998ce9-221b-4361-9307-256882fcf0a1", + "id": "a44bd9c8-1865-436a-b3d1-ce83835f8615", "name": "Get a specified ManagedCluster.", "request": { "name": "Get a specified ManagedCluster.", @@ -90960,7 +95165,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "aClusterId", "key": "id", "disabled": true, "description": { @@ -90981,7 +95186,7 @@ }, "response": [ { - "id": "6cc9d842-eef7-4699-8a3f-c398e6d1183a", + "id": "dfa02bbc-6af8-487f-ad7d-64e8fae8d48f", "name": "Responds with ManagedCluster having the given ID.", "originalRequest": { "url": { @@ -91020,12 +95225,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"clientType\": null,\n \"ccgVersion\": \"\",\n \"name\": \"\",\n \"pod\": \"\",\n \"org\": \"\",\n \"type\": \"idn\",\n \"configuration\": {\n \"ex_a51\": \"\"\n },\n \"keyPair\": {\n \"publicKey\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKeyCertificate\": \"\"\n },\n \"attributes\": {\n \"queue\": {\n \"name\": \"\",\n \"region\": \"\"\n },\n \"keystore\": \"\"\n },\n \"description\": \"\",\n \"redis\": {\n \"redisHost\": \"\",\n \"redisPort\": \"\"\n },\n \"pinnedConfig\": false,\n \"logConfiguration\": {\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"estb\": \"INFO\"\n }\n },\n \"operational\": false,\n \"status\": \"\",\n \"publicKeyCertificate\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKey\": \"\",\n \"alertKey\": \"\",\n \"clientIds\": [\n \"\",\n \"\"\n ],\n \"serviceCount\": 0,\n \"ccId\": \"0\"\n}", + "body": "{\n \"id\": \"aClusterId\",\n \"clientType\": \"CCG\",\n \"ccgVersion\": \"v01\",\n \"name\": \"Managed Cluster Name\",\n \"pod\": \"megapod-useast1\",\n \"org\": \"denali\",\n \"type\": \"idn\",\n \"configuration\": {\n \"clusterExternalId\": \"externalId\",\n \"ccgVersion\": \"77.0.0\"\n },\n \"keyPair\": {\n \"publicKey\": \"-----BEGIN PUBLIC KEY-----******-----END PUBLIC KEY-----\",\n \"publicKeyThumbprint\": \"6CMlaJIV44-xJxcB3CJBjDUUn54\",\n \"publicKeyCertificate\": \"-----BEGIN CERTIFICATE-----****-----END CERTIFICATE-----\"\n },\n \"attributes\": {\n \"queue\": {\n \"name\": \"megapod-useast1-denali-lwt-cluster-1533\",\n \"region\": \"us-east-1\"\n },\n \"keystore\": \"/u3+7QAAAAIAAAABAAAAAQAvL3Byb3h5LWNsdXN0ZXIvMmM5MTgwODc3Yjg3MW\"\n },\n \"description\": \"A short description of the managed cluster.\",\n \"redis\": {\n \"redisHost\": \"megapod-useast1-shared-redis.cloud.sailpoint.com\",\n \"redisPort\": 6379\n },\n \"pinnedConfig\": false,\n \"logConfiguration\": {\n \"durationMinutes\": 120,\n \"rootLevel\": \"TRACE\",\n \"clientId\": \"aClientId\",\n \"expiration\": \"2020-12-15T19:13:36.079Z\",\n \"logLevels\": {\n \"sailpoint.connector.ADLDAPConnector\": \"TRACE\"\n }\n },\n \"operational\": false,\n \"status\": \"NORMAL\",\n \"publicKeyCertificate\": \"-----BEGIN CERTIFICATE-----TCCAb2gAwIBAgIBADANBgkqhkiG9w0BAQsFADAuMQ0wCwYDVQQD-----END CERTIFICATE-----\",\n \"publicKeyThumbprint\": \"obc6pLiulGbtZ\",\n \"publicKey\": \"-----BEGIN PUBLIC KEY-----jANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3WgnsxP52MDgBTfHR+5n4-----END PUBLIC KEY-----\",\n \"alertKey\": \"LIMITED_RESOURCES\",\n \"clientIds\": [\n \"1244\",\n \"1245\"\n ],\n \"serviceCount\": 6,\n \"ccId\": \"1533\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d8e6ce0-378c-474c-9d91-9356fa343aed", + "id": "d40b1ade-3635-4df0-8ca2-70d030700333", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91064,12 +95269,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4cc47b37-b791-4c7e-a882-8112d305fa66", + "id": "1c8eb6be-ff75-4a87-8aa4-6ee9f250af2a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91108,12 +95313,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04c1a8cf-42dc-4805-9ecb-020cde4da18f", + "id": "f7c20c43-8f5a-46e2-befc-8b9408c16ac9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91152,12 +95357,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "46ba4ce8-4c15-4d89-b78b-afed696b7d3d", + "id": "f43ffdfc-b011-4724-b28e-f2641df1e5f6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91196,12 +95401,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6058b8d5-4b64-4a8a-812b-f3008149932e", + "id": "74ccd075-708c-4630-82fa-1b81518a3413", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91240,12 +95445,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a2b3831a-ec88-41a7-b80e-b329337d1efc", + "id": "cc820232-cb67-4690-b0ba-5671f33c42ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91284,7 +95489,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -91295,7 +95500,7 @@ } }, { - "id": "f0768a1a-896e-4809-8e4e-7d4fe8579d43", + "id": "05cd3dfc-dd51-456f-bc64-63b1addac415", "name": "Get managed cluster's log configuration", "request": { "name": "Get managed cluster's log configuration", @@ -91316,7 +95521,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "aClusterId", "key": "id", "disabled": true, "description": { @@ -91337,7 +95542,7 @@ }, "response": [ { - "id": "4572ca7c-c485-4b52-ae0c-e83510c7dd97", + "id": "1e58334b-139c-4c94-8c85-238dac5681a7", "name": "Log configuration of ManagedCluster matching given cluster ID", "originalRequest": { "url": { @@ -91377,12 +95582,12 @@ "value": "application/json" } ], - "body": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"laboris_5\": \"INFO\",\n \"tempor_3\": \"INFO\",\n \"Excepteur_e6\": \"INFO\"\n }\n}", + "body": "{\n \"durationMinutes\": 120,\n \"rootLevel\": \"TRACE\",\n \"clientId\": \"aClientId\",\n \"expiration\": \"2020-12-15T19:13:36.079Z\",\n \"logLevels\": {\n \"sailpoint.connector.ADLDAPConnector\": \"TRACE\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1e779e14-dc60-483b-9f5d-ca2ec81c948a", + "id": "32e87c59-3b18-4fae-bb88-a21922429d67", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91422,12 +95627,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "178ac77e-f99d-4ac0-abff-d8c3d224667a", + "id": "f8e6c36e-9198-4206-88e0-2061c89974a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91467,12 +95672,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "781017fe-109f-42d9-84f4-e6bef33d02dc", + "id": "5d7372a7-45eb-48f9-8c4b-55e5f705b22f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91512,12 +95717,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "eeb41d2b-7d72-4c4e-ac7a-99af5e4ec2d7", + "id": "22a9d445-a2f0-412e-b80e-2d3050305477", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91557,12 +95762,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "108641eb-b37f-42e9-ad8b-0cf14db0ce48", + "id": "2b8cf139-ddd2-413f-b12b-f7e64c02a9db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91602,12 +95807,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b64e623-0fce-404a-be31-1546187310e5", + "id": "4eccbd3a-0f0f-4031-a89c-cbe20eabbce5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91647,7 +95852,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -91658,7 +95863,7 @@ } }, { - "id": "103312d4-1cf5-4281-a3e1-4cb1860a1c29", + "id": "4c5e3911-6b90-49c6-a508-50bddab7e8b8", "name": "Update managed cluster's log configuration", "request": { "name": "Update managed cluster's log configuration", @@ -91679,7 +95884,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "aClusterId", "key": "id", "disabled": true, "description": { @@ -91702,7 +95907,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"laboris_5\": \"INFO\",\n \"tempor_3\": \"INFO\",\n \"Excepteur_e6\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": 120,\n \"rootLevel\": \"TRACE\",\n \"clientId\": \"aClientId\",\n \"expiration\": \"2020-12-15T19:13:36.079Z\",\n \"logLevels\": {\n \"sailpoint.connector.ADLDAPConnector\": \"TRACE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -91713,7 +95918,7 @@ }, "response": [ { - "id": "f544f38e-da73-428b-b62a-ae764224a122", + "id": "55bff6c9-7211-48e0-a67f-7e7383351507", "name": "Responds with updated ClientLogConfiguration for given ManagedCluster", "originalRequest": { "url": { @@ -91749,7 +95954,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"laboris_5\": \"INFO\",\n \"tempor_3\": \"INFO\",\n \"Excepteur_e6\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": 120,\n \"rootLevel\": \"TRACE\",\n \"clientId\": \"aClientId\",\n \"expiration\": \"2020-12-15T19:13:36.079Z\",\n \"logLevels\": {\n \"sailpoint.connector.ADLDAPConnector\": \"TRACE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -91766,12 +95971,12 @@ "value": "application/json" } ], - "body": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"laboris_5\": \"INFO\",\n \"tempor_3\": \"INFO\",\n \"Excepteur_e6\": \"INFO\"\n }\n}", + "body": "{\n \"durationMinutes\": 120,\n \"rootLevel\": \"TRACE\",\n \"clientId\": \"aClientId\",\n \"expiration\": \"2020-12-15T19:13:36.079Z\",\n \"logLevels\": {\n \"sailpoint.connector.ADLDAPConnector\": \"TRACE\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0d4bef00-c19b-4b50-9e77-bd6db54c79a5", + "id": "07d03867-3c8e-450a-a898-93a357efde8a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91807,7 +96012,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"laboris_5\": \"INFO\",\n \"tempor_3\": \"INFO\",\n \"Excepteur_e6\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": 120,\n \"rootLevel\": \"TRACE\",\n \"clientId\": \"aClientId\",\n \"expiration\": \"2020-12-15T19:13:36.079Z\",\n \"logLevels\": {\n \"sailpoint.connector.ADLDAPConnector\": \"TRACE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -91824,12 +96029,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6cc70703-4d2e-4e0b-8c13-5297d44b399b", + "id": "0c42e5e6-7fd4-499b-aacc-3f7b0401951e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91865,7 +96070,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"laboris_5\": \"INFO\",\n \"tempor_3\": \"INFO\",\n \"Excepteur_e6\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": 120,\n \"rootLevel\": \"TRACE\",\n \"clientId\": \"aClientId\",\n \"expiration\": \"2020-12-15T19:13:36.079Z\",\n \"logLevels\": {\n \"sailpoint.connector.ADLDAPConnector\": \"TRACE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -91882,12 +96087,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "909b10a9-ae5d-4d0b-b267-a27ae058a98c", + "id": "7f5c307d-84b2-4ffd-bb79-17001c24fe25", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91923,7 +96128,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"laboris_5\": \"INFO\",\n \"tempor_3\": \"INFO\",\n \"Excepteur_e6\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": 120,\n \"rootLevel\": \"TRACE\",\n \"clientId\": \"aClientId\",\n \"expiration\": \"2020-12-15T19:13:36.079Z\",\n \"logLevels\": {\n \"sailpoint.connector.ADLDAPConnector\": \"TRACE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -91940,12 +96145,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3cdaccd8-50ad-400d-a44c-8e0d93770e33", + "id": "95d54fc2-e1de-4e14-beb3-4d53907dfe2a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91981,7 +96186,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"laboris_5\": \"INFO\",\n \"tempor_3\": \"INFO\",\n \"Excepteur_e6\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": 120,\n \"rootLevel\": \"TRACE\",\n \"clientId\": \"aClientId\",\n \"expiration\": \"2020-12-15T19:13:36.079Z\",\n \"logLevels\": {\n \"sailpoint.connector.ADLDAPConnector\": \"TRACE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -91998,12 +96203,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "32db5b9a-285f-48d9-a68d-fdcc95c854c2", + "id": "17344a38-5641-4e25-b609-76431786bfef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92039,7 +96244,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"laboris_5\": \"INFO\",\n \"tempor_3\": \"INFO\",\n \"Excepteur_e6\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": 120,\n \"rootLevel\": \"TRACE\",\n \"clientId\": \"aClientId\",\n \"expiration\": \"2020-12-15T19:13:36.079Z\",\n \"logLevels\": {\n \"sailpoint.connector.ADLDAPConnector\": \"TRACE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92056,12 +96261,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "285821e0-e677-42ed-beb4-56f8d062c39c", + "id": "07357515-7841-4900-a8cf-8f60167b52c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92097,7 +96302,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"laboris_5\": \"INFO\",\n \"tempor_3\": \"INFO\",\n \"Excepteur_e6\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": 120,\n \"rootLevel\": \"TRACE\",\n \"clientId\": \"aClientId\",\n \"expiration\": \"2020-12-15T19:13:36.079Z\",\n \"logLevels\": {\n \"sailpoint.connector.ADLDAPConnector\": \"TRACE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92114,7 +96319,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -92125,7 +96330,7 @@ } }, { - "id": "35d6207b-ab78-4450-9eb4-c15e963c8d33", + "id": "7af2a8b1-f30c-4fe6-8540-27180865b098", "name": "Retrieve all Managed Clusters.", "request": { "name": "Retrieve all Managed Clusters.", @@ -92166,7 +96371,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -92175,7 +96380,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "operational eq operation" } ], "variable": [] @@ -92191,7 +96396,7 @@ }, "response": [ { - "id": "b42c5c73-021b-45e5-a277-870bec33b6af", + "id": "7770cb98-5b99-4af7-a987-3d0e15ee3389", "name": "Responds with a list of ManagedCluster.", "originalRequest": { "url": { @@ -92227,7 +96432,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -92236,7 +96441,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "operational eq operation" } ], "variable": [] @@ -92266,12 +96471,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"clientType\": \"INTERNAL\",\n \"ccgVersion\": \"\",\n \"name\": \"\",\n \"pod\": \"\",\n \"org\": \"\",\n \"type\": \"idn\",\n \"configuration\": {\n \"sunt31\": \"\",\n \"veniam_7c\": \"\"\n },\n \"keyPair\": {\n \"publicKey\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKeyCertificate\": \"\"\n },\n \"attributes\": {\n \"queue\": {\n \"name\": \"\",\n \"region\": \"\"\n },\n \"keystore\": \"\"\n },\n \"description\": \"\",\n \"redis\": {\n \"redisHost\": \"\",\n \"redisPort\": \"\"\n },\n \"pinnedConfig\": false,\n \"logConfiguration\": {\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"enim7\": \"INFO\"\n }\n },\n \"operational\": false,\n \"status\": \"\",\n \"publicKeyCertificate\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKey\": \"\",\n \"alertKey\": \"\",\n \"clientIds\": [\n \"\",\n \"\"\n ],\n \"serviceCount\": 0,\n \"ccId\": \"0\"\n },\n {\n \"id\": \"\",\n \"clientType\": \"IIQ_HARVESTER\",\n \"ccgVersion\": \"\",\n \"name\": \"\",\n \"pod\": \"\",\n \"org\": \"\",\n \"type\": \"iai\",\n \"configuration\": {\n \"magnad\": \"\"\n },\n \"keyPair\": {\n \"publicKey\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKeyCertificate\": \"\"\n },\n \"attributes\": {\n \"queue\": {\n \"name\": \"\",\n \"region\": \"\"\n },\n \"keystore\": \"\"\n },\n \"description\": \"\",\n \"redis\": {\n \"redisHost\": \"\",\n \"redisPort\": \"\"\n },\n \"pinnedConfig\": false,\n \"logConfiguration\": {\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"enim_488\": \"INFO\"\n }\n },\n \"operational\": false,\n \"status\": \"\",\n \"publicKeyCertificate\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKey\": \"\",\n \"alertKey\": \"\",\n \"clientIds\": [\n \"\",\n \"\"\n ],\n \"serviceCount\": 0,\n \"ccId\": \"0\"\n }\n]", + "body": "[\n {\n \"id\": \"aClusterId\",\n \"clientType\": \"CCG\",\n \"ccgVersion\": \"v01\",\n \"name\": \"Managed Cluster Name\",\n \"pod\": \"megapod-useast1\",\n \"org\": \"denali\",\n \"type\": \"idn\",\n \"configuration\": {\n \"clusterExternalId\": \"externalId\",\n \"ccgVersion\": \"77.0.0\"\n },\n \"keyPair\": {\n \"publicKey\": \"-----BEGIN PUBLIC KEY-----******-----END PUBLIC KEY-----\",\n \"publicKeyThumbprint\": \"6CMlaJIV44-xJxcB3CJBjDUUn54\",\n \"publicKeyCertificate\": \"-----BEGIN CERTIFICATE-----****-----END CERTIFICATE-----\"\n },\n \"attributes\": {\n \"queue\": {\n \"name\": \"megapod-useast1-denali-lwt-cluster-1533\",\n \"region\": \"us-east-1\"\n },\n \"keystore\": \"/u3+7QAAAAIAAAABAAAAAQAvL3Byb3h5LWNsdXN0ZXIvMmM5MTgwODc3Yjg3MW\"\n },\n \"description\": \"A short description of the managed cluster.\",\n \"redis\": {\n \"redisHost\": \"megapod-useast1-shared-redis.cloud.sailpoint.com\",\n \"redisPort\": 6379\n },\n \"pinnedConfig\": false,\n \"logConfiguration\": {\n \"durationMinutes\": 120,\n \"rootLevel\": \"TRACE\",\n \"clientId\": \"aClientId\",\n \"expiration\": \"2020-12-15T19:13:36.079Z\",\n \"logLevels\": {\n \"sailpoint.connector.ADLDAPConnector\": \"TRACE\"\n }\n },\n \"operational\": false,\n \"status\": \"NORMAL\",\n \"publicKeyCertificate\": \"-----BEGIN CERTIFICATE-----TCCAb2gAwIBAgIBADANBgkqhkiG9w0BAQsFADAuMQ0wCwYDVQQD-----END CERTIFICATE-----\",\n \"publicKeyThumbprint\": \"obc6pLiulGbtZ\",\n \"publicKey\": \"-----BEGIN PUBLIC KEY-----jANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3WgnsxP52MDgBTfHR+5n4-----END PUBLIC KEY-----\",\n \"alertKey\": \"LIMITED_RESOURCES\",\n \"clientIds\": [\n \"1244\",\n \"1245\"\n ],\n \"serviceCount\": 6,\n \"ccId\": \"1533\"\n },\n {\n \"id\": \"aClusterId\",\n \"clientType\": \"CCG\",\n \"ccgVersion\": \"v01\",\n \"name\": \"Managed Cluster Name\",\n \"pod\": \"megapod-useast1\",\n \"org\": \"denali\",\n \"type\": \"idn\",\n \"configuration\": {\n \"clusterExternalId\": \"externalId\",\n \"ccgVersion\": \"77.0.0\"\n },\n \"keyPair\": {\n \"publicKey\": \"-----BEGIN PUBLIC KEY-----******-----END PUBLIC KEY-----\",\n \"publicKeyThumbprint\": \"6CMlaJIV44-xJxcB3CJBjDUUn54\",\n \"publicKeyCertificate\": \"-----BEGIN CERTIFICATE-----****-----END CERTIFICATE-----\"\n },\n \"attributes\": {\n \"queue\": {\n \"name\": \"megapod-useast1-denali-lwt-cluster-1533\",\n \"region\": \"us-east-1\"\n },\n \"keystore\": \"/u3+7QAAAAIAAAABAAAAAQAvL3Byb3h5LWNsdXN0ZXIvMmM5MTgwODc3Yjg3MW\"\n },\n \"description\": \"A short description of the managed cluster.\",\n \"redis\": {\n \"redisHost\": \"megapod-useast1-shared-redis.cloud.sailpoint.com\",\n \"redisPort\": 6379\n },\n \"pinnedConfig\": false,\n \"logConfiguration\": {\n \"durationMinutes\": 120,\n \"rootLevel\": \"TRACE\",\n \"clientId\": \"aClientId\",\n \"expiration\": \"2020-12-15T19:13:36.079Z\",\n \"logLevels\": {\n \"sailpoint.connector.ADLDAPConnector\": \"TRACE\"\n }\n },\n \"operational\": false,\n \"status\": \"NORMAL\",\n \"publicKeyCertificate\": \"-----BEGIN CERTIFICATE-----TCCAb2gAwIBAgIBADANBgkqhkiG9w0BAQsFADAuMQ0wCwYDVQQD-----END CERTIFICATE-----\",\n \"publicKeyThumbprint\": \"obc6pLiulGbtZ\",\n \"publicKey\": \"-----BEGIN PUBLIC KEY-----jANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3WgnsxP52MDgBTfHR+5n4-----END PUBLIC KEY-----\",\n \"alertKey\": \"LIMITED_RESOURCES\",\n \"clientIds\": [\n \"1244\",\n \"1245\"\n ],\n \"serviceCount\": 6,\n \"ccId\": \"1533\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c35b16ee-d536-44ef-9a25-198042327c95", + "id": "47ebe9b5-604e-4938-a0ee-cce287c65ec2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92307,7 +96512,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -92316,7 +96521,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "operational eq operation" } ], "variable": [] @@ -92346,12 +96551,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "81243ac2-74ba-4675-b009-cf217d02f854", + "id": "24259d39-bf27-4e47-b225-c6e3fe431d47", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92387,7 +96592,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -92396,7 +96601,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "operational eq operation" } ], "variable": [] @@ -92426,12 +96631,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a0a30cd9-99df-4760-9256-4dcdd6832b49", + "id": "47fe8535-2135-40db-9c1d-23feed809f20", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92467,7 +96672,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -92476,7 +96681,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "operational eq operation" } ], "variable": [] @@ -92506,12 +96711,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "98083975-4cf9-43bd-84e3-12b9df28957d", + "id": "0b11ca38-ce23-429f-8bb6-bbe1deb170fb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92547,7 +96752,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -92556,7 +96761,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "operational eq operation" } ], "variable": [] @@ -92586,12 +96791,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f46aac1f-c6ef-40d6-8dd4-99fcf2ab993c", + "id": "3739ef6a-6842-44f2-a2fe-f399c84813c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92627,7 +96832,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -92636,7 +96841,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "operational eq operation" } ], "variable": [] @@ -92666,7 +96871,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -92683,7 +96888,7 @@ "description": "Configure and test multifactor authentication (MFA) methods", "item": [ { - "id": "a1363480-ab67-424e-9a6d-146562835146", + "id": "54c46b6f-2ce6-4fec-9b0f-5be202845e29", "name": "Configuration of Okta MFA method", "request": { "name": "Configuration of Okta MFA method", @@ -92714,7 +96919,7 @@ }, "response": [ { - "id": "6d680010-713e-43fb-8799-8038499b2a63", + "id": "c867d86c-68e7-48d1-a91e-5230d92d4af7", "name": "The configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -92754,12 +96959,12 @@ "value": "application/json" } ], - "body": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\"\n}", + "body": "{\n \"mfaMethod\": \"okta-verify\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"d******Y\",\n \"identityAttribute\": \"email\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "512339ff-2790-44a6-8162-6dbe58ae86ba", + "id": "40f21d00-7522-46be-ad13-d18b883c0ea0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92799,12 +97004,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "51294e7c-50c0-4ca7-b999-662c763712a0", + "id": "b5dedf8b-8f91-4da3-b19f-8c7f32788584", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92844,12 +97049,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f4a8cbd-9a0a-4350-80ba-e756d8401d38", + "id": "3f60ea8e-89bb-49e5-89ac-486fea3a66d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92889,12 +97094,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b8ceea82-b171-4dab-9d55-04e3143e3f61", + "id": "f561a26f-bc15-48a8-8d3c-b25beaaf6d79", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92934,12 +97139,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c3d0b7aa-cfaa-427d-9a2a-ea3de1e9bbb5", + "id": "f6d437d3-7b54-42f8-ade1-d8aa7e2ab860", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92979,7 +97184,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -92990,7 +97195,7 @@ } }, { - "id": "620a94f1-cff8-4ecc-baea-d551df554c3e", + "id": "a072dc1f-2ec4-4026-8008-95511e279919", "name": "Set Okta MFA configuration", "request": { "name": "Set Okta MFA configuration", @@ -93023,7 +97228,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\"\n}", + "raw": "{\n \"mfaMethod\": \"okta-verify\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"dk778Y3QlA5UqocYpdU3rEkzrK2D497y\",\n \"identityAttribute\": \"email\"\n}", "options": { "raw": { "headerFamily": "json", @@ -93034,7 +97239,7 @@ }, "response": [ { - "id": "f9326b87-5dc4-43b6-98f4-746270f33cf1", + "id": "dfd32ca2-58d2-476b-8231-4ece885b8caa", "name": "MFA configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -93070,7 +97275,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\"\n}", + "raw": "{\n \"mfaMethod\": \"okta-verify\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"dk778Y3QlA5UqocYpdU3rEkzrK2D497y\",\n \"identityAttribute\": \"email\"\n}", "options": { "raw": { "headerFamily": "json", @@ -93087,12 +97292,12 @@ "value": "application/json" } ], - "body": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\"\n}", + "body": "{\n \"mfaMethod\": \"okta-verify\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"d******Y\",\n \"identityAttribute\": \"email\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "610f1e2c-06f5-44a3-b7b0-2a52a6ee5973", + "id": "03f2976a-a3c1-4259-82ec-a9679fdd95bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93128,7 +97333,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\"\n}", + "raw": "{\n \"mfaMethod\": \"okta-verify\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"dk778Y3QlA5UqocYpdU3rEkzrK2D497y\",\n \"identityAttribute\": \"email\"\n}", "options": { "raw": { "headerFamily": "json", @@ -93145,12 +97350,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7ee7c20f-be1b-44e8-a950-9c2e71f05ebd", + "id": "61bd113d-593e-4b89-8ee4-50a0a2518bd5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93186,7 +97391,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\"\n}", + "raw": "{\n \"mfaMethod\": \"okta-verify\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"dk778Y3QlA5UqocYpdU3rEkzrK2D497y\",\n \"identityAttribute\": \"email\"\n}", "options": { "raw": { "headerFamily": "json", @@ -93203,12 +97408,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "783640bc-e498-4e27-b7ee-4f1a8582298a", + "id": "ece7109d-3b29-491e-9423-4244cc782641", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93244,7 +97449,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\"\n}", + "raw": "{\n \"mfaMethod\": \"okta-verify\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"dk778Y3QlA5UqocYpdU3rEkzrK2D497y\",\n \"identityAttribute\": \"email\"\n}", "options": { "raw": { "headerFamily": "json", @@ -93261,12 +97466,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "463eae2f-1b1b-4eb0-8c61-43259eec991c", + "id": "7a222fd4-7405-480e-b93f-5ba9171f34eb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93302,7 +97507,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\"\n}", + "raw": "{\n \"mfaMethod\": \"okta-verify\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"dk778Y3QlA5UqocYpdU3rEkzrK2D497y\",\n \"identityAttribute\": \"email\"\n}", "options": { "raw": { "headerFamily": "json", @@ -93319,12 +97524,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "81440b29-1d4d-42c6-9267-cc23e5114104", + "id": "4cd0d8b0-e329-463b-9ee3-538bdd0505be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93360,7 +97565,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\"\n}", + "raw": "{\n \"mfaMethod\": \"okta-verify\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"dk778Y3QlA5UqocYpdU3rEkzrK2D497y\",\n \"identityAttribute\": \"email\"\n}", "options": { "raw": { "headerFamily": "json", @@ -93377,7 +97582,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -93388,7 +97593,7 @@ } }, { - "id": "80eb1a04-51e2-4bd8-922b-0d11c6eacbba", + "id": "e685e9b8-5314-4d4e-b891-320ae53a76dd", "name": "Configuration of Duo MFA method", "request": { "name": "Configuration of Duo MFA method", @@ -93419,7 +97624,7 @@ }, "response": [ { - "id": "e9caf995-dc4d-4297-9295-f4f079b4e507", + "id": "c059fb7e-6dcf-4e5c-b5a1-50dc2283e9ca", "name": "The configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -93459,12 +97664,12 @@ "value": "application/json" } ], - "body": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\",\n \"configProperties\": {\n \"Excepteur_7\": \"labore minim pariatur in reprehenderit\",\n \"elit6\": true\n }\n}", + "body": "{\n \"mfaMethod\": \"duo-web\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"d******Y\",\n \"identityAttribute\": \"email\",\n \"configProperties\": {\n \"skey\": \"6******B\",\n \"ikey\": \"Q123WE45R6TY7890ZXCV\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d0948d4c-521f-40ef-96c8-369175a6dbda", + "id": "fa861d35-592f-4834-92ab-731541e843c7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93504,12 +97709,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6d4fedf3-aee4-4043-88f7-1bcfd8e87c47", + "id": "6bc04fca-1439-4f67-aee0-95bda17a8dcd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93549,12 +97754,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb65cf05-bbd3-40c4-86de-a1a721895308", + "id": "927bd946-108e-4c80-96bd-57aa0f858f5f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93594,12 +97799,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e79f2b22-c0ba-4f9c-a1a9-71997d21430d", + "id": "da97fb97-3d69-4cf3-9651-1463632f2f28", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93639,12 +97844,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d824cb49-00ee-4305-ac84-9e5962a7f275", + "id": "80784f56-a441-4f6e-920b-c88f67a36ded", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93684,7 +97889,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -93695,7 +97900,7 @@ } }, { - "id": "5596db98-0d5f-4e59-bbcc-22cf3dc70eb1", + "id": "583eaf02-9d67-45e0-a967-16eabbfbbe2d", "name": "Set Duo MFA configuration", "request": { "name": "Set Duo MFA configuration", @@ -93728,7 +97933,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\",\n \"configProperties\": {\n \"Excepteur_7\": \"labore minim pariatur in reprehenderit\",\n \"elit6\": true\n }\n}", + "raw": "{\n \"mfaMethod\": \"duo-web\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"qw123Y3QlA5UqocYpdU3rEkzrK2D497y\",\n \"identityAttribute\": \"email\",\n \"configProperties\": {\n \"skey\": \"12q3WERlcUHWJmiMqyCXI3uOF7EaDJTbdeOp6E2B\",\n \"ikey\": \"Q123WE45R6TY7890ZXCV\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -93739,7 +97944,7 @@ }, "response": [ { - "id": "a537b62f-87c5-4316-bd0b-838542703150", + "id": "5a6fa0e1-65b8-49b3-9a3d-7bb95fa6c25e", "name": "MFA configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -93775,7 +97980,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\",\n \"configProperties\": {\n \"Excepteur_7\": \"labore minim pariatur in reprehenderit\",\n \"elit6\": true\n }\n}", + "raw": "{\n \"mfaMethod\": \"duo-web\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"qw123Y3QlA5UqocYpdU3rEkzrK2D497y\",\n \"identityAttribute\": \"email\",\n \"configProperties\": {\n \"skey\": \"12q3WERlcUHWJmiMqyCXI3uOF7EaDJTbdeOp6E2B\",\n \"ikey\": \"Q123WE45R6TY7890ZXCV\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -93792,12 +97997,12 @@ "value": "application/json" } ], - "body": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\",\n \"configProperties\": {\n \"Excepteur_7\": \"labore minim pariatur in reprehenderit\",\n \"elit6\": true\n }\n}", + "body": "{\n \"mfaMethod\": \"duo-web\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"q******y\",\n \"identityAttribute\": \"email\",\n \"configProperties\": {\n \"skey\": \"1******B\",\n \"ikey\": \"Q123WE45R6TY7890ZXCV\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "450c1e77-8fb5-4445-8979-79ccb1167f39", + "id": "1903fecb-d807-4a48-9299-2f9939438cc9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93833,7 +98038,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\",\n \"configProperties\": {\n \"Excepteur_7\": \"labore minim pariatur in reprehenderit\",\n \"elit6\": true\n }\n}", + "raw": "{\n \"mfaMethod\": \"duo-web\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"qw123Y3QlA5UqocYpdU3rEkzrK2D497y\",\n \"identityAttribute\": \"email\",\n \"configProperties\": {\n \"skey\": \"12q3WERlcUHWJmiMqyCXI3uOF7EaDJTbdeOp6E2B\",\n \"ikey\": \"Q123WE45R6TY7890ZXCV\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -93850,12 +98055,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2e3e965a-d612-4930-90ba-f722efe1f0fb", + "id": "ebe0ba92-5476-4fb1-952d-49b3b9cc2708", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93891,7 +98096,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\",\n \"configProperties\": {\n \"Excepteur_7\": \"labore minim pariatur in reprehenderit\",\n \"elit6\": true\n }\n}", + "raw": "{\n \"mfaMethod\": \"duo-web\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"qw123Y3QlA5UqocYpdU3rEkzrK2D497y\",\n \"identityAttribute\": \"email\",\n \"configProperties\": {\n \"skey\": \"12q3WERlcUHWJmiMqyCXI3uOF7EaDJTbdeOp6E2B\",\n \"ikey\": \"Q123WE45R6TY7890ZXCV\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -93908,12 +98113,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "caa85afe-9d8d-4ff0-904c-cf619a5d02ee", + "id": "7964c95a-a7b8-45d7-b7f1-5f2c45ccf9c0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93949,7 +98154,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\",\n \"configProperties\": {\n \"Excepteur_7\": \"labore minim pariatur in reprehenderit\",\n \"elit6\": true\n }\n}", + "raw": "{\n \"mfaMethod\": \"duo-web\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"qw123Y3QlA5UqocYpdU3rEkzrK2D497y\",\n \"identityAttribute\": \"email\",\n \"configProperties\": {\n \"skey\": \"12q3WERlcUHWJmiMqyCXI3uOF7EaDJTbdeOp6E2B\",\n \"ikey\": \"Q123WE45R6TY7890ZXCV\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -93966,12 +98171,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9d9998cc-9dec-4301-aa5d-c6067fa48c80", + "id": "83b18641-a961-4296-a680-fcfff8a3a807", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94007,7 +98212,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\",\n \"configProperties\": {\n \"Excepteur_7\": \"labore minim pariatur in reprehenderit\",\n \"elit6\": true\n }\n}", + "raw": "{\n \"mfaMethod\": \"duo-web\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"qw123Y3QlA5UqocYpdU3rEkzrK2D497y\",\n \"identityAttribute\": \"email\",\n \"configProperties\": {\n \"skey\": \"12q3WERlcUHWJmiMqyCXI3uOF7EaDJTbdeOp6E2B\",\n \"ikey\": \"Q123WE45R6TY7890ZXCV\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -94024,12 +98229,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "824a075f-a557-407f-927d-2b433cb666a4", + "id": "c7910384-2b88-4aca-8114-b3fc6d123cd0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94065,7 +98270,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\",\n \"configProperties\": {\n \"Excepteur_7\": \"labore minim pariatur in reprehenderit\",\n \"elit6\": true\n }\n}", + "raw": "{\n \"mfaMethod\": \"duo-web\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"qw123Y3QlA5UqocYpdU3rEkzrK2D497y\",\n \"identityAttribute\": \"email\",\n \"configProperties\": {\n \"skey\": \"12q3WERlcUHWJmiMqyCXI3uOF7EaDJTbdeOp6E2B\",\n \"ikey\": \"Q123WE45R6TY7890ZXCV\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -94082,7 +98287,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -94093,7 +98298,7 @@ } }, { - "id": "408b3e8d-f0d4-4084-946f-5597744c41cf", + "id": "8dc97071-90ee-41d0-bd61-bb9b7c15db92", "name": "MFA method's test configuration", "request": { "name": "MFA method's test configuration", @@ -94114,7 +98319,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "okta-verify", "key": "method", "disabled": true, "description": { @@ -94135,7 +98340,7 @@ }, "response": [ { - "id": "e5100bff-93b9-4636-a76c-c5f22c45b158", + "id": "adb2c852-8b62-48ef-a03c-dae42fa92d22", "name": "The result of configuration test for the MFA provider.", "originalRequest": { "url": { @@ -94175,12 +98380,12 @@ "value": "application/json" } ], - "body": "{\n \"state\": \"FAILED\",\n \"error\": \"\"\n}", + "body": "{\n \"state\": \"SUCCESS\",\n \"error\": null\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bbc61c4b-2ced-485e-af73-bd98ed49deb8", + "id": "105fa0ba-5554-45b6-b213-009680c65cad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94220,12 +98425,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "688f77fe-7216-49ea-bf79-7ef5a5d2ced5", + "id": "b3b20d33-bd21-44b1-8af7-0200d7b644b7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94265,12 +98470,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4fb1e1f5-43be-43fe-82c5-c6fe15356e22", + "id": "52483773-133f-4114-97f0-84d19e5f0b13", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94310,12 +98515,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f5a9b6af-5469-4a21-8173-1c1d32fb29b2", + "id": "8bd57964-0bc4-4b5d-ae93-357538527cbe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94355,12 +98560,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "90f32c33-c017-4676-a6ba-cb815af4dc91", + "id": "a53ef7fe-78a0-4d33-a399-75b6b131895e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94400,7 +98605,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -94411,7 +98616,7 @@ } }, { - "id": "cfb19f69-3c91-49f1-801e-74fdc6d6a8e6", + "id": "bb88f612-4a3c-4de0-a309-564648442b1e", "name": "Delete MFA method configuration", "request": { "name": "Delete MFA method configuration", @@ -94432,7 +98637,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "okta-verify", "key": "method", "disabled": true, "description": { @@ -94453,7 +98658,7 @@ }, "response": [ { - "id": "aba24deb-9787-448b-9435-78acb71d56fd", + "id": "f60cf281-0662-4f5c-8bc8-27db2f590242", "name": "MFA configuration of an MFA method.", "originalRequest": { "url": { @@ -94493,12 +98698,12 @@ "value": "application/json" } ], - "body": "{\n \"mfaMethod\": \"\",\n \"enabled\": false,\n \"host\": \"\",\n \"accessKey\": \"\",\n \"identityAttribute\": \"\"\n}", + "body": "{\n \"mfaMethod\": \"okta-verify\",\n \"enabled\": true,\n \"host\": \"www.example.com\",\n \"accessKey\": \"d******Y\",\n \"identityAttribute\": \"email\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3f4fbd22-a977-46c9-9787-699eb7287918", + "id": "3f883a47-8159-400e-aad9-02667cb17a39", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94538,12 +98743,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4d05249d-61e0-4c5a-be28-f2dd3545cef9", + "id": "28054780-ad54-41cc-b82f-e000bd3cadf2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94583,12 +98788,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "60e4ced3-705c-4885-9f49-2599423f0ff6", + "id": "a2e738eb-3cb0-4be8-85e3-d3278ecbe270", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94628,12 +98833,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f6581a3f-f081-4951-926d-eef1d02bd676", + "id": "11eb3f04-5719-480a-b5f4-e4727f964976", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94673,12 +98878,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7bfb05a8-7389-4842-82ba-9c906fbca3ac", + "id": "727eae65-482a-4690-8230-58db011ae40f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94718,7 +98923,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -94735,7 +98940,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": "c5e9dd25-9a44-495e-aa8e-85527a090d2a", + "id": "461241d5-34b6-4b18-9528-f0fec10834d7", "name": "Verifying authentication via Okta method", "request": { "name": "Verifying authentication via Okta method", @@ -94768,7 +98973,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\"\n}", + "raw": "{\n \"userId\": \"example@mail.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -94779,7 +98984,7 @@ }, "response": [ { - "id": "438c1c0b-cf11-49c8-98c4-6d7777d14c67", + "id": "8f97ec62-dfb4-48a2-80cf-67f21f95e433", "name": "The status of verification request.", "originalRequest": { "url": { @@ -94815,7 +99020,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\"\n}", + "raw": "{\n \"userId\": \"example@mail.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -94832,12 +99037,12 @@ "value": "application/json" } ], - "body": "{\n \"requestId\": \"\",\n \"status\": \"FAILED\",\n \"error\": \"\"\n}", + "body": "{\n \"requestId\": \"089899f13a8f4da7824996191587bab9\",\n \"status\": \"SUCCESS\",\n \"error\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "34c27fe0-1ec2-48d7-995f-98bd9cdd1772", + "id": "4c3f1869-1db6-47f2-810d-80a7fb9ba4b0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94873,7 +99078,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\"\n}", + "raw": "{\n \"userId\": \"example@mail.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -94890,12 +99095,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bc266c26-4a2c-4363-b876-7aade3d68c2a", + "id": "a1e87ed1-1a5f-409a-8f7c-e84151dfaa9f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94931,7 +99136,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\"\n}", + "raw": "{\n \"userId\": \"example@mail.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -94948,12 +99153,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "190be0c8-8db7-43bb-af8b-a4814ab81d62", + "id": "3d6cdfb9-5ee7-4f3e-a132-3c4078a67d27", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94989,7 +99194,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\"\n}", + "raw": "{\n \"userId\": \"example@mail.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95006,12 +99211,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "351a5521-d8fd-49ba-9b6c-12312e583ad2", + "id": "45343232-2e42-49ef-93e3-9f124e202b0d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95047,7 +99252,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\"\n}", + "raw": "{\n \"userId\": \"example@mail.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95064,12 +99269,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ff0f8da-4376-4c66-adfe-9ae70e96a826", + "id": "5b9407c6-c89e-468a-94cd-5957e969a32b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95105,7 +99310,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\"\n}", + "raw": "{\n \"userId\": \"example@mail.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95122,7 +99327,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -95133,7 +99338,7 @@ } }, { - "id": "9b0b3c20-9cac-4d95-a6fc-a4b4588dc554", + "id": "e3a76ef7-b66f-49cb-aff8-ab1e86e39e60", "name": "Verifying authentication via Duo method", "request": { "name": "Verifying authentication via Duo method", @@ -95166,7 +99371,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\",\n \"signedResponse\": \"\"\n}", + "raw": "{\n \"userId\": \"2c9180947f0ef465017f215cbcfd004b\",\n \"signedResponse\": \"AUTH|d2lsbC5hbGJpbnxESTZNMFpHSThKQVRWTVpZN0M5VXwxNzAxMjUzMDg5|f1f5f8ced5b340f3d303b05d0efa0e43b6a8f970:APP|d2lsbC5hbGJpbnxESTZNMFpHSThKQVRWTVpZN0M5VXwxNzAxMjU2NjE5|cb44cf44353f5127edcae31b1da0355f87357db2\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95177,7 +99382,7 @@ }, "response": [ { - "id": "307317e7-0cb2-40de-ba90-07313da01a1b", + "id": "2a2baf01-b41d-4ea0-ab93-ff03c5e10449", "name": "The status of verification request.", "originalRequest": { "url": { @@ -95213,7 +99418,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\",\n \"signedResponse\": \"\"\n}", + "raw": "{\n \"userId\": \"2c9180947f0ef465017f215cbcfd004b\",\n \"signedResponse\": \"AUTH|d2lsbC5hbGJpbnxESTZNMFpHSThKQVRWTVpZN0M5VXwxNzAxMjUzMDg5|f1f5f8ced5b340f3d303b05d0efa0e43b6a8f970:APP|d2lsbC5hbGJpbnxESTZNMFpHSThKQVRWTVpZN0M5VXwxNzAxMjU2NjE5|cb44cf44353f5127edcae31b1da0355f87357db2\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95230,12 +99435,12 @@ "value": "application/json" } ], - "body": "{\n \"requestId\": \"\",\n \"status\": \"FAILED\",\n \"error\": \"\"\n}", + "body": "{\n \"requestId\": \"089899f13a8f4da7824996191587bab9\",\n \"status\": \"SUCCESS\",\n \"error\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "18159f31-b57b-4eb8-8d94-22628bd2642d", + "id": "f5b770c7-cec4-4361-b5e5-88780f07b99e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95271,7 +99476,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\",\n \"signedResponse\": \"\"\n}", + "raw": "{\n \"userId\": \"2c9180947f0ef465017f215cbcfd004b\",\n \"signedResponse\": \"AUTH|d2lsbC5hbGJpbnxESTZNMFpHSThKQVRWTVpZN0M5VXwxNzAxMjUzMDg5|f1f5f8ced5b340f3d303b05d0efa0e43b6a8f970:APP|d2lsbC5hbGJpbnxESTZNMFpHSThKQVRWTVpZN0M5VXwxNzAxMjU2NjE5|cb44cf44353f5127edcae31b1da0355f87357db2\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95288,12 +99493,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "689a0741-cb60-42d7-b45e-2ed5fd22a3cc", + "id": "1e5c46d8-0eaa-457e-9899-e0bb0b8cd0d2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95329,7 +99534,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\",\n \"signedResponse\": \"\"\n}", + "raw": "{\n \"userId\": \"2c9180947f0ef465017f215cbcfd004b\",\n \"signedResponse\": \"AUTH|d2lsbC5hbGJpbnxESTZNMFpHSThKQVRWTVpZN0M5VXwxNzAxMjUzMDg5|f1f5f8ced5b340f3d303b05d0efa0e43b6a8f970:APP|d2lsbC5hbGJpbnxESTZNMFpHSThKQVRWTVpZN0M5VXwxNzAxMjU2NjE5|cb44cf44353f5127edcae31b1da0355f87357db2\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95346,12 +99551,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5eee63ee-2304-43b0-8b7a-eccb438fb182", + "id": "d243b1cf-3b6c-457e-9c28-2dac703c7c1b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95387,7 +99592,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\",\n \"signedResponse\": \"\"\n}", + "raw": "{\n \"userId\": \"2c9180947f0ef465017f215cbcfd004b\",\n \"signedResponse\": \"AUTH|d2lsbC5hbGJpbnxESTZNMFpHSThKQVRWTVpZN0M5VXwxNzAxMjUzMDg5|f1f5f8ced5b340f3d303b05d0efa0e43b6a8f970:APP|d2lsbC5hbGJpbnxESTZNMFpHSThKQVRWTVpZN0M5VXwxNzAxMjU2NjE5|cb44cf44353f5127edcae31b1da0355f87357db2\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95404,12 +99609,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8c8fe2d8-80e3-4aca-93fc-b9d0707c609a", + "id": "ae5be07f-8890-44de-8d13-d697a2e8a2ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95445,7 +99650,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\",\n \"signedResponse\": \"\"\n}", + "raw": "{\n \"userId\": \"2c9180947f0ef465017f215cbcfd004b\",\n \"signedResponse\": \"AUTH|d2lsbC5hbGJpbnxESTZNMFpHSThKQVRWTVpZN0M5VXwxNzAxMjUzMDg5|f1f5f8ced5b340f3d303b05d0efa0e43b6a8f970:APP|d2lsbC5hbGJpbnxESTZNMFpHSThKQVRWTVpZN0M5VXwxNzAxMjU2NjE5|cb44cf44353f5127edcae31b1da0355f87357db2\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95462,12 +99667,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "284687f3-52c9-4ca2-b9ef-c273817cfcfa", + "id": "b0e9dcf5-665b-4ed1-8a5e-eeb2333cf96f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95503,7 +99708,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\",\n \"signedResponse\": \"\"\n}", + "raw": "{\n \"userId\": \"2c9180947f0ef465017f215cbcfd004b\",\n \"signedResponse\": \"AUTH|d2lsbC5hbGJpbnxESTZNMFpHSThKQVRWTVpZN0M5VXwxNzAxMjUzMDg5|f1f5f8ced5b340f3d303b05d0efa0e43b6a8f970:APP|d2lsbC5hbGJpbnxESTZNMFpHSThKQVRWTVpZN0M5VXwxNzAxMjU2NjE5|cb44cf44353f5127edcae31b1da0355f87357db2\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95520,7 +99725,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -95531,7 +99736,7 @@ } }, { - "id": "3bd7e0db-fc3f-4c0d-bf84-72cfc995b54a", + "id": "aec57c19-05a4-46f4-8363-28d73fd8c6df", "name": "Polling MFA method by VerificationPollRequest", "request": { "name": "Polling MFA method by VerificationPollRequest", @@ -95552,7 +99757,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "okta-verify", "key": "method", "disabled": true, "description": { @@ -95575,7 +99780,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestId\": \"\"\n}", + "raw": "{\n \"requestId\": \"089899f13a8f4da7824996191587bab9\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95586,7 +99791,7 @@ }, "response": [ { - "id": "5ddba602-b2b7-4d3b-b2e0-7e0cce4d71a5", + "id": "0dd48b9d-f975-4110-8bb8-859c97e8927b", "name": "MFA VerificationPollRequest status an MFA method.", "originalRequest": { "url": { @@ -95622,7 +99827,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestId\": \"\"\n}", + "raw": "{\n \"requestId\": \"089899f13a8f4da7824996191587bab9\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95639,12 +99844,12 @@ "value": "application/json" } ], - "body": "{\n \"requestId\": \"\",\n \"status\": \"FAILED\",\n \"error\": \"\"\n}", + "body": "{\n \"requestId\": \"089899f13a8f4da7824996191587bab9\",\n \"status\": \"PENDING\",\n \"error\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3feda584-67ff-4cb0-b8dc-849bbe330e64", + "id": "b2f687f2-719e-43c6-9f6b-ca5263106bcd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95680,7 +99885,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestId\": \"\"\n}", + "raw": "{\n \"requestId\": \"089899f13a8f4da7824996191587bab9\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95697,12 +99902,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7cad945e-7f71-441a-88b0-d598fd43d789", + "id": "30cd254b-7968-4a9c-afb4-998d45f4181c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95738,7 +99943,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestId\": \"\"\n}", + "raw": "{\n \"requestId\": \"089899f13a8f4da7824996191587bab9\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95755,12 +99960,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f5969dd0-cf02-4489-9e4f-967201b9d205", + "id": "b941786c-d218-4a16-8fcf-a40bf9e3c534", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95796,7 +100001,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestId\": \"\"\n}", + "raw": "{\n \"requestId\": \"089899f13a8f4da7824996191587bab9\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95813,12 +100018,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2ae99bc1-5945-4f94-a3d0-2422e328ec58", + "id": "a1cdef8d-2c96-4a5b-a283-93f830866fcc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95854,7 +100059,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestId\": \"\"\n}", + "raw": "{\n \"requestId\": \"089899f13a8f4da7824996191587bab9\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95871,12 +100076,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5b229fc0-9bcf-421e-bfd7-89c4bf71b1e7", + "id": "8ba73ed6-c4fd-4050-88a7-0548f1f51096", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95912,7 +100117,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestId\": \"\"\n}", + "raw": "{\n \"requestId\": \"089899f13a8f4da7824996191587bab9\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95929,7 +100134,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -95940,7 +100145,7 @@ } }, { - "id": "f41ca25c-077e-48e4-9c13-d4bfb8be015a", + "id": "326af696-3565-4812-b475-0f8cd26c32e5", "name": "Authenticate KBA provided MFA method", "request": { "name": "Authenticate KBA provided MFA method", @@ -95973,7 +100178,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"answers\": [\n {\n \"questionId\": \"\",\n \"answer\": \"\"\n },\n {\n \"questionId\": \"\",\n \"answer\": \"\"\n }\n ]\n}", + "raw": "{\n \"answers\": [\n {\n \"questionId\": \"089899f13a8f4da7824996191587bab9\",\n \"answer\": \"Your answer\"\n },\n {\n \"questionId\": \"067899f13a8f4da7824996191587bab9\",\n \"answer\": \"Your answer1\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -95984,7 +100189,7 @@ }, "response": [ { - "id": "7b221468-fc2e-4b30-9822-abf93f73dac3", + "id": "5c5458ab-d0d7-4a35-9405-149afc184d12", "name": "KBA authenticated status.", "originalRequest": { "url": { @@ -96020,7 +100225,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"answers\": [\n {\n \"questionId\": \"\",\n \"answer\": \"\"\n },\n {\n \"questionId\": \"\",\n \"answer\": \"\"\n }\n ]\n}", + "raw": "{\n \"answers\": [\n {\n \"questionId\": \"089899f13a8f4da7824996191587bab9\",\n \"answer\": \"Your answer\"\n },\n {\n \"questionId\": \"067899f13a8f4da7824996191587bab9\",\n \"answer\": \"Your answer1\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -96037,12 +100242,12 @@ "value": "application/json" } ], - "body": "{\n \"kbaAuthResponseItems\": [\n {\n \"questionId\": \"\",\n \"isVerified\": null\n },\n {\n \"questionId\": \"\",\n \"isVerified\": null\n }\n ],\n \"status\": \"NOT_ENOUGH_DATA\"\n}", + "body": "{\n \"kbaAuthResponseItem\": [\n {\n \"questionId\": \"089899f13a8f4da7824996191587bab9\",\n \"IsVerified\": false\n },\n {\n \"questionId\": \"089899f13a8f4da7824996191587bda8\",\n \"IsVerified\": true\n }\n ],\n \"status\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "092b2f90-99d6-4ff4-af57-fbe1c9522c6e", + "id": "27810fa9-72ba-4628-b862-ba192d664a23", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96078,7 +100283,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"answers\": [\n {\n \"questionId\": \"\",\n \"answer\": \"\"\n },\n {\n \"questionId\": \"\",\n \"answer\": \"\"\n }\n ]\n}", + "raw": "{\n \"answers\": [\n {\n \"questionId\": \"089899f13a8f4da7824996191587bab9\",\n \"answer\": \"Your answer\"\n },\n {\n \"questionId\": \"067899f13a8f4da7824996191587bab9\",\n \"answer\": \"Your answer1\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -96095,12 +100300,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8013fb09-2bd8-4663-900d-c1c5d012700b", + "id": "d09c3365-c8fa-44c8-8804-909223fec244", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96136,7 +100341,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"answers\": [\n {\n \"questionId\": \"\",\n \"answer\": \"\"\n },\n {\n \"questionId\": \"\",\n \"answer\": \"\"\n }\n ]\n}", + "raw": "{\n \"answers\": [\n {\n \"questionId\": \"089899f13a8f4da7824996191587bab9\",\n \"answer\": \"Your answer\"\n },\n {\n \"questionId\": \"067899f13a8f4da7824996191587bab9\",\n \"answer\": \"Your answer1\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -96153,12 +100358,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1860e66a-f422-49ad-8b54-7f752fc49722", + "id": "b417a24c-47df-4262-862f-faf39efc6445", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96194,7 +100399,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"answers\": [\n {\n \"questionId\": \"\",\n \"answer\": \"\"\n },\n {\n \"questionId\": \"\",\n \"answer\": \"\"\n }\n ]\n}", + "raw": "{\n \"answers\": [\n {\n \"questionId\": \"089899f13a8f4da7824996191587bab9\",\n \"answer\": \"Your answer\"\n },\n {\n \"questionId\": \"067899f13a8f4da7824996191587bab9\",\n \"answer\": \"Your answer1\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -96211,12 +100416,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "aee209c7-9f40-4bcf-9d1e-eb8eac170d9a", + "id": "8a78424b-0e01-415a-aa70-e61e491750f5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96252,7 +100457,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"answers\": [\n {\n \"questionId\": \"\",\n \"answer\": \"\"\n },\n {\n \"questionId\": \"\",\n \"answer\": \"\"\n }\n ]\n}", + "raw": "{\n \"answers\": [\n {\n \"questionId\": \"089899f13a8f4da7824996191587bab9\",\n \"answer\": \"Your answer\"\n },\n {\n \"questionId\": \"067899f13a8f4da7824996191587bab9\",\n \"answer\": \"Your answer1\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -96269,12 +100474,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36d1b1fd-2913-4a9a-a26d-2cac01f8975b", + "id": "d93c8a69-371e-4b6a-b5b5-321e41ad218d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96310,7 +100515,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"answers\": [\n {\n \"questionId\": \"\",\n \"answer\": \"\"\n },\n {\n \"questionId\": \"\",\n \"answer\": \"\"\n }\n ]\n}", + "raw": "{\n \"answers\": [\n {\n \"questionId\": \"089899f13a8f4da7824996191587bab9\",\n \"answer\": \"Your answer\"\n },\n {\n \"questionId\": \"067899f13a8f4da7824996191587bab9\",\n \"answer\": \"Your answer1\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -96327,7 +100532,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -96338,7 +100543,7 @@ } }, { - "id": "a22b21a7-6ff0-4d2c-9dd0-ce562848336c", + "id": "0d55969a-7290-49ef-8a4f-d4a4a6f7f350", "name": "Authenticate Token provided MFA method", "request": { "name": "Authenticate Token provided MFA method", @@ -96371,7 +100576,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"token\": \"\",\n \"userAlias\": \"\",\n \"deliveryType\": \"EMAIL_PERSONAL\"\n}", + "raw": "{\n \"token\": \"12345\",\n \"userAlias\": \"will.albin\",\n \"deliveryType\": \"EMAIL_WORK\"\n}", "options": { "raw": { "headerFamily": "json", @@ -96382,7 +100587,7 @@ }, "response": [ { - "id": "74c954db-81e3-427b-9ec2-850c31da1303", + "id": "60a88a59-e13e-4899-843c-1babccdcf42f", "name": "Token authenticated status.", "originalRequest": { "url": { @@ -96418,7 +100623,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"token\": \"\",\n \"userAlias\": \"\",\n \"deliveryType\": \"EMAIL_PERSONAL\"\n}", + "raw": "{\n \"token\": \"12345\",\n \"userAlias\": \"will.albin\",\n \"deliveryType\": \"EMAIL_WORK\"\n}", "options": { "raw": { "headerFamily": "json", @@ -96435,12 +100640,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"SUCCESS\"\n}", + "body": "{\n \"status\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "57f27283-3fdf-4efa-8a8f-24c75cd88fbd", + "id": "0f7e2f8b-82da-4a1e-b350-5e8c7fb3abc3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96476,7 +100681,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"token\": \"\",\n \"userAlias\": \"\",\n \"deliveryType\": \"EMAIL_PERSONAL\"\n}", + "raw": "{\n \"token\": \"12345\",\n \"userAlias\": \"will.albin\",\n \"deliveryType\": \"EMAIL_WORK\"\n}", "options": { "raw": { "headerFamily": "json", @@ -96493,12 +100698,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "777dcd23-0d6d-45ce-9aa2-076e5c7c8a44", + "id": "d95ef359-14f1-44a8-859d-3dfcfca976cd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96534,7 +100739,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"token\": \"\",\n \"userAlias\": \"\",\n \"deliveryType\": \"EMAIL_PERSONAL\"\n}", + "raw": "{\n \"token\": \"12345\",\n \"userAlias\": \"will.albin\",\n \"deliveryType\": \"EMAIL_WORK\"\n}", "options": { "raw": { "headerFamily": "json", @@ -96551,12 +100756,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "479427b4-5685-4642-b674-a9c94cb2d920", + "id": "99c8858d-e558-4222-920c-05befb06396c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96592,7 +100797,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"token\": \"\",\n \"userAlias\": \"\",\n \"deliveryType\": \"EMAIL_PERSONAL\"\n}", + "raw": "{\n \"token\": \"12345\",\n \"userAlias\": \"will.albin\",\n \"deliveryType\": \"EMAIL_WORK\"\n}", "options": { "raw": { "headerFamily": "json", @@ -96609,12 +100814,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a2cae898-377e-42d5-aa7c-1f811c029d9e", + "id": "5a73bf91-78b5-40ee-93f7-18f7b95cf822", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96650,7 +100855,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"token\": \"\",\n \"userAlias\": \"\",\n \"deliveryType\": \"EMAIL_PERSONAL\"\n}", + "raw": "{\n \"token\": \"12345\",\n \"userAlias\": \"will.albin\",\n \"deliveryType\": \"EMAIL_WORK\"\n}", "options": { "raw": { "headerFamily": "json", @@ -96667,12 +100872,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "44396862-8875-497c-aa5a-50f077c0ecb5", + "id": "50646759-345b-4ced-818e-4744ffc2860f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96708,7 +100913,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"token\": \"\",\n \"userAlias\": \"\",\n \"deliveryType\": \"EMAIL_PERSONAL\"\n}", + "raw": "{\n \"token\": \"12345\",\n \"userAlias\": \"will.albin\",\n \"deliveryType\": \"EMAIL_WORK\"\n}", "options": { "raw": { "headerFamily": "json", @@ -96725,7 +100930,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -96736,7 +100941,7 @@ } }, { - "id": "51bbf954-20a7-4470-a7b8-e0fa832d4b71", + "id": "f47044cb-f6b4-4b34-8fe6-764f35761f29", "name": "Create and send user token", "request": { "name": "Create and send user token", @@ -96769,7 +100974,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userAlias\": \"\",\n \"deliveryType\": \"SMS_WORK\"\n}", + "raw": "{\n \"userAlias\": \"will.albin\",\n \"deliveryType\": \"EMAIL_WORK\"\n}", "options": { "raw": { "headerFamily": "json", @@ -96780,7 +100985,7 @@ }, "response": [ { - "id": "95376ff6-3f8c-499f-98aa-332781811c87", + "id": "69771bdd-de87-401b-b7ae-d48e3fd71b74", "name": "Token send status.", "originalRequest": { "url": { @@ -96816,7 +101021,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userAlias\": \"\",\n \"deliveryType\": \"SMS_WORK\"\n}", + "raw": "{\n \"userAlias\": \"will.albin\",\n \"deliveryType\": \"EMAIL_WORK\"\n}", "options": { "raw": { "headerFamily": "json", @@ -96833,12 +101038,12 @@ "value": "application/json" } ], - "body": "{\n \"requestId\": \"\",\n \"status\": \"FAILED\",\n \"errorMessage\": \"\"\n}", + "body": "{\n \"requestId\": \"089899f13a8f4da7824996191587bab9\",\n \"status\": \"SUCCESS\",\n \"errorMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e391833f-dcc3-4422-a8b4-8c0a5282a8a0", + "id": "95077755-8c7b-4dce-9de6-e869b69ab2bd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96874,7 +101079,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userAlias\": \"\",\n \"deliveryType\": \"SMS_WORK\"\n}", + "raw": "{\n \"userAlias\": \"will.albin\",\n \"deliveryType\": \"EMAIL_WORK\"\n}", "options": { "raw": { "headerFamily": "json", @@ -96891,12 +101096,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "10762a1b-9a02-447a-8816-21dd1f6bbda7", + "id": "a23add88-54b0-476a-b52e-e04c2f41dd61", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96932,7 +101137,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userAlias\": \"\",\n \"deliveryType\": \"SMS_WORK\"\n}", + "raw": "{\n \"userAlias\": \"will.albin\",\n \"deliveryType\": \"EMAIL_WORK\"\n}", "options": { "raw": { "headerFamily": "json", @@ -96949,12 +101154,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "78398d91-e1c5-4813-bd7f-f683b674dbf6", + "id": "bc1dcd85-056c-4732-a0af-517f0f7dfe62", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96990,7 +101195,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userAlias\": \"\",\n \"deliveryType\": \"SMS_WORK\"\n}", + "raw": "{\n \"userAlias\": \"will.albin\",\n \"deliveryType\": \"EMAIL_WORK\"\n}", "options": { "raw": { "headerFamily": "json", @@ -97007,12 +101212,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1638436d-7b60-444d-9990-8536f076a566", + "id": "1cb6d1ec-bf5b-45a9-93b6-b7c7c253ba97", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97048,7 +101253,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userAlias\": \"\",\n \"deliveryType\": \"SMS_WORK\"\n}", + "raw": "{\n \"userAlias\": \"will.albin\",\n \"deliveryType\": \"EMAIL_WORK\"\n}", "options": { "raw": { "headerFamily": "json", @@ -97065,12 +101270,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3d96c730-165b-48c8-9d06-28fe1cc9b133", + "id": "4d7228c6-50f9-43c6-9d6b-67cbf26f9a02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97106,7 +101311,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userAlias\": \"\",\n \"deliveryType\": \"SMS_WORK\"\n}", + "raw": "{\n \"userAlias\": \"will.albin\",\n \"deliveryType\": \"EMAIL_WORK\"\n}", "options": { "raw": { "headerFamily": "json", @@ -97123,7 +101328,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -97140,7 +101345,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": "f6608406-0a6f-45bb-89c5-976ac119ac0a", + "id": "0ed5e954-8d6a-42ed-81ad-a3e292698a5e", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -97171,7 +101376,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -97182,7 +101387,7 @@ }, "response": [ { - "id": "f208bbe0-8c87-49ec-bd45-0881f10240a7", + "id": "d072c935-0760-413d-9a35-e36f6bfac9c4", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -97216,7 +101421,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -97233,12 +101438,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"occaecat_77\": \"\",\n \"laborum_2ce\": \"\",\n \"laboris_ec\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"id magna eu aliquip\",\n \"accountName\": \"est proident\",\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 \"aliqua_01\": \"Lorem in cupidatat\"\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": "9a9d6d76-533b-46f4-983a-42f8a404e1ea", + "id": "9cca08c0-0eb5-4c5d-8abb-958ec5d9508d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97272,7 +101477,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -97289,12 +101494,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a30caf85-107c-4451-8c7a-2cc50335be7b", + "id": "92c06908-db3c-4ed6-850f-4ec9d0c61696", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97328,7 +101533,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -97345,12 +101550,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a46e888-b027-477e-9dbf-9bd9bd88b469", + "id": "e4614f22-430d-4789-a957-51e49bc5900d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97384,7 +101589,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -97401,12 +101606,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7b457b7d-b8e4-4f8d-b45d-173f3712127e", + "id": "a71ffefa-d188-43cb-b266-a007f6abb371", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97440,7 +101645,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -97457,12 +101662,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "70d08eef-7eae-493d-8cb2-a98a4c646606", + "id": "f11dd18b-df90-4a0d-9f3c-a4f65104bb8c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97496,7 +101701,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -97513,7 +101718,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -97524,7 +101729,7 @@ } }, { - "id": "2e80fd4f-0b38-4071-a9dd-e041e19a4489", + "id": "232818a0-b25e-4cf5-97a9-6d2f857e6f8f", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -97565,7 +101770,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -97574,7 +101779,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "accountName,sourceId" }, { "disabled": true, @@ -97583,7 +101788,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "sourceId eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -97599,7 +101804,7 @@ }, "response": [ { - "id": "91e4893e-bb3f-4911-818c-a8ec93ba1c9d", + "id": "cea58c72-7d87-4db3-94d1-a8ddfc70c5c2", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -97635,7 +101840,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -97644,7 +101849,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "accountName,sourceId" }, { "disabled": true, @@ -97653,7 +101858,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "sourceId eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -97683,12 +101888,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"adipisicingb\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"consectetur_ed\": \"\",\n \"nostrudc40\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"dolore do deserunt cupidatat\",\n \"accountName\": \"esse Lorem a\",\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 \"eu_f7\": \"nulla labore\",\n \"amet_03c\": \"laborum fugiat in laboris officia\"\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\": \"minim occaecat enim deserunt\",\n \"accountName\": \"qui\",\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 \"Ut744\": \"ea Ut voluptate occaecat\"\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": "426cd14d-5cf9-4b36-a261-8281a57c654e", + "id": "6b9d84fd-9cbc-4adf-956f-d39a0c0bbe2d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97724,7 +101929,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -97733,7 +101938,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "accountName,sourceId" }, { "disabled": true, @@ -97742,7 +101947,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "sourceId eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -97772,12 +101977,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4aa64dd7-fdc4-42e0-81c9-d3baa27b95cf", + "id": "5e2956db-528b-4e28-9284-756c2ca6d1cb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97813,7 +102018,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -97822,7 +102027,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "accountName,sourceId" }, { "disabled": true, @@ -97831,7 +102036,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "sourceId eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -97861,12 +102066,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e2569a9-be2f-451d-8e1f-f54847f61d6a", + "id": "6f3839e5-11cb-444f-a976-92af20d364d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97902,7 +102107,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -97911,7 +102116,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "accountName,sourceId" }, { "disabled": true, @@ -97920,7 +102125,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "sourceId eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -97950,12 +102155,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7d21d161-f9b6-40f3-a80b-93182c35622b", + "id": "860b4dd5-0d3b-4f61-ba95-2cbeaf47f700", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97991,7 +102196,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -98000,7 +102205,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "accountName,sourceId" }, { "disabled": true, @@ -98009,7 +102214,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "sourceId eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -98039,12 +102244,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "505e1979-e08b-499a-8f78-43de3a94f06a", + "id": "62a1f3b5-b78d-495a-8cd8-9e39d29aeabd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98080,7 +102285,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -98089,7 +102294,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "accountName,sourceId" }, { "disabled": true, @@ -98098,7 +102303,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "sourceId eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -98128,7 +102333,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -98139,7 +102344,7 @@ } }, { - "id": "577152d4-979c-42e5-b4b9-d137a4078cc4", + "id": "8d4688b5-96a7-41e5-8fff-d62f0863c93e", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -98159,7 +102364,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b6ef1d43e016efba0ce470904", "key": "id", "disabled": true, "description": { @@ -98180,7 +102385,7 @@ }, "response": [ { - "id": "5333c78b-bc25-4ac0-83ba-9401e361924b", + "id": "f801d67a-fd24-40b5-ab50-19a15999049a", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -98219,12 +102424,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"occaecat_77\": \"\",\n \"laborum_2ce\": \"\",\n \"laboris_ec\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"id magna eu aliquip\",\n \"accountName\": \"est proident\",\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 \"aliqua_01\": \"Lorem in cupidatat\"\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": "8427ad49-93b9-4a9c-8b81-6df072591a1a", + "id": "fcc3085c-5cfd-4c8d-aaf5-5dd0629c2a58", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98263,12 +102468,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "65b0a3b7-b78a-4a58-810d-dc2138444b17", + "id": "2318c0b4-f695-4df1-8c7e-0e526e889cdf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98307,12 +102512,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e30a77ab-25d0-4235-b8f5-97b1afd018bd", + "id": "63b528c8-147c-41d3-a0e5-e7bd8506ac18", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98351,12 +102556,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f7e7a111-586d-47ba-abc8-016127d28428", + "id": "138e1f18-f6a9-4718-a970-d3d2068b9789", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98395,12 +102600,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b337562e-9a8c-41f2-9a6e-fb4629e2c4d4", + "id": "26d42593-77b9-4a9b-ab64-71d335842fee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98439,7 +102644,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -98450,7 +102655,7 @@ } }, { - "id": "d40ce16c-7327-4420-84ca-fd0464f8ab67", + "id": "21db2471-6359-46d1-b32e-c9e85796ddb1", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -98470,7 +102675,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b6ef1d43e016efba0ce470904", "key": "id", "disabled": true, "description": { @@ -98493,7 +102698,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -98504,7 +102709,7 @@ }, "response": [ { - "id": "e68309fd-cfaa-4df3-bcd5-6cb4c21c51b0", + "id": "b5d4c8ca-4499-46f1-8080-553b3a436496", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -98539,7 +102744,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -98556,12 +102761,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"occaecat_77\": \"\",\n \"laborum_2ce\": \"\",\n \"laboris_ec\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"id magna eu aliquip\",\n \"accountName\": \"est proident\",\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 \"aliqua_01\": \"Lorem in cupidatat\"\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": "3878031f-fc40-449f-bd40-ba1a90e1a3fd", + "id": "a994dfb3-8045-4677-b284-cff8bdc8f48f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98596,7 +102801,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -98613,12 +102818,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "89e4b0b8-b622-4cf8-a726-a1ffe0b0f3f0", + "id": "872f0bda-24b9-4a95-9aa5-15a86bc105ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98653,7 +102858,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -98670,12 +102875,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6e6461ee-19da-4cf1-8019-cceece92d033", + "id": "4011c667-f224-4e64-a372-4d883a9d0fa2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98710,7 +102915,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -98727,12 +102932,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a2e51ce5-9754-4efe-9b91-b4b9d2ed521e", + "id": "7e31a294-acc9-46b5-8b85-515e4cbaa8cb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -98767,7 +102972,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -98784,12 +102989,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "13d04baa-f223-483f-a8ee-321a2bdd0d78", + "id": "28cacf79-256d-4bb5-ad78-3adede617fba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98824,7 +103029,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -98841,12 +103046,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "417a5670-9508-42ec-ac66-c1d2abc1112f", + "id": "a1988d51-8165-4344-85c4-6ddb8482d901", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98881,7 +103086,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -98898,7 +103103,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -98909,7 +103114,7 @@ } }, { - "id": "98814cf3-3f3a-4647-95a9-733fe1adae38", + "id": "909b373c-6627-4fcc-8b7e-af0de4c3ac71", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -98929,7 +103134,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b6ef1d43e016efba0ce470904", "key": "id", "disabled": true, "description": { @@ -98952,7 +103157,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/endDate\",\n \"value\": {\n \"2019-08-23T18:40:35.772Z\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -98963,7 +103168,7 @@ }, "response": [ { - "id": "0e42e9fa-e37a-460e-9d58-5b849d1b5401", + "id": "20744570-4dcf-4b29-a604-efdeeb86df79", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -98998,7 +103203,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/endDate\",\n \"value\": {\n \"2019-08-23T18:40:35.772Z\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -99015,12 +103220,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"occaecat_77\": \"\",\n \"laborum_2ce\": \"\",\n \"laboris_ec\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"id magna eu aliquip\",\n \"accountName\": \"est proident\",\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 \"aliqua_01\": \"Lorem in cupidatat\"\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": "d7978239-b5f3-476e-97c7-08235e92b0bc", + "id": "86b491dc-cdc6-4445-b0e4-c191120f81e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99055,7 +103260,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/endDate\",\n \"value\": {\n \"2019-08-23T18:40:35.772Z\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -99072,12 +103277,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f24dec1a-6b23-46af-9e11-ce5845c24bcc", + "id": "0bf60c72-b398-4b8f-b0b9-50c19a2aca15", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99112,7 +103317,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/endDate\",\n \"value\": {\n \"2019-08-23T18:40:35.772Z\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -99129,12 +103334,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d849edb-fb57-499a-9d81-c8afbba4fb2f", + "id": "594b3688-02a6-4453-8267-66c37a0c5e78", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99169,7 +103374,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/endDate\",\n \"value\": {\n \"2019-08-23T18:40:35.772Z\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -99186,12 +103391,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "52d391b9-4751-4058-9b9c-86ee933cd62e", + "id": "9b94809c-c707-40d9-8260-d5c4216a9ac7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -99226,7 +103431,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/endDate\",\n \"value\": {\n \"2019-08-23T18:40:35.772Z\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -99243,12 +103448,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "77916309-eee1-4356-a6a2-b4e53bca6a4a", + "id": "df7126ba-60b6-4d93-9896-bcd22e5fbf15", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99283,7 +103488,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/endDate\",\n \"value\": {\n \"2019-08-23T18:40:35.772Z\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -99300,12 +103505,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36efed03-f043-465c-82c1-1889df34c85e", + "id": "9f7bc628-493e-4d48-b8a2-9854b2228245", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99340,7 +103545,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/endDate\",\n \"value\": {\n \"2019-08-23T18:40:35.772Z\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -99357,7 +103562,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -99368,7 +103573,7 @@ } }, { - "id": "30c0602f-506c-4afc-9c3b-d275d53ea4e6", + "id": "4da493c0-fe2d-433e-8ff3-f6d6d0263aac", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -99388,7 +103593,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b6ef1d43e016efba0ce470904", "key": "id", "disabled": true, "description": { @@ -99409,7 +103614,7 @@ }, "response": [ { - "id": "2fe89b74-98aa-4033-90cc-c84b7c716b5f", + "id": "a2c1e842-0558-4b41-b258-aa7373a7090b", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -99443,7 +103648,7 @@ "_postman_previewlanguage": "text" }, { - "id": "fe4bdc48-e3cd-432a-a2ad-dc81e9bf7cd4", + "id": "be81f5b2-feef-441b-8fc4-ea622932fa06", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99482,12 +103687,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "528527a5-4430-4809-a6e1-e98e949f21d6", + "id": "09e8c905-6082-47cd-bbec-e1b20243a01d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99526,12 +103731,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c7ea7bea-e7ec-459e-9d60-d503f5d5028e", + "id": "8fa7b0e1-6e51-41e7-bd15-75261443e9db", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99570,12 +103775,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "aeebe66b-ae41-4bf5-9d02-00b4be3377e4", + "id": "2fbcc8c3-a0e2-449f-95de-0854d97ad006", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99614,12 +103819,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "03167dde-946a-4957-9d4f-700ba540e07a", + "id": "b66e48b3-987a-4e50-982c-38e170825d25", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99658,7 +103863,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -99669,7 +103874,7 @@ } }, { - "id": "5b050496-2d59-404e-8d3c-4a36d48d9865", + "id": "52ee9b1a-c6d1-4f39-b5f4-4623414a8b0e", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -99701,7 +103906,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"urn:uuid:6d8b5996-d788-bfc7-4a06-d89bf0d9fa38\",\n \"d1074af9-2567-1000-da58-f741f2803243\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -99712,7 +103917,7 @@ }, "response": [ { - "id": "df244b64-d70d-4e73-b43d-ab4da972cc73", + "id": "c21ff18f-a284-47b4-bef6-84086780368a", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -99743,7 +103948,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"urn:uuid:6d8b5996-d788-bfc7-4a06-d89bf0d9fa38\",\n \"d1074af9-2567-1000-da58-f741f2803243\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -99759,7 +103964,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5e956e52-702d-456c-9972-588b0383886e", + "id": "404ebb0a-6267-4a8b-a6f0-04fb9354aacb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99794,7 +103999,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"urn:uuid:6d8b5996-d788-bfc7-4a06-d89bf0d9fa38\",\n \"d1074af9-2567-1000-da58-f741f2803243\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -99811,12 +104016,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "37d794a9-806d-43b2-84b7-93071f45b29f", + "id": "3995bb7f-a0dc-4e21-9c33-d82b0fc6625a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99851,7 +104056,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"urn:uuid:6d8b5996-d788-bfc7-4a06-d89bf0d9fa38\",\n \"d1074af9-2567-1000-da58-f741f2803243\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -99868,12 +104073,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3bd150fc-7cac-43c8-b9af-979025cc06b0", + "id": "03414dac-417b-4f65-a0f3-2e0eca1a5758", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99908,7 +104113,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"urn:uuid:6d8b5996-d788-bfc7-4a06-d89bf0d9fa38\",\n \"d1074af9-2567-1000-da58-f741f2803243\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -99925,12 +104130,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a308cfd1-a824-4337-bbe3-1c007835195d", + "id": "20b43fa3-0991-4460-ab4a-615ff950218e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99965,7 +104170,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"urn:uuid:6d8b5996-d788-bfc7-4a06-d89bf0d9fa38\",\n \"d1074af9-2567-1000-da58-f741f2803243\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -99982,12 +104187,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4bdfbd9-e40a-4e2f-9267-16ec8b5c90fe", + "id": "bbcdc58f-663b-49ed-b511-93abd88119ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100022,7 +104227,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"urn:uuid:6d8b5996-d788-bfc7-4a06-d89bf0d9fa38\",\n \"d1074af9-2567-1000-da58-f741f2803243\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -100039,7 +104244,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -100050,7 +104255,7 @@ } }, { - "id": "d0c2bb75-98b7-4892-9694-ee99d95abcdc", + "id": "34b98fcf-b8ce-410d-b35c-97761884681e", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -100081,7 +104286,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -100092,7 +104297,7 @@ }, "response": [ { - "id": "6b4c122c-372f-48af-bd58-abb771d2ce06", + "id": "8f29ca25-9570-4e23-97ef-14e453326f14", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -100126,7 +104331,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -100143,13 +104348,13 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"data\": {\n \"enim_b9\": \"\",\n \"irured\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"PENDING\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\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 \"do_b\": \"aute ipsum\"\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\": \"culpa non magna anim\",\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\": \"ad Lorem enim dolor ut\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"NOT_READY\",\n \"comment\": \"do et\",\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": "cf8a4832-9cca-451c-88d9-e3dc92829801", - "name": "Client Error - Returned if the request body is invalid.", + "id": "57b9272d-97e4-4c5c-97a9-49c2bb3349f2", + "name": "400.1 Bad Request Content", "originalRequest": { "url": { "path": [ @@ -100182,7 +104387,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -100199,12 +104404,68 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"firstName is required; accountName is required;\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c5d86bad-4e77-4422-885f-314a78478253", + "id": "b445a994-97e1-421e-9e4a-a6eb4ffafd72", + "name": "400.1.409 Reference conflict", + "originalRequest": { + "url": { + "path": [ + "non-employee-requests" + ], + "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 \"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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1.409 Reference conflict\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"Unable to create Non-Employee because the accountName \\\"existed\\\" is already being used.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "24c464bc-75e7-4584-9b3b-f2a38a06e810", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100238,7 +104499,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -100255,12 +104516,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c76fdaed-4b6e-4915-be0b-f2f4c3472303", + "id": "fe57329a-1131-4e66-beb0-4065055c1c5d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100294,7 +104555,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -100311,12 +104572,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d686af0d-407f-43cf-9eb4-a02b549c87c4", + "id": "4a1483f1-6a0d-4a1c-9d8c-0dd122babec3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100350,7 +104611,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -100367,12 +104628,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "964de8f7-079a-4245-9bf4-12f779cded01", + "id": "cfd8194f-0dd7-426d-8bb1-b2950253545a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100406,7 +104667,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ullamco_fcc\": \"\"\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 \"labore4\": \"ea do\",\n \"sunt238\": \"el\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -100423,7 +104684,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -100434,7 +104695,7 @@ } }, { - "id": "67994f20-d298-4b8e-a74a-c081bf98d0f9", + "id": "2b67124b-0514-4f1a-902a-876b65c2098e", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -100475,7 +104736,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -100484,7 +104745,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "me" }, { "disabled": true, @@ -100493,7 +104754,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "approvalStatus,firstName" }, { "disabled": true, @@ -100502,7 +104763,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "sourceId eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -100518,7 +104779,7 @@ }, "response": [ { - "id": "b6051c61-faa9-4bbb-88a6-8f43d3523222", + "id": "9a2c9018-8f24-41a2-a246-1c7637d50c6c", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -100554,7 +104815,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -100563,7 +104824,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "me" }, { "disabled": true, @@ -100572,7 +104833,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "approvalStatus,firstName" }, { "disabled": true, @@ -100581,7 +104842,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "sourceId eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -100611,12 +104872,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"data\": {\n \"sunt_38\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"REJECTED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"PENDING\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"CANCELLED\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"data\": {\n \"ullamco2d9\": \"\",\n \"adipisicing0e\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"ROLE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"NOT_READY\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\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 \"cillume3\": \"ullamco sit co\"\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\": \"dolore ut commodo cillum sit\",\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\": \"non es\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"REJECTED\",\n \"comment\": \"est aliqua incididunt exercitation anim\",\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 \"sunt_221\": \"dolore dolor sint in\",\n \"dolor_25\": \"sunt et\"\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\": \"deserunt tempor ut do\",\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\": \"ex laborum\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"proident cupidatat irure\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f2e1ab8a-9116-4e00-846c-592d4669a246", + "id": "a676a8bb-8520-4486-bdbd-0776d6b4b35d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100652,7 +104913,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -100661,7 +104922,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "me" }, { "disabled": true, @@ -100670,7 +104931,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "approvalStatus,firstName" }, { "disabled": true, @@ -100679,7 +104940,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "sourceId eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -100709,12 +104970,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bd4026a1-075e-4d5f-a1cb-6bd68e1630b6", + "id": "3b88c2b1-eda2-459e-a23a-d4a22778fa58", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100750,7 +105011,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -100759,7 +105020,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "me" }, { "disabled": true, @@ -100768,7 +105029,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "approvalStatus,firstName" }, { "disabled": true, @@ -100777,7 +105038,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "sourceId eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -100807,12 +105068,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "34603247-a7c7-4314-b624-42b8a913c1a1", + "id": "4a9ec537-b1bd-4a56-bd2f-bdd49f569b65", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100848,7 +105109,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -100857,7 +105118,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "me" }, { "disabled": true, @@ -100866,7 +105127,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "approvalStatus,firstName" }, { "disabled": true, @@ -100875,7 +105136,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "sourceId eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -100905,12 +105166,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3bbcd7ba-cee8-4e0f-b7fc-9486a9e7e96f", + "id": "fa6168f1-ca6d-465f-9d21-c4ce2d5543a4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100946,7 +105207,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -100955,7 +105216,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "me" }, { "disabled": true, @@ -100964,7 +105225,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "approvalStatus,firstName" }, { "disabled": true, @@ -100973,7 +105234,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "sourceId eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -101003,12 +105264,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "55c13a45-d39b-4d13-a920-06bf9a10f911", + "id": "a05a71fb-6adb-4048-97bf-5b9fd02802e2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101044,7 +105305,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -101053,7 +105314,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "me" }, { "disabled": true, @@ -101062,7 +105323,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "approvalStatus,firstName" }, { "disabled": true, @@ -101071,7 +105332,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "sourceId eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -101101,7 +105362,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -101112,7 +105373,7 @@ } }, { - "id": "2e4c6470-f3c1-4a94-9aa2-068b50713954", + "id": "e02e1129-d123-4180-93ce-4322a8a16857", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -101132,7 +105393,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b6ef1d43e016efba0ce470904", "key": "id", "disabled": true, "description": { @@ -101153,7 +105414,7 @@ }, "response": [ { - "id": "4b94b9e4-8f1f-449b-9b22-38fa00d7aa47", + "id": "c9c6df35-30bc-425d-8a48-80e17a1f77d6", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -101192,12 +105453,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"data\": {\n \"enim_b9\": \"\",\n \"irured\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"PENDING\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\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 \"do_b\": \"aute ipsum\"\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\": \"culpa non magna anim\",\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\": \"ad Lorem enim dolor ut\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"NOT_READY\",\n \"comment\": \"do et\",\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": "5be23422-13f9-4ba3-86d8-7ca1f00e0275", + "id": "26d4e2a3-c1b3-4d5f-a10b-4ca4c3d6a954", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101236,12 +105497,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6ce5ddcf-8c75-4dfa-9285-07df818daddc", + "id": "48272d22-92cd-4881-a670-e5c13d111eb1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101280,12 +105541,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3a01e70-c129-47c9-afda-e00040c26f24", + "id": "dbb8bbfe-7cbc-41db-88d6-5ca0da81543e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101324,12 +105585,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b8c76d9d-d29c-4aef-9aa9-068e5304917f", + "id": "fa664ddf-f62b-44e9-964d-08924f09e5d0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -101368,12 +105629,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "52baeb01-3c2a-4b93-a810-9eb28de71678", + "id": "308eda3b-9880-4b43-927d-ed3d85f4907f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101412,12 +105673,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "41603cbb-2c64-4644-b08a-49c022496f87", + "id": "63788162-7669-4c0b-97f7-f1da139477b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101456,7 +105717,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -101467,7 +105728,7 @@ } }, { - "id": "4a8c9c9c-ce4a-4f33-b670-5736bc8e3f66", + "id": "9bfc44ab-589f-4378-bca1-97a05fb82dba", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -101487,7 +105748,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b6ef1d43e016efba0ce470904", "key": "id", "disabled": true, "description": { @@ -101508,7 +105769,7 @@ }, "response": [ { - "id": "a30c6f0a-899f-4eed-9514-6f85adb5c4fc", + "id": "aed0ee77-e5e1-45ac-871e-649ac4749871", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -101542,7 +105803,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c94997f6-6cbd-41b7-852c-3a1f96f3c1ff", + "id": "3748442c-2082-40a0-bcaf-57490b310aac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101581,12 +105842,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d25c5701-1745-4c91-ad3f-1d587b6993ab", + "id": "53912b1a-61b7-4488-b55a-bf7aced5b752", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101625,12 +105886,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b5e34854-b805-46a1-b1ce-0ea6b68ba0c3", + "id": "46154086-9f2a-48b2-b4e6-2f79b2778bd2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101669,12 +105930,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7bb05621-1a48-4d1e-82dd-18b7c7cf123a", + "id": "64171a08-8b08-4ebf-9ebe-bae4489d2128", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -101713,12 +105974,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "847ae4d6-93e6-4b7e-a12b-d722b1da1880", + "id": "731635af-81dc-4dcf-955b-1e9236069641", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101757,12 +106018,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26abee87-9439-4df1-a088-59fe8161a6e3", + "id": "6c191a16-6bbc-4aee-a3dc-1fadb98f2e99", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101801,7 +106062,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -101812,7 +106073,7 @@ } }, { - "id": "5630e7e2-4cff-432c-ad35-dc2a3afcced7", + "id": "9209424f-5e8a-42b3-af32-924158f1fe93", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -101833,7 +106094,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ac10d20a-841e-1e7d-8184-32d2e22c0179", "key": "requested-for", "disabled": true, "description": { @@ -101854,7 +106115,7 @@ }, "response": [ { - "id": "53b782ea-1696-4dd8-b926-1c82c133073b", + "id": "7fe66b2a-7b93-44fe-a443-0d7187ece9a0", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -101894,12 +106155,12 @@ "value": "application/json" } ], - "body": "{\n \"approved\": \"\",\n \"rejected\": \"\",\n \"pending\": \"\",\n \"nonEmployeeCount\": \"\"\n}", + "body": "{\n \"approved\": 61266102.76330936,\n \"rejected\": -85628158.9845754,\n \"pending\": -62396137.01293654,\n \"nonEmployeeCount\": -18686220.468593314\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "41044479-e00e-4ac0-8148-886e25635009", + "id": "2a436407-fb22-4b62-b6c7-d8035a3c8fbf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101939,12 +106200,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4b9c44c3-6187-4286-aa04-26f697d4ef7e", + "id": "28d2ed74-6b87-49cd-9752-21cb9415cde4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101984,12 +106245,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5c9dcc16-78e3-459e-ac2a-65284ced272e", + "id": "d6f6a622-4ac9-408c-92d6-6f80e725d259", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102029,12 +106290,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "676501f5-80af-4e7e-bc15-d57b590b4ef2", + "id": "90ee72d8-c6ce-4efe-b777-7bfb01ae7b9c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102074,12 +106335,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "06eeb15e-4137-485a-ad16-c20bd60ac968", + "id": "84ac461b-576e-4e90-a9f8-565e3c03f631", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102119,7 +106380,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -102130,7 +106391,7 @@ } }, { - "id": "7e18245c-dee8-4390-a719-1932718796a3", + "id": "51c49651-d5ce-43de-be24-0b7a11106853", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -102161,7 +106422,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"id\": \"\"\n },\n \"name\": \"\",\n \"description\": \"\",\n \"managementWorkgroup\": \"\",\n \"approvers\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"owner\": {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"managementWorkgroup\": \"123299\",\n \"approvers\": [\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n }\n ],\n \"accountManagers\": [\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -102172,7 +106433,7 @@ }, "response": [ { - "id": "ef5ed213-35f2-4c10-8082-df49b5dc583f", + "id": "082a98a5-c7f1-42c4-9907-a12c59f252db", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -102206,7 +106467,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"id\": \"\"\n },\n \"name\": \"\",\n \"description\": \"\",\n \"managementWorkgroup\": \"\",\n \"approvers\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"owner\": {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"managementWorkgroup\": \"123299\",\n \"approvers\": [\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n }\n ],\n \"accountManagers\": [\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -102223,12 +106484,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\",\n \"cloudExternalId\": \"\"\n}", + "body": "{\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"approvers\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n }\n ],\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeCount\": 2,\n \"cloudExternalId\": \"99999\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "712ad9d0-33b8-494d-a057-655c47705949", + "id": "65e29b74-da4f-4b5e-8994-8e4f57bf429e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102262,7 +106523,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"id\": \"\"\n },\n \"name\": \"\",\n \"description\": \"\",\n \"managementWorkgroup\": \"\",\n \"approvers\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"owner\": {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"managementWorkgroup\": \"123299\",\n \"approvers\": [\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n }\n ],\n \"accountManagers\": [\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -102279,12 +106540,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "181e53e4-c19b-4a6a-b29e-1dc0504c929d", + "id": "255feeba-793f-4358-ac29-83a67bf93f6d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102318,7 +106579,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"id\": \"\"\n },\n \"name\": \"\",\n \"description\": \"\",\n \"managementWorkgroup\": \"\",\n \"approvers\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"owner\": {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"managementWorkgroup\": \"123299\",\n \"approvers\": [\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n }\n ],\n \"accountManagers\": [\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -102335,12 +106596,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "13b3a56c-c11b-48ed-9b72-51e9cae43758", + "id": "a74fbe1f-98cc-4ec8-b579-9d9837590fa0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102374,7 +106635,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"id\": \"\"\n },\n \"name\": \"\",\n \"description\": \"\",\n \"managementWorkgroup\": \"\",\n \"approvers\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"owner\": {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"managementWorkgroup\": \"123299\",\n \"approvers\": [\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n }\n ],\n \"accountManagers\": [\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -102391,12 +106652,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f1e19ff9-2f82-47dc-85ac-a98443cbe95a", + "id": "6c7450ec-30c4-43b6-b6ab-0d87c73aa57e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102430,7 +106691,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"id\": \"\"\n },\n \"name\": \"\",\n \"description\": \"\",\n \"managementWorkgroup\": \"\",\n \"approvers\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"owner\": {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"managementWorkgroup\": \"123299\",\n \"approvers\": [\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n }\n ],\n \"accountManagers\": [\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -102447,12 +106708,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d88f9b56-7d47-4fbb-bcac-fda304f73ebc", + "id": "38cb88f4-6237-4961-a631-941141d1b9aa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102486,7 +106747,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"id\": \"\"\n },\n \"name\": \"\",\n \"description\": \"\",\n \"managementWorkgroup\": \"\",\n \"approvers\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"owner\": {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"managementWorkgroup\": \"123299\",\n \"approvers\": [\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n }\n ],\n \"accountManagers\": [\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n },\n {\n \"id\": \"2c91808570313110017040b06f344ec9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -102503,7 +106764,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -102514,7 +106775,7 @@ } }, { - "id": "64ede675-d1e7-4efa-9f03-969e7e269866", + "id": "9384b341-97fe-4de3-af1d-5a11722fb9fd", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -102555,7 +106816,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -102564,7 +106825,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "me" }, { "disabled": true, @@ -102573,7 +106834,7 @@ "type": "text/plain" }, "key": "non-employee-count", - "value": "" + "value": "false" }, { "disabled": true, @@ -102582,7 +106843,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,created" } ], "variable": [] @@ -102598,7 +106859,7 @@ }, "response": [ { - "id": "3b4a691f-b40a-4538-a4df-34a3cdaf8ba9", + "id": "0a436416-61ce-4b4e-b63c-1167b2747a49", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -102634,7 +106895,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -102643,7 +106904,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "me" }, { "disabled": true, @@ -102652,7 +106913,7 @@ "type": "text/plain" }, "key": "non-employee-count", - "value": "" + "value": "false" }, { "disabled": true, @@ -102661,7 +106922,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,created" } ], "variable": [] @@ -102691,12 +106952,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\"\n },\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n },\n {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\"\n },\n {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"approvers\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n }\n ],\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeCount\": 2\n },\n {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"approvers\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n }\n ],\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeCount\": 2\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "569d8d61-bfa6-451d-aa7c-446d13d7eff4", + "id": "631b9e8d-ad92-4ca5-9456-ea58f8c67f15", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102732,7 +106993,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -102741,7 +107002,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "me" }, { "disabled": true, @@ -102750,7 +107011,7 @@ "type": "text/plain" }, "key": "non-employee-count", - "value": "" + "value": "false" }, { "disabled": true, @@ -102759,7 +107020,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,created" } ], "variable": [] @@ -102789,12 +107050,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "298877f6-74a1-4f30-af46-0f57d093d952", + "id": "464d3ab6-67b7-4639-a844-82b45f29f0a7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102830,7 +107091,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -102839,7 +107100,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "me" }, { "disabled": true, @@ -102848,7 +107109,7 @@ "type": "text/plain" }, "key": "non-employee-count", - "value": "" + "value": "false" }, { "disabled": true, @@ -102857,7 +107118,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,created" } ], "variable": [] @@ -102887,12 +107148,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "27806ae0-fd10-4d9f-8020-3ede988207e1", + "id": "bb258942-e0a4-4400-896f-56c166da301a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102928,7 +107189,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -102937,7 +107198,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "me" }, { "disabled": true, @@ -102946,7 +107207,7 @@ "type": "text/plain" }, "key": "non-employee-count", - "value": "" + "value": "false" }, { "disabled": true, @@ -102955,7 +107216,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,created" } ], "variable": [] @@ -102985,12 +107246,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0fd27821-508d-45c3-ac75-d47c5912d306", + "id": "248d5c3d-b00c-4e2f-9d1a-d12443354a33", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103026,7 +107287,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -103035,7 +107296,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "me" }, { "disabled": true, @@ -103044,7 +107305,7 @@ "type": "text/plain" }, "key": "non-employee-count", - "value": "" + "value": "false" }, { "disabled": true, @@ -103053,7 +107314,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,created" } ], "variable": [] @@ -103083,12 +107344,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ea373c9d-c673-476f-8791-3e275f3d3f62", + "id": "ccd8af4f-fecb-4614-9040-eca67ca886d5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103124,7 +107385,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -103133,7 +107394,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "me" }, { "disabled": true, @@ -103142,7 +107403,7 @@ "type": "text/plain" }, "key": "non-employee-count", - "value": "" + "value": "false" }, { "disabled": true, @@ -103151,7 +107412,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,created" } ], "variable": [] @@ -103181,7 +107442,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -103192,7 +107453,7 @@ } }, { - "id": "42892084-5ebd-4b4d-807d-78b3db1212ab", + "id": "f8f9b1a0-4ab7-4191-991a-241b9b7613ff", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -103212,7 +107473,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b7c28b350017c2a2ec5790aa1", "key": "sourceId", "disabled": true, "description": { @@ -103233,7 +107494,7 @@ }, "response": [ { - "id": "6fc45fd2-8d25-4c37-aa25-560a633d2f64", + "id": "39c339f4-9c1a-48a8-b79a-c27f73c4820a", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -103272,12 +107533,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"WORKGROUP\",\n \"id\": \"\"\n },\n {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n}", + "body": "{\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"approvers\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n }\n ],\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeCount\": 2\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d73d59dc-07ef-4ba5-8f45-abdd7ec60efa", + "id": "d6f48b29-07b5-4a2e-89c7-635ec9b42344", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103316,12 +107577,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "66df5563-e276-4a9f-b52a-834027fbcb7e", + "id": "23cb5516-2f0d-4449-9ef9-fb4b0b29d004", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103360,12 +107621,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d3a7694-8d21-4532-af49-41c72686b189", + "id": "7bcfbe7f-a20c-47b2-9e2b-6ae5ba5caf62", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103404,12 +107665,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e6998e59-7ee1-47d9-ac17-64fa88e497df", + "id": "4a02ed5f-fc13-4890-a18a-0bdcde725203", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103448,12 +107709,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "43a2eb0c-63e4-4877-8099-c4f4fb8288bd", + "id": "49dee3ec-aa1e-4384-b079-3955ebf06c8f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103492,7 +107753,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -103503,7 +107764,7 @@ } }, { - "id": "5f7ea560-d2a1-4ca6-876c-fb6401e3b373", + "id": "3116efad-fc29-4826-a0fc-8a5ac70205be", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -103523,7 +107784,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b6ef1d43e016efba0ce470904", "key": "sourceId", "disabled": true, "description": { @@ -103546,7 +107807,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": {\n \"new name\": null\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/approvers\",\n \"value\": [\n \"2c91809f703bb37a017040a2fe8748c7\",\n \"48b1f463c9e8427db5a5071bd81914b8\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -103557,7 +107818,7 @@ }, "response": [ { - "id": "8d84a9de-0ac8-4e2e-b25a-e54ff6c7fe9a", + "id": "d46d6ad5-672b-4447-9d9f-9b2cc8824375", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -103592,7 +107853,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": {\n \"new name\": null\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/approvers\",\n \"value\": [\n \"2c91809f703bb37a017040a2fe8748c7\",\n \"48b1f463c9e8427db5a5071bd81914b8\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -103609,12 +107870,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"WORKGROUP\",\n \"id\": \"\"\n },\n {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n}", + "body": "{\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"approvers\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n }\n ],\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeCount\": 2\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "45622caa-9661-48d0-a7ed-2ff8840a070b", + "id": "4a395731-5bc4-474d-9ece-0901b3edcd32", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103649,7 +107910,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": {\n \"new name\": null\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/approvers\",\n \"value\": [\n \"2c91809f703bb37a017040a2fe8748c7\",\n \"48b1f463c9e8427db5a5071bd81914b8\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -103666,12 +107927,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "73b46ddf-8096-4404-b8f1-7e32d83671d6", + "id": "cf49bd4d-087d-4c8f-88b7-6808315eda10", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103706,7 +107967,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": {\n \"new name\": null\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/approvers\",\n \"value\": [\n \"2c91809f703bb37a017040a2fe8748c7\",\n \"48b1f463c9e8427db5a5071bd81914b8\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -103723,12 +107984,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ef7b691-f44c-4292-8b30-47d4db5f634e", + "id": "ab2a83b8-c44d-4d9c-b74d-61d5e97c09b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103763,7 +108024,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": {\n \"new name\": null\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/approvers\",\n \"value\": [\n \"2c91809f703bb37a017040a2fe8748c7\",\n \"48b1f463c9e8427db5a5071bd81914b8\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -103780,12 +108041,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "58c6d430-3950-466b-89db-dc92252359b4", + "id": "8b1ab1c1-42eb-4c72-9566-51ae8e987074", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103820,7 +108081,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": {\n \"new name\": null\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/approvers\",\n \"value\": [\n \"2c91809f703bb37a017040a2fe8748c7\",\n \"48b1f463c9e8427db5a5071bd81914b8\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -103837,12 +108098,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "71e40671-7582-404a-8f64-2ef72a362143", + "id": "5cfb6582-13d8-4310-be28-e38bb03ac184", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103877,7 +108138,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": {\n \"new name\": null\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/approvers\",\n \"value\": [\n \"2c91809f703bb37a017040a2fe8748c7\",\n \"48b1f463c9e8427db5a5071bd81914b8\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -103894,7 +108155,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -103905,7 +108166,7 @@ } }, { - "id": "be4e6e1c-2884-4ce8-b652-feafa1585d52", + "id": "6624454c-df81-4036-95d9-1b9a2c3767b9", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -103925,7 +108186,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b6ef1d43e016efba0ce470904", "key": "sourceId", "disabled": true, "description": { @@ -103946,7 +108207,7 @@ }, "response": [ { - "id": "34d48d54-fa5b-4ae0-80f7-738579803f69", + "id": "1be62e07-d640-4aee-b9e3-0e41b73a21ed", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -103980,7 +108241,7 @@ "_postman_previewlanguage": "text" }, { - "id": "372cabe5-1cfc-41eb-9540-199eff383b75", + "id": "8eb43021-f292-4344-b5a0-78d6be731f67", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104019,12 +108280,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3eb6d010-0bfb-44cf-b702-ecb512ef360f", + "id": "9b1355a3-2d11-43a3-8bad-34e32328e59b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104063,12 +108324,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c6fc1f8-e1d0-4144-93a7-00a40bdefa64", + "id": "0d7d5f63-79da-412e-90b0-771167cd88b2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104107,12 +108368,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "523b307d-9e2f-4cb2-8530-ba8a425359bb", + "id": "1787fa9b-4624-4a57-9e4f-56855637a344", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104151,12 +108412,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a344cdc7-54c2-4584-9f10-75b64d79d91c", + "id": "04f5c107-d433-4c7b-a5a9-4b8451e3b127", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104195,7 +108456,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -104206,7 +108467,7 @@ } }, { - "id": "b999c5fe-5b5b-4cf4-b608-22030e8e7427", + "id": "6a93b1e5-f572-42c8-9f7c-5fc462a03ba0", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -104228,7 +108489,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c918085842e69ae018432d22ccb212f", "key": "id", "disabled": true, "description": { @@ -104249,7 +108510,7 @@ }, "response": [ { - "id": "b574c412-7919-4f4a-9179-af3c6f6f0c81", + "id": "a692ffa7-f88f-49e2-a5b7-0fdecef36149", "name": "Exported CSV", "originalRequest": { "url": { @@ -104290,12 +108551,12 @@ "value": "text/csv" } ], - "body": "{\n \"example\": \"accountName,firstName,lastName,phone,email,manager,startDate,endDate\\nJon.Smith, Jon, Smith, 555-555-5555, jon@jon.doe.nope.com, Jim Smith, 2020-04-05T08:00:00-10:00,2020-08-07T19:00:00-10:00\\nWilliam.Chaffin, William, Chaffin, 555-555-5555, william@chaffins.nope.com, Bertram Chaffin, 2020-04-05T08:00:00-10:00,2020-08-07T19:00:00-10:00\\n\"\n}", + "body": "accountName,firstName,lastName,phone,email,manager,startDate,endDate\nJon.Smith, Jon, Smith, 555-555-5555, jon@jon.doe.nope.com, Jim Smith, 2020-04-05T08:00:00-10:00,2020-08-07T19:00:00-10:00\nWilliam.Chaffin, William, Chaffin, 555-555-5555, william@chaffins.nope.com, Bertram Chaffin, 2020-04-05T08:00:00-10:00,2020-08-07T19:00:00-10:00\n", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "8256935a-ac37-4c67-808b-d7bd32de3bfc", + "id": "a6a50489-3325-4ee7-9b40-285395f642bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104336,12 +108597,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f18844ce-0706-4834-9498-5392bf275f2a", + "id": "106e9bd1-5527-4626-b22b-6c5c4adbb9cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104382,12 +108643,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6113b076-bd40-4f83-8e60-957b23c74989", + "id": "079e1d6c-986c-42ce-be8a-1991eb70c329", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104428,12 +108689,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "81e7d14d-4c9d-4573-91f3-f93d7287c139", + "id": "8f483f2f-b289-445f-af93-31a6ec00dee3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -104474,12 +108735,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b87b7287-8746-434e-9c8e-38e5372082b4", + "id": "e9828d67-bc89-478a-84a4-983675e435f6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104520,12 +108781,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e053bab2-9382-4c10-a6c1-7ee9de1c9b7e", + "id": "535efb73-88ad-449f-929b-844152d666ec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104566,7 +108827,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -104577,7 +108838,7 @@ } }, { - "id": "7e62ae14-adaa-4a64-af1d-4f0000cd203f", + "id": "adc49ca3-37d0-419b-bebc-b7c06bc6dcc2", "name": "Imports, or Updates, Non-Employee Records", "request": { "name": "Imports, or Updates, Non-Employee Records", @@ -104598,7 +108859,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "e136567de87e4d029e60b3c3c55db56d", "key": "id", "disabled": true, "description": { @@ -104628,7 +108889,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "nisi velit exercitation do", "type": "text" } ] @@ -104636,7 +108897,7 @@ }, "response": [ { - "id": "a071565b-5014-47de-b76f-e3db7fbfdce9", + "id": "87246008-9f76-488f-9a6a-59a51f71f9f2", "name": "The CSV was accepted to be bulk inserted now or at a later time.", "originalRequest": { "url": { @@ -104679,7 +108940,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "nisi velit exercitation do", "type": "text" } ] @@ -104693,12 +108954,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"status\": \"IN_PROGRESS\"\n}", + "body": "{\n \"id\": \"2c91808568c529c60168cca6f90cffff\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"created\": \"2019-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"status\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4166ec8e-560a-4d28-a5b5-f076bfd023d6", + "id": "ffd2a562-c721-4c77-8abd-a9fb13b1ae51", "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": { @@ -104741,7 +109002,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "nisi velit exercitation do", "type": "text" } ] @@ -104755,12 +109016,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7b703dc5-3f72-48e7-a448-2185c0c0c7b6", + "id": "81cade42-4ecb-462c-8333-55df03e455d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104803,7 +109064,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "nisi velit exercitation do", "type": "text" } ] @@ -104817,12 +109078,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "90c2feda-e81e-4e6b-8c7a-9661a0ed80bf", + "id": "675ad8d6-6314-42b1-8204-fb0533c7b31d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104865,7 +109126,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "nisi velit exercitation do", "type": "text" } ] @@ -104879,12 +109140,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bddef51a-31e6-43d8-adf0-c29fccd6e90e", + "id": "9016af81-9c8e-4a54-b903-b27ac5eaf2a0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -104927,7 +109188,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "nisi velit exercitation do", "type": "text" } ] @@ -104941,12 +109202,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "52501e1f-aef1-4445-8b77-840c024300e6", + "id": "b55b6c43-8e1a-4b97-9140-bf612812cd38", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104989,7 +109250,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "nisi velit exercitation do", "type": "text" } ] @@ -105003,12 +109264,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "19620747-b493-45bc-817f-34ca452874b1", + "id": "2d87bd90-1194-4bee-83a6-a2fa15ffe056", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105051,7 +109312,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "nisi velit exercitation do", "type": "text" } ] @@ -105065,7 +109326,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -105076,7 +109337,7 @@ } }, { - "id": "8f5d5170-827d-40d3-95e1-8b17c64c2e07", + "id": "9f0cdcf1-c605-43cd-9487-e29da4a0252a", "name": "Bulk upload status on source", "request": { "name": "Bulk upload status on source", @@ -105098,7 +109359,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c918085842e69ae018432d22ccb212f", "key": "id", "disabled": true, "description": { @@ -105119,7 +109380,7 @@ }, "response": [ { - "id": "8421c3b8-867e-4d0f-8332-9a0ae21d09cd", + "id": "d65efce8-6652-4c5c-8b2a-279cc904d473", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -105165,7 +109426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73d103a4-1ef3-40fe-b4ed-12c02caecbaf", + "id": "c9795dd6-1c16-442b-aff1-5f938c6296db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105206,12 +109467,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fb9d99ac-ebed-4de3-bd1e-5e00cd6437ff", + "id": "ed057b69-a0cc-463a-a520-590ae324779c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105252,12 +109513,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6f5fe129-488a-4890-b94c-1a87e8f62341", + "id": "04c74e0f-c2a2-4c2f-8ca8-d40ee338c1de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105298,12 +109559,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "69fccc3b-0f78-4ee4-8080-35eb3a02d2b3", + "id": "c4025056-bd63-42ea-bb9a-4e4e45ce662b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105344,12 +109605,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "11de622a-1564-48e6-8690-9b0be83b0071", + "id": "99f8921c-34ac-4fc8-a972-7e6250845173", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105390,7 +109651,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -105401,7 +109662,7 @@ } }, { - "id": "4be45e3f-71ab-4836-be17-a8191b6e693f", + "id": "0fb7103b-5561-4583-b5bd-270e169d9c4e", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -105423,7 +109684,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c918085842e69ae018432d22ccb212f", "key": "id", "disabled": true, "description": { @@ -105444,7 +109705,7 @@ }, "response": [ { - "id": "4608eb11-47c3-48ea-9d2b-1f5d207c5bc5", + "id": "095961fe-97d0-4a3c-a690-419747564988", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -105485,12 +109746,12 @@ "value": "text/csv" } ], - "body": "{\n \"example\": \"accountName,firstName,lastName,phone,email,manager,startDate,endDate\\n\"\n}", + "body": "accountName,firstName,lastName,phone,email,manager,startDate,endDate\n", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "1d06fb30-8697-41a8-8670-afd596a4e9ca", + "id": "b1b5cee3-4a8f-4734-b41a-47c050a0bbd6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105531,12 +109792,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "26670f77-ed9b-4011-a2d6-598e01f3477c", + "id": "3da7223f-80e4-4723-900e-6c5b1bfca028", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105577,12 +109838,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "90f216fc-6bb5-4072-a5d9-27e173ed95a6", + "id": "72f59e82-90fa-4259-89e6-08442a67a28f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105623,12 +109884,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "74768126-cac1-4802-9749-3bd4db6e9505", + "id": "101bd429-c059-4c75-8175-e39c2e611980", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -105669,12 +109930,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "332defd0-7010-4a81-8af4-ec005e5aaac7", + "id": "30550ab8-53eb-4813-b85b-f4071baa3120", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105715,12 +109976,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f4068d1-333c-4708-b5b3-d2c271d479e8", + "id": "97a9e3eb-e6b3-46c0-9e5b-ecd3e9dc8204", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105761,7 +110022,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -105772,7 +110033,7 @@ } }, { - "id": "c2806fe8-a57a-4126-bb20-8cc80667f18a", + "id": "43d6a1c2-bb22-46d5-8181-058c56fa99e1", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -105795,7 +110056,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "ac10d20a-841e-1e7d-8184-32d2e22c0179" }, { "disabled": true, @@ -105822,7 +110083,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -105831,7 +110092,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "approvalStatus eq \"PENDING\"" }, { "disabled": true, @@ -105840,7 +110101,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -105856,7 +110117,7 @@ }, "response": [ { - "id": "a81cd4a3-873f-4c94-993e-96e169ef1b3c", + "id": "479e2af0-9d01-45e0-aa97-c00b15baa711", "name": "List of approval items.", "originalRequest": { "url": { @@ -105874,7 +110135,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "ac10d20a-841e-1e7d-8184-32d2e22c0179" }, { "disabled": true, @@ -105901,7 +110162,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -105910,7 +110171,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "approvalStatus eq \"PENDING\"" }, { "disabled": true, @@ -105919,7 +110180,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -105949,12 +110210,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"REJECTED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"TAG\",\n \"id\": \"\"\n }\n }\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"ROLE\",\n \"id\": \"\"\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"NOT_READY\",\n \"approvalOrder\": 1,\n \"comment\": \"voluptate aliquip fugiat adipisicing\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"Duis aliquip et\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"ut in magna veniam\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"qui pariatur\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "16ec378c-5d13-4072-9c28-3b50a026a10f", + "id": "48ae8aec-794e-4fb2-beab-b5e43432cca8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105972,7 +110233,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "ac10d20a-841e-1e7d-8184-32d2e22c0179" }, { "disabled": true, @@ -105999,7 +110260,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -106008,7 +110269,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "approvalStatus eq \"PENDING\"" }, { "disabled": true, @@ -106017,7 +110278,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -106047,12 +110308,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b0a75b31-d072-4475-a216-a7968bcd532f", + "id": "3f458e98-107f-4189-90a3-4c4a12ae4e25", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106070,7 +110331,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "ac10d20a-841e-1e7d-8184-32d2e22c0179" }, { "disabled": true, @@ -106097,7 +110358,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -106106,7 +110367,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "approvalStatus eq \"PENDING\"" }, { "disabled": true, @@ -106115,7 +110376,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -106145,12 +110406,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c3e3400-fe5e-4712-9c8c-e59cfc344d36", + "id": "106fa806-5645-40f9-a9fa-a560ec37cd41", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106168,7 +110429,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "ac10d20a-841e-1e7d-8184-32d2e22c0179" }, { "disabled": true, @@ -106195,7 +110456,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -106204,7 +110465,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "approvalStatus eq \"PENDING\"" }, { "disabled": true, @@ -106213,7 +110474,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -106243,12 +110504,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "adaaa3e5-91b8-4241-8bee-2578264a0af8", + "id": "63b5bc52-02ad-4ff0-925f-9613cba7803f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106266,7 +110527,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "ac10d20a-841e-1e7d-8184-32d2e22c0179" }, { "disabled": true, @@ -106293,7 +110554,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -106302,7 +110563,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "approvalStatus eq \"PENDING\"" }, { "disabled": true, @@ -106311,7 +110572,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -106341,12 +110602,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0adcf2ae-edc9-4987-a0b2-80baf7dbe5fe", + "id": "7a323161-cb32-4761-8d84-6004f0b85b2b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106364,7 +110625,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "" + "value": "ac10d20a-841e-1e7d-8184-32d2e22c0179" }, { "disabled": true, @@ -106391,7 +110652,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -106400,7 +110661,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "approvalStatus eq \"PENDING\"" }, { "disabled": true, @@ -106409,7 +110670,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -106439,7 +110700,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -106450,7 +110711,7 @@ } }, { - "id": "6a9a7b17-846f-4a0d-aae0-70377c4afa9f", + "id": "aadaecea-e43d-4815-a028-4333b6713a4e", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -106474,13 +110735,13 @@ "type": "text/plain" }, "key": "include-detail", - "value": "" + "value": "include-detail=false" } ], "variable": [ { "type": "any", - "value": "", + "value": "ac10d20a-841e-1e7d-8184-32d2e22c0179", "key": "id", "disabled": true, "description": { @@ -106501,7 +110762,7 @@ }, "response": [ { - "id": "b05da9f5-d452-41b0-805a-d8dab99f3dcd", + "id": "77c32a63-e98b-4fd8-ae1f-5faaa598e37d", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -106520,7 +110781,7 @@ "type": "text/plain" }, "key": "include-detail", - "value": "" + "value": "include-detail=false" } ], "variable": [] @@ -106550,12 +110811,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"schemaAttributes\": [\n {\n \"type\": \"DATE\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n }\n ]\n },\n \"data\": {\n \"labore_8\": \"\",\n \"elitb\": \"\"\n },\n \"approvalStatus\": \"REJECTED\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n}", + "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"veniam si\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"qui ad sit in\",\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\": \"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 \"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 \"nulla_434\": \"dolor dolore cupidatat id laborum\",\n \"enim0a8\": \"dolore est\"\n },\n \"approvalStatus\": \"NOT_READY\",\n \"comment\": \"esse enim sint\",\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": "4c83dd50-2df8-426b-be60-020dbd3bf9de", + "id": "74401de9-8e9a-4de7-91b0-b29b5d27c5a8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106574,7 +110835,7 @@ "type": "text/plain" }, "key": "include-detail", - "value": "" + "value": "include-detail=false" } ], "variable": [] @@ -106604,12 +110865,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6210cc5c-f667-4a7b-aa46-a507c889b555", + "id": "8c7af512-05ea-496f-8377-d9845a1f87ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106628,7 +110889,7 @@ "type": "text/plain" }, "key": "include-detail", - "value": "" + "value": "include-detail=false" } ], "variable": [] @@ -106658,12 +110919,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "149230d5-e940-4011-9cba-7029eac18d2d", + "id": "d698cd0c-ca78-4dfc-bbf1-acda476dae1c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106682,7 +110943,7 @@ "type": "text/plain" }, "key": "include-detail", - "value": "" + "value": "include-detail=false" } ], "variable": [] @@ -106712,12 +110973,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "95aec7fc-ac1d-4d7f-96fe-4254d1aa2c09", + "id": "ba6684fd-5d4d-4d21-ad10-45018f69db1d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106736,7 +110997,7 @@ "type": "text/plain" }, "key": "include-detail", - "value": "" + "value": "include-detail=false" } ], "variable": [] @@ -106766,12 +111027,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "92e311e4-4d79-42d2-8aab-83921d539123", + "id": "cf68b63e-f123-4966-a94c-401074b87bcb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106790,7 +111051,7 @@ "type": "text/plain" }, "key": "include-detail", - "value": "" + "value": "include-detail=false" } ], "variable": [] @@ -106820,7 +111081,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -106831,7 +111092,7 @@ } }, { - "id": "1482e5a0-ee46-47b9-a3e9-21638015ca88", + "id": "9c7a00a1-f1a3-4102-bd29-707f2e6b48d7", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -106852,7 +111113,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "velit aliquip", "key": "id", "disabled": true, "description": { @@ -106875,7 +111136,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"minim do Lorem proident\"\n}", "options": { "raw": { "headerFamily": "json", @@ -106886,7 +111147,7 @@ }, "response": [ { - "id": "b6d1810e-4134-41c7-a6b0-93bef436fbd9", + "id": "c624fb62-1e40-4a4d-aaea-e77540f4c77c", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -106922,7 +111183,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"minim do Lorem proident\"\n}", "options": { "raw": { "headerFamily": "json", @@ -106939,12 +111200,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"REJECTED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\"\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\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"consequat ipsum eu Lorem\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"deserunt dolore\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15459161-a70e-4e18-8f38-0421400cfc5d", + "id": "a74369a3-9eec-4ba4-b169-f019469c648b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106980,7 +111241,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"minim do Lorem proident\"\n}", "options": { "raw": { "headerFamily": "json", @@ -106997,12 +111258,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3bbed411-ebc7-4245-ba42-9af00512aeb1", + "id": "07769a78-e0ef-4bfd-bf55-e77ce9d8641d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107038,7 +111299,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"minim do Lorem proident\"\n}", "options": { "raw": { "headerFamily": "json", @@ -107055,12 +111316,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9094a781-5d8e-421c-91d4-84ce6de35b29", + "id": "e349b122-c8db-43d8-ad06-fa5bd1a743cc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107096,7 +111357,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"minim do Lorem proident\"\n}", "options": { "raw": { "headerFamily": "json", @@ -107113,12 +111374,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "455a12c3-1b37-4727-a2aa-3a8fdeb18ddd", + "id": "ace26f92-9548-4b29-bff2-bb218923c1dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107154,7 +111415,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"minim do Lorem proident\"\n}", "options": { "raw": { "headerFamily": "json", @@ -107171,12 +111432,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97e81242-8e22-4da7-bd0e-6829a4fc1cda", + "id": "7599bdee-6214-4834-94d9-becab1ad313f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107212,7 +111473,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"minim do Lorem proident\"\n}", "options": { "raw": { "headerFamily": "json", @@ -107229,7 +111490,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -107240,7 +111501,7 @@ } }, { - "id": "60d353e0-4170-4b8c-bfa1-4108a294c597", + "id": "50341e9c-4083-410b-af69-d26642e94b96", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -107261,7 +111522,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "velit aliquip", "key": "id", "disabled": true, "description": { @@ -107284,7 +111545,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"exercitation dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -107295,7 +111556,7 @@ }, "response": [ { - "id": "a8e918eb-8137-45be-b542-4b980285f420", + "id": "381dc405-f5d3-4332-99b3-b524ce6ed563", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -107331,7 +111592,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"exercitation dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -107348,12 +111609,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"REJECTED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\"\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\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"consequat ipsum eu Lorem\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"deserunt dolore\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7df331e3-85d2-4ecf-a099-a925673a6947", + "id": "a2c3ef98-e37c-49f8-a5f1-c6c744670215", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107389,7 +111650,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"exercitation dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -107406,12 +111667,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9fffbb87-f734-420b-a4e8-d8018ff7aa05", + "id": "37e87dd6-5f4b-4f01-a206-8e13d2a292ff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107447,7 +111708,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"exercitation dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -107464,12 +111725,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ddacfded-fc7a-45f5-a9e9-3a799daf6dea", + "id": "e4035c41-6ef0-4623-8d76-7f9882a81043", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107505,7 +111766,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"exercitation dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -107522,12 +111783,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7d7df77c-f92a-461c-a471-630e4c8d8e01", + "id": "8be76db2-9466-403c-ac69-e0381bb8cf9a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107563,7 +111824,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"exercitation dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -107580,12 +111841,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b8e38cda-4389-4f1a-8a90-81231f580088", + "id": "5bde2f69-163c-4891-a807-352c12f9b64e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107621,7 +111882,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"exercitation dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -107638,7 +111899,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -107649,7 +111910,7 @@ } }, { - "id": "4f67e36b-44da-451d-a9c6-bd9a0fdc5a3c", + "id": "6a52b1d8-4d61-4b9a-bbca-11dee03fd349", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -107670,7 +111931,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ac10d20a-841e-1e7d-8184-32d2e22c0179", "key": "requested-for", "disabled": true, "description": { @@ -107691,7 +111952,7 @@ }, "response": [ { - "id": "e97ebea4-6d2c-47f3-ba4b-b8bda5ba122d", + "id": "2432a63b-f2c8-43eb-93e9-bae447970fef", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -107731,12 +111992,12 @@ "value": "application/json" } ], - "body": "{\n \"approved\": \"\",\n \"pending\": \"\",\n \"rejected\": \"\"\n}", + "body": "{\n \"approved\": 69633761.74676955,\n \"pending\": 88054173.28376132,\n \"rejected\": -47878680.35543341\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "92a196af-8f26-4341-8e30-5988053e0604", + "id": "d1d30ffb-3baa-4aa0-827a-25df36a043ba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107776,12 +112037,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b0d98101-6310-493f-8339-1fb0f76fad5a", + "id": "2b8203bb-b65e-4ca3-bf80-9facdccef733", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107821,12 +112082,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "855fbccf-085a-4dbe-b1b1-b16bef729d47", + "id": "41298725-a8d6-41f9-8ce0-53a055be1102", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107866,12 +112127,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fe995de0-1ef9-4664-b554-0c35b9b4e1c6", + "id": "e408e7a9-5d4a-48fb-999d-e350b8bd26e9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107911,12 +112172,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "157d5ec9-d251-4bfd-96b5-800a0ea4f0f2", + "id": "b9d00d22-a98a-4adb-ad77-6d80c20bfecc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107956,7 +112217,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -107967,7 +112228,7 @@ } }, { - "id": "98df0695-aeb2-409d-9b8b-97d027fce1c6", + "id": "165033f2-0631-485f-8685-a852b5579e14", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -107988,7 +112249,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c918085842e69ae018432d22ccb212f", "key": "sourceId", "disabled": true, "description": { @@ -108009,7 +112270,7 @@ }, "response": [ { - "id": "7b092f55-a4a3-48c8-9ebb-8a895ad536a6", + "id": "6fa2eb2f-3ead-406c-afa7-457913a09110", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -108049,12 +112310,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"type\": \"TEXT\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n }\n]", + "body": "[\n {\n \"type\": \"TEXT\",\n \"label\": \"string\",\n \"technicalName\": \"string\",\n \"helpText\": \"string\",\n \"placeholder\": \"string\",\n \"required\": true\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7c0f0fd7-8272-4b4b-a5c4-e204203dfebc", + "id": "405b759b-ac5a-4e59-a9ad-498793d8187f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108094,12 +112355,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b49ecd95-3d7e-46e1-aadf-88e07fd25889", + "id": "d45ac2ef-3d87-4af6-a8c6-b606721c9d6c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108139,12 +112400,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb9fe103-3f65-4ca8-944c-9d639dfdb8e8", + "id": "99f95f8a-0c08-496f-9465-192597d26944", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108184,12 +112445,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "06276056-c156-4ecd-a3cf-db758b690fb0", + "id": "3f0ea01e-57f3-4383-8da3-dae9ba79c465", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -108229,12 +112490,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7efaba56-470b-49ef-a1fe-7b7ef7cf662d", + "id": "38d1fa32-2f55-4323-a31c-df8ba9981917", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108274,12 +112535,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "add0c8bb-debe-44b0-8c9d-4bb70297bbc2", + "id": "1baadc36-5ff8-49da-b0c1-8038a4b54b97", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108319,7 +112580,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -108330,7 +112591,7 @@ } }, { - "id": "94f91da3-abc1-4bc2-972a-d28ec6dbf8d3", + "id": "77bc1963-a6d9-4d52-95b0-26e9ba9d1841", "name": "Create Non-Employee Source Schema Attribute", "request": { "name": "Create Non-Employee Source Schema Attribute", @@ -108351,7 +112612,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b6ef1d43e016efba0ce470904", "key": "sourceId", "disabled": true, "description": { @@ -108374,7 +112635,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"type\": \"\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", + "raw": "{\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -108385,7 +112646,7 @@ }, "response": [ { - "id": "52875e27-3b64-4f2a-bc2f-c99e4c472947", + "id": "583d9572-86a3-49db-b322-4c5bbbf93827", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -108421,7 +112682,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"type\": \"\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", + "raw": "{\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -108438,12 +112699,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"IDENTITY\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", + "body": "{\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "20ca5ee5-1c10-4f0f-993c-11d6b0ef0179", + "id": "6b253ccd-1013-473a-8c82-4afb704f9c20", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108479,7 +112740,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"type\": \"\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", + "raw": "{\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -108496,12 +112757,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "94bd68d3-05be-45cf-978a-a4e75b8cc630", + "id": "c5323cbe-f30e-4aa7-9652-8814a9672d57", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108537,7 +112798,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"type\": \"\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", + "raw": "{\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -108554,12 +112815,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0e27cdc7-87b9-4048-bb23-e154433f8b31", + "id": "5d2ba9e8-aab4-48b1-928b-ee00a4fcab47", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108595,7 +112856,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"type\": \"\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", + "raw": "{\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -108612,12 +112873,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7cd7ac63-fdb1-4543-831f-1c845debd797", + "id": "5cad3e2b-5bd7-4059-99f7-d584f1e8c7ed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108653,7 +112914,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"type\": \"\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", + "raw": "{\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -108670,12 +112931,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4be093ff-f675-4f75-b5fa-55cec5ee5525", + "id": "6b482ce1-0588-486c-aae6-d61b9f79d256", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108711,7 +112972,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"type\": \"\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", + "raw": "{\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -108728,7 +112989,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -108739,7 +113000,7 @@ } }, { - "id": "637cbb3f-8d83-4aaa-9edc-fc6f076bd312", + "id": "8a334f26-e9c1-4090-888f-c6f056fb54f5", "name": "Delete all custom schema attributes", "request": { "name": "Delete all custom schema attributes", @@ -108760,7 +113021,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b6ef1d43e016efba0ce470904", "key": "sourceId", "disabled": true, "description": { @@ -108781,7 +113042,7 @@ }, "response": [ { - "id": "647df6ad-e426-4e92-a310-5771bfd0a298", + "id": "393a69bb-2a96-4c2d-b46d-eda997f5fae7", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -108816,7 +113077,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5060b286-d937-4550-8a75-ff4fd2745357", + "id": "a06100d2-6539-496b-b9fe-b5529c748f87", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108856,12 +113117,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9550b5b5-98c8-484c-baf0-d5db49e80c06", + "id": "28043634-298d-4d9a-8a3d-ad201129a60e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108901,12 +113162,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bbfe19d5-331d-4720-9d4d-0f6dfc000146", + "id": "a70d0980-8a32-4281-a895-848bc3c994ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108946,12 +113207,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d66c6056-4580-4f81-a812-868224855259", + "id": "f006917d-abbd-4c83-a80c-756d61b1bae5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108991,12 +113252,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb2556a4-4b95-4d78-88c7-61782021cfbd", + "id": "f76e392c-ffc6-4614-ab0a-84eeefa96091", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109036,7 +113297,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -109047,7 +113308,7 @@ } }, { - "id": "94258bea-0849-4448-b8ee-79c2302f7763", + "id": "3f419a53-3862-4579-ac04-1d6647408ec7", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -109069,7 +113330,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c918085842e69ae018432d22ccb212f", "key": "sourceId", "disabled": true, "description": { @@ -109079,7 +113340,7 @@ }, { "type": "any", - "value": "", + "value": "2c918085842e69ae018432d22ccb212f", "key": "attributeId", "disabled": true, "description": { @@ -109100,7 +113361,7 @@ }, "response": [ { - "id": "bc25c35b-d0ca-4021-b226-476a6372485e", + "id": "f8a90043-254f-4d18-b7c6-b8edb6fb9055", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -109141,12 +113402,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"IDENTITY\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", + "body": "id,system,modified,created,type,label,technicalName,helpText,placeholder,required\n", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e464715-0da6-4235-b0d0-313c675fedd3", + "id": "f359e0bb-6921-4362-8beb-22aa494f1172", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109187,12 +113448,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7b5ce1f7-ad52-4779-8310-46ae7c946975", + "id": "10577209-4368-4b3b-8a76-dfdb3d13d5d2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109233,12 +113494,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c7ed2d4-31f6-453e-8ce2-675886b5e02a", + "id": "41d845bc-b1cd-44a3-996a-dce6dd405841", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109279,12 +113540,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f650c4a4-354c-4cc1-98bf-d49a707aef16", + "id": "e92da8f5-a50e-4881-947d-84d85f57c1ba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109325,12 +113586,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15d4d39e-9732-408d-8538-82260a86533a", + "id": "363d175f-42ac-439b-a8b1-a1fd6fd77622", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109371,7 +113632,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -109382,7 +113643,7 @@ } }, { - "id": "bf16c066-666f-4666-903b-3bbac715c29c", + "id": "aefb5258-fd96-41cb-8f78-af55a7005b6b", "name": "Patch Non-Employee Source's Schema Attribute", "request": { "name": "Patch Non-Employee Source's Schema Attribute", @@ -109404,7 +113665,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b6ef1d43e016efba0ce470904", "key": "sourceId", "disabled": true, "description": { @@ -109414,7 +113675,7 @@ }, { "type": "any", - "value": "", + "value": "2c91808b6ef1d43e016efba0ce470904", "key": "attributeId", "disabled": true, "description": { @@ -109437,7 +113698,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/label\",\n \"value\": {\n \"new attribute label\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -109448,7 +113709,7 @@ }, "response": [ { - "id": "30230193-16c1-4388-87bd-1b7f1df1e9cf", + "id": "a5111173-6fe8-4055-859c-1c7ae12375e6", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -109485,7 +113746,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/label\",\n \"value\": {\n \"new attribute label\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -109502,12 +113763,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"IDENTITY\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", + "body": "{\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a2e542c-5c99-483d-a8fb-00c6ec1e08c8", + "id": "bbae4f85-f7e6-4cee-8e5b-d34378f1d8d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109544,7 +113805,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/label\",\n \"value\": {\n \"new attribute label\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -109561,12 +113822,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4ba2b9d4-4d38-4038-8e5e-3f264290f221", + "id": "fc154f03-e6b1-4995-9906-d790a26d5ad6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109603,7 +113864,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/label\",\n \"value\": {\n \"new attribute label\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -109620,12 +113881,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "525b7650-2862-4583-8214-6246f8c03f9a", + "id": "6e41d835-bcff-4ab0-b9bb-157336565ee6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109662,7 +113923,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/label\",\n \"value\": {\n \"new attribute label\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -109679,12 +113940,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "cea1d4d1-a836-46df-af14-6837e3caebdf", + "id": "fb9cd25b-e8a6-4891-93d8-0c3501b7156b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -109721,7 +113982,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/label\",\n \"value\": {\n \"new attribute label\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -109738,12 +113999,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "672bb545-4d93-4c8a-b2ea-fa72660f8318", + "id": "4eea5dee-6a00-4d5f-a713-6e4c0c635e66", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109780,7 +114041,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/label\",\n \"value\": {\n \"new attribute label\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -109797,12 +114058,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8cadbfb1-663e-4bac-af23-187d43d998ea", + "id": "fb544f7b-7aaa-494e-a4f5-ca0ed002cf75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109839,7 +114100,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/label\",\n \"value\": {\n \"new attribute label\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -109856,7 +114117,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -109867,7 +114128,7 @@ } }, { - "id": "303dd539-87b9-43ce-9e9e-8db99bd4dcb5", + "id": "13fef4c0-16fc-4642-8154-3b9fce6b7fe6", "name": "Delete Non-Employee Source's Schema Attribute", "request": { "name": "Delete Non-Employee Source's Schema Attribute", @@ -109889,7 +114150,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808b6ef1d43e016efba0ce470904", "key": "sourceId", "disabled": true, "description": { @@ -109899,7 +114160,7 @@ }, { "type": "any", - "value": "", + "value": "2c91808b6ef1d43e016efba0ce470904", "key": "attributeId", "disabled": true, "description": { @@ -109920,7 +114181,7 @@ }, "response": [ { - "id": "da16e7ea-2769-4e59-90ff-cace83236155", + "id": "051566b8-7395-4915-9b5c-f7976e4e2896", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -109956,7 +114217,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5a2e55e7-01cc-484d-9443-7ee97d392181", + "id": "1a41dda5-0985-489f-901e-09d02598f3b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109997,12 +114258,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bbe16745-ec14-4f45-93fa-59adc2926520", + "id": "c9851635-2141-4660-88e3-d067e49862fd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110043,12 +114304,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "30b6960c-cd4e-48f3-b9ec-fa0b23bd3e32", + "id": "f64b404e-f77e-4668-928f-fae742adb59b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110089,12 +114350,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1730a207-4a42-41f1-bd55-7fe693e214d5", + "id": "ffbc54c6-8fb0-4ed4-b786-c83fc79428c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110135,12 +114396,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "54ab9097-68ad-4ef2-9744-a04a3d9eb99f", + "id": "99bc9718-79ca-47ed-9644-2ef0e903f634", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110181,7 +114442,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -110198,7 +114459,7 @@ "description": "", "item": [ { - "id": "621b470c-06ff-4b74-9943-9b0c02033b2a", + "id": "43bfb4b4-59a7-44f8-9b09-f2828ded91c3", "name": "Change MAIL FROM domain", "request": { "name": "Change MAIL FROM domain", @@ -110229,7 +114490,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\"\n}", + "raw": "{\n \"identity\": \"BobSmith@sailpoint.com\",\n \"mailFromDomain\": \"example.sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -110240,7 +114501,7 @@ }, "response": [ { - "id": "a1afab74-d13f-404f-8474-4d24f9ce107f", + "id": "53d891c4-7526-4910-8771-7cd81a2e3c5c", "name": "MAIL FROM Attributes required to verify the change", "originalRequest": { "url": { @@ -110274,7 +114535,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\"\n}", + "raw": "{\n \"identity\": \"BobSmith@sailpoint.com\",\n \"mailFromDomain\": \"example.sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -110291,12 +114552,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\",\n \"mxRecord\": \"\",\n \"txtRecord\": \"\",\n \"mailFromDomainStatus\": \"FAILED\"\n}", + "body": "{\n \"identity\": \"bob.smith@sailpoint.com\",\n \"mailFromDomain\": \"foo.sailpoint.com\",\n \"mxRecord\": \"10 feedback-smtp.us-east-1.amazonses.com\",\n \"txtRecord\": \"v=spf1 include:amazonses.com ~all\",\n \"mailFromDomainStatus\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "066e4443-cfea-44b6-b50e-975b19abb05b", + "id": "0d3c7148-9af7-4fb2-a527-c8bd8a70cdf6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110330,7 +114591,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\"\n}", + "raw": "{\n \"identity\": \"BobSmith@sailpoint.com\",\n \"mailFromDomain\": \"example.sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -110347,12 +114608,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "336fb9e0-b53d-4fdf-8cec-8e48b7f6df34", + "id": "f1a9352d-fdd9-4e7c-8e3e-a4ae64e8526f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110386,7 +114647,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\"\n}", + "raw": "{\n \"identity\": \"BobSmith@sailpoint.com\",\n \"mailFromDomain\": \"example.sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -110403,12 +114664,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "66cbcd8a-1a3e-4842-a4ba-0a2d162d205a", + "id": "ba1bacdf-d14e-449d-b08b-0a30c289590e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110442,7 +114703,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\"\n}", + "raw": "{\n \"identity\": \"BobSmith@sailpoint.com\",\n \"mailFromDomain\": \"example.sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -110459,12 +114720,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2ed9dc2b-5b18-4cf7-9d42-3062c120b103", + "id": "33debc33-7c86-4cfb-9b0a-2f08823e31a7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110498,7 +114759,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\"\n}", + "raw": "{\n \"identity\": \"BobSmith@sailpoint.com\",\n \"mailFromDomain\": \"example.sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -110515,12 +114776,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "44b83ee0-81ab-42fa-a16a-a397605e5be9", + "id": "95dd0439-dcea-40f8-977e-31b089961e2f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110554,7 +114815,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\"\n}", + "raw": "{\n \"identity\": \"BobSmith@sailpoint.com\",\n \"mailFromDomain\": \"example.sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -110571,7 +114832,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -110582,7 +114843,7 @@ } }, { - "id": "e67d5bdf-72d9-440e-8a4f-3bed971435a7", + "id": "403bb1e2-0709-4219-9001-428e77c3222c", "name": "Get MAIL FROM Attributes", "request": { "name": "Get MAIL FROM Attributes", @@ -110606,7 +114867,7 @@ "type": "text/plain" }, "key": "id", - "value": "" + "value": "bobsmith@sailpoint.com" } ], "variable": [ @@ -110627,7 +114888,7 @@ }, "response": [ { - "id": "6eb5ee58-7f83-49ef-b766-771afaf7d9aa", + "id": "e541862f-7677-42b6-b0c5-c9f4cd3900e8", "name": "MAIL FROM Attributes object", "originalRequest": { "url": { @@ -110646,7 +114907,7 @@ "type": "text/plain" }, "key": "id", - "value": "" + "value": "bobsmith@sailpoint.com" } ], "variable": [] @@ -110676,12 +114937,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\",\n \"mxRecord\": \"\",\n \"txtRecord\": \"\",\n \"mailFromDomainStatus\": \"FAILED\"\n}", + "body": "{\n \"identity\": \"bob.smith@sailpoint.com\",\n \"mailFromDomain\": \"foo.sailpoint.com\",\n \"mxRecord\": \"10 feedback-smtp.us-east-1.amazonses.com\",\n \"txtRecord\": \"v=spf1 include:amazonses.com ~all\",\n \"mailFromDomainStatus\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e68660f-56b8-4e18-8fe2-3c874a77cf81", + "id": "f9fcb942-9b62-464e-8a1b-6a8205e696aa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110700,7 +114961,7 @@ "type": "text/plain" }, "key": "id", - "value": "" + "value": "bobsmith@sailpoint.com" } ], "variable": [] @@ -110730,12 +114991,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6dfc0c3a-bc57-4335-9412-09b2a707c260", + "id": "119a3202-3c43-4667-a284-7913bdff9608", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110754,7 +115015,7 @@ "type": "text/plain" }, "key": "id", - "value": "" + "value": "bobsmith@sailpoint.com" } ], "variable": [] @@ -110784,12 +115045,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "70191a1a-bcd4-4871-aee5-ea45f7364aa4", + "id": "14eb0473-0f6a-401c-9827-64587a3cb45d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110808,7 +115069,7 @@ "type": "text/plain" }, "key": "id", - "value": "" + "value": "bobsmith@sailpoint.com" } ], "variable": [] @@ -110838,12 +115099,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "899cef05-8f73-4e0e-8345-08dc1845a0fb", + "id": "b87eb0ce-eec3-4f59-b1fd-42758afe077c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110862,7 +115123,7 @@ "type": "text/plain" }, "key": "id", - "value": "" + "value": "bobsmith@sailpoint.com" } ], "variable": [] @@ -110892,12 +115153,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "50aa4c4a-9f24-4bed-8d6b-ab6bb6e21ab2", + "id": "e3948b23-8190-47ed-acb6-ae53c2478f31", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110916,7 +115177,7 @@ "type": "text/plain" }, "key": "id", - "value": "" + "value": "bobsmith@sailpoint.com" } ], "variable": [] @@ -110946,7 +115207,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -110957,7 +115218,7 @@ } }, { - "id": "b62a78a8-b805-4db6-be68-1dc72b61e6f2", + "id": "ef31b3ca-6f9a-455f-a558-0eee4eb5145b", "name": "List Notification Template Defaults", "request": { "name": "List Notification Template Defaults", @@ -110998,7 +115259,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -111014,7 +115275,7 @@ }, "response": [ { - "id": "c9ff20ab-cb4f-4e9e-bbdb-664417e7e7c8", + "id": "24be7325-6515-4d06-ab3c-c80233d6d2e9", "name": "A list of the default template objects", "originalRequest": { "url": { @@ -111050,7 +115311,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -111080,12 +115341,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"key\": \"\",\n \"name\": \"\",\n \"medium\": \"TEAMS\",\n \"locale\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\"\n }\n]", + "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"name\": \"Task Manager Subscription\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"name\": \"Task Manager Subscription\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c617b550-55dd-4fdd-a136-852f061a5028", + "id": "92cf137e-f432-4511-acc4-dec6a162476f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111121,7 +115382,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -111151,12 +115412,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3617011a-5fc7-4f4c-9a39-02c152ff95fa", + "id": "01958c74-8ff9-4130-8dfa-dae34f27226c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111192,7 +115453,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -111222,12 +115483,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "621c1570-bbe6-4cd0-bf1b-a16fd95ffbde", + "id": "5494cefe-f232-41b9-9774-ccf0874ce574", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111263,7 +115524,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -111293,12 +115554,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "92a7812d-0993-42ae-b4e2-178721404742", + "id": "2264697b-dec7-4e67-a804-df4177ec412e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111334,7 +115595,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -111364,12 +115625,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f9d19d98-952c-470b-9b9d-c8ae2c378a0b", + "id": "97373009-6910-4f2d-b38f-050599e77c04", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111405,7 +115666,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -111435,7 +115696,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -111446,7 +115707,7 @@ } }, { - "id": "867f5191-fac6-4c73-bb5b-9bcf4f3560e7", + "id": "bed077b8-a236-472e-9cd7-dbc43cd06909", "name": "List Notification Templates", "request": { "name": "List Notification Templates", @@ -111487,7 +115748,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "medium eq \"EMAIL\"" } ], "variable": [] @@ -111503,7 +115764,7 @@ }, "response": [ { - "id": "d78c01cd-1f19-427d-acbf-d11c1d40f050", + "id": "1751fa02-76f9-4221-b3e5-0ebeddeb7830", "name": "A list of template objects for your site", "originalRequest": { "url": { @@ -111539,7 +115800,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "medium eq \"EMAIL\"" } ], "variable": [] @@ -111569,12 +115830,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n }\n]", + "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3eb02767-17c4-4046-a57e-7e88c58dd386", + "id": "d2ad4395-80b6-4ec6-99ff-6879f6f8a726", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111610,7 +115871,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "medium eq \"EMAIL\"" } ], "variable": [] @@ -111640,12 +115901,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "048af3aa-04b7-4c55-b0e3-7ddab61f6fe7", + "id": "e2d74f5d-ba76-462a-9c12-134db75072f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111681,7 +115942,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "medium eq \"EMAIL\"" } ], "variable": [] @@ -111711,12 +115972,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4a94780d-a927-4245-8544-ddf600d45be0", + "id": "8f583165-2d1d-4548-8e7f-9c9e6f4fded0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111752,7 +116013,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "medium eq \"EMAIL\"" } ], "variable": [] @@ -111782,12 +116043,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9331dc24-9fb6-4d3a-8552-0c50fd5ad4c1", + "id": "45ce61c4-8da2-4983-98be-809219a9631a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111823,7 +116084,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "medium eq \"EMAIL\"" } ], "variable": [] @@ -111853,12 +116114,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "386f7a29-e332-4bf4-ae76-70accd09a756", + "id": "a31bf08f-d5cc-4ab9-b84c-42b6d6ceda1d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111894,7 +116155,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "medium eq \"EMAIL\"" } ], "variable": [] @@ -111924,7 +116185,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -111935,7 +116196,7 @@ } }, { - "id": "8381ed0a-d6aa-4051-b8c5-58296dca0512", + "id": "773a8bca-821b-48c0-84e8-154aa452566a", "name": "Create Notification Template", "request": { "name": "Create Notification Template", @@ -111966,7 +116227,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -111977,7 +116238,7 @@ }, "response": [ { - "id": "01ed923e-6a54-4a47-bb6d-0f62838e8afe", + "id": "6153d7f7-d078-4e3a-bbe6-814c61c2a9a6", "name": "A template object for your site", "originalRequest": { "url": { @@ -112011,7 +116272,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112028,12 +116289,12 @@ "value": "application/json" } ], - "body": "{\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bce51683-628e-4aca-a562-11bc464012ce", + "id": "a21da282-2a6d-4331-8427-f562b51e113f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112067,7 +116328,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112084,12 +116345,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b58359de-0c39-49ec-9484-2890c8b56f1d", + "id": "36e1d249-af7c-4621-8951-be801b52b90d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112123,7 +116384,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112140,12 +116401,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1114236f-6b45-4953-95f9-12f57854f0ed", + "id": "59a339a9-7f75-4cf8-ae5d-02dce910bbeb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112179,7 +116440,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112196,12 +116457,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ea03588b-bf84-429e-875d-ae1a289677b4", + "id": "9d4efb87-a1ea-4ca8-b223-8d3759ac1659", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112235,7 +116496,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112252,12 +116513,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "459d4e25-4a46-4f8c-b8b4-f284aec9cf3d", + "id": "ddbb7289-30ec-4162-9fd7-de46c3e4428a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112291,7 +116552,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112308,7 +116569,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -112319,7 +116580,7 @@ } }, { - "id": "fc0b023c-6905-406b-a4c3-a2569a3f21b7", + "id": "4ef749e9-7585-457a-a141-67af1ff28d85", "name": "Get Notification Template By Id", "request": { "name": "Get Notification Template By Id", @@ -112339,7 +116600,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", "key": "id", "disabled": true, "description": { @@ -112360,7 +116621,7 @@ }, "response": [ { - "id": "87add3b3-d774-4b2e-aae8-2a61dc706b0f", + "id": "675b95cc-86bf-4f9e-ae7a-47f1aa6a1053", "name": "A template object for your site", "originalRequest": { "url": { @@ -112399,12 +116660,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n }\n]", + "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "558f6107-f1d9-42a9-a7c2-886adbab20b7", + "id": "9f1ff555-ee48-4a02-ba6a-e94f04926935", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112443,12 +116704,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "80244292-d243-49cb-9fd3-70ee0da6891a", + "id": "7c8c5029-79d6-41f9-a2e1-97fc6fc4f8f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112487,12 +116748,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8924a5d4-e29d-4402-aa4a-94d300b1bf86", + "id": "eaa5f779-a5e4-4f9b-b6f1-2090f635f5d8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112531,12 +116792,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "95cb62e5-bd13-4a48-9a1f-29092de84f82", + "id": "81ddd8ad-6025-4127-b98c-3f102addaf2a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112575,12 +116836,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fc41da63-91a8-4323-8906-43b801614ef0", + "id": "fb0f16f3-2654-4582-b398-c64cc9cf1195", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112619,7 +116880,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -112630,7 +116891,7 @@ } }, { - "id": "e0496398-216b-42d4-ab6e-3b681bb0d57e", + "id": "81b05c8a-df91-4d15-a7b3-684132f12654", "name": "Bulk Delete Notification Templates", "request": { "name": "Bulk Delete Notification Templates", @@ -112662,7 +116923,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -112673,7 +116934,7 @@ }, "response": [ { - "id": "a631d22e-f60e-4b70-aaba-5f16a92ade6f", + "id": "97a0c1d6-2eed-41e5-a071-23f9d6e52f05", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -112704,7 +116965,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -112720,7 +116981,7 @@ "_postman_previewlanguage": "text" }, { - "id": "000e9f3d-46e5-4110-a058-293ec660359f", + "id": "f526c9de-77f2-41d0-8c2d-e9b822d2432a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112755,7 +117016,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -112772,12 +117033,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9d1578cc-74a8-4f7a-acfb-bd0a14132c8d", + "id": "c394de1e-feff-4fb8-bba0-f0f2617d4564", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112812,7 +117073,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -112829,12 +117090,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b1f0bdcd-f655-40da-8e6a-cec8d317cd8c", + "id": "feb21a17-f1ad-48dc-92a4-dfd933418794", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112869,7 +117130,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -112886,12 +117147,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5c2013ad-6fdc-48e0-990e-7f8d696f4462", + "id": "5f3ec985-91d7-4b54-8fe2-7946432e104d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112926,7 +117187,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -112943,12 +117204,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ce990a2f-2d5e-447c-bb03-a0b7075723a5", + "id": "a102d107-ee0b-45c3-a004-e978700fc1b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112983,7 +117244,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -113000,7 +117261,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -113011,7 +117272,7 @@ } }, { - "id": "557aeead-e746-48a7-b185-55adfd1141da", + "id": "dc402d32-da9a-4498-8f31-a0aab1cf9d81", "name": "Get Notification Template Context", "request": { "name": "Get Notification Template Context", @@ -113040,7 +117301,7 @@ }, "response": [ { - "id": "5e3918b9-33d4-4121-bdfd-8e5698fc6d80", + "id": "178d282d-3006-4714-9119-f96e7fed4cef", "name": "Notification template context attributes for a specific tenant.", "originalRequest": { "url": { @@ -113078,12 +117339,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"attributes\": {},\n \"created\": \"\",\n \"modified\": \"\"\n },\n {\n \"attributes\": {},\n \"created\": \"\",\n \"modified\": \"\"\n }\n]", + "body": "[\n {\n \"attributes\": {\n \"productUrl\": \"https://test-org.identitysoon.com\",\n \"brandingConfigs\": {\n \"default\": {\n \"narrowLogoURL\": null,\n \"productName\": \"SailPoint\",\n \"standardLogoURL\": null,\n \"navigationColor\": 1.1e+65,\n \"actionButtonColor\": \"20B2DE\",\n \"emailFromAddress\": null,\n \"activeLinkColor\": \"20B2DE\",\n \"loginInformationalMessage\": null\n }\n }\n },\n \"created\": \"2020-04-15T16:16:47.525Z\",\n \"modified\": \"2020-04-15T16:16:47.525Z\"\n },\n {\n \"attributes\": {\n \"productUrl\": \"https://test-org.identitysoon.com\",\n \"brandingConfigs\": {\n \"default\": {\n \"narrowLogoURL\": null,\n \"productName\": \"SailPoint\",\n \"standardLogoURL\": null,\n \"navigationColor\": 1.1e+65,\n \"actionButtonColor\": \"20B2DE\",\n \"emailFromAddress\": null,\n \"activeLinkColor\": \"20B2DE\",\n \"loginInformationalMessage\": null\n }\n }\n },\n \"created\": \"2020-04-15T16:16:47.525Z\",\n \"modified\": \"2020-04-15T16:16:47.525Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "31048dc5-b897-4823-bb22-a984c4251caf", + "id": "20238716-824d-44f6-b758-cf2637d07a2d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113121,12 +117382,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a604cf72-c0ea-4404-b263-6418ff9aefd3", + "id": "f92d3d3a-4136-4081-8f1b-32b32d138637", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113164,12 +117425,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8f93830c-6888-4f5e-90fe-6ead14283d72", + "id": "9d5414ef-2cc4-49b9-ac5e-c802d6769451", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113207,12 +117468,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f35ff113-1150-4178-bbc4-f67446e4b7ae", + "id": "66821638-54a2-432b-9b2c-fe54fd3d62e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113250,12 +117511,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "957f8eff-12c6-409f-a73c-b3369327bae8", + "id": "bd22acf5-b312-4197-8a0e-c0aaeb449609", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113293,7 +117554,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -113304,7 +117565,7 @@ } }, { - "id": "c84ebae3-0e92-4be0-9394-8902a306091c", + "id": "e13e2174-6cfa-4499-823e-4752b7f07c36", "name": "Get Notification Preferences for tenant.", "request": { "name": "Get Notification Preferences for tenant.", @@ -113324,7 +117585,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "velit aliquip", "key": "key", "disabled": true, "description": { @@ -113345,7 +117606,7 @@ }, "response": [ { - "id": "8ac28755-8871-4a26-97e9-2b8af7f3874d", + "id": "a382bf64-5150-4fb2-8646-b567b157c181", "name": "Return preference for the given notification key.", "originalRequest": { "url": { @@ -113384,12 +117645,12 @@ "value": "application/json" } ], - "body": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"SMS\"\n ],\n \"modified\": \"\"\n}", + "body": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"mediums\": [\n \"EMAIL\"\n ],\n \"modified\": \"2020-05-15T14:37:06.909Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "10e05f7a-2d85-42c5-b371-d2b14328f189", + "id": "aa9121e3-caf5-4f7f-b89a-f0f0522ff544", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113428,12 +117689,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "71b5257f-dfb5-40cd-9fe1-7afe22f87b6e", + "id": "97c8aee4-07c0-4ba5-a2db-30fc065da79d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113472,12 +117733,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a8a877d-722f-470d-a151-76488a6d8f0f", + "id": "10330368-142e-4d6e-8db4-f362e002397c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113516,12 +117777,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1e8c3bad-578c-4a8e-9348-c400cfd0b5ee", + "id": "e3d1355c-bea0-427d-835c-98e4ccf69d26", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -113560,12 +117821,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "104a925f-9864-431f-8f3c-28109185c070", + "id": "1d4f149f-458d-4a26-adc0-dd05900709f1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113604,7 +117865,7 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -113615,7 +117876,7 @@ } }, { - "id": "d791dd19-2dac-48e7-ad62-158724a0aedd", + "id": "e2eb4234-aefc-401b-9c6b-8f289942cd66", "name": "Overwrite the preferences for the given notification key.", "request": { "name": "Overwrite the preferences for the given notification key.", @@ -113635,7 +117896,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "velit aliquip", "key": "key", "disabled": true, "description": { @@ -113658,7 +117919,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"SMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"mediums\": [\n \"EMAIL\"\n ],\n \"modified\": \"2020-05-15T14:37:06.909Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -113669,7 +117930,7 @@ }, "response": [ { - "id": "a71baee2-5535-468c-836a-4c797cfe82fd", + "id": "a7d9aac8-7d8e-40a1-8636-7b27a2026861", "name": "The preferences were successfully replaced, and an echo of the new preferences are sent back to caller.", "originalRequest": { "url": { @@ -113704,7 +117965,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"SMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"mediums\": [\n \"EMAIL\"\n ],\n \"modified\": \"2020-05-15T14:37:06.909Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -113721,12 +117982,12 @@ "value": "application/json" } ], - "body": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"SMS\"\n ],\n \"modified\": \"\"\n}", + "body": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"mediums\": [\n \"EMAIL\"\n ],\n \"modified\": \"2020-05-15T14:37:06.909Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "779be09c-1f6d-4349-9089-8a33923c33d3", + "id": "05e31ebc-a37b-49d6-a29a-9c3c52a15e2a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113761,7 +118022,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"SMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"mediums\": [\n \"EMAIL\"\n ],\n \"modified\": \"2020-05-15T14:37:06.909Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -113778,12 +118039,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "99e024a3-d5d8-4bbc-908f-b3934fef7ddc", + "id": "b27cdcbc-fcc1-40ae-975f-445b2eba6e7b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113818,7 +118079,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"SMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"mediums\": [\n \"EMAIL\"\n ],\n \"modified\": \"2020-05-15T14:37:06.909Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -113835,12 +118096,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e39e53dc-2f6e-4280-a72b-93e7d5d878d8", + "id": "01878221-6b7f-4aa1-9679-3c76dfad923f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113875,7 +118136,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"SMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"mediums\": [\n \"EMAIL\"\n ],\n \"modified\": \"2020-05-15T14:37:06.909Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -113892,12 +118153,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "56070067-4057-49f5-9052-e3418d68ca34", + "id": "7795f6eb-fb61-4b81-adab-bc716d14798c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -113932,7 +118193,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"SMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"mediums\": [\n \"EMAIL\"\n ],\n \"modified\": \"2020-05-15T14:37:06.909Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -113949,12 +118210,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "89a82fae-653b-4ca4-bacc-f580414f4d41", + "id": "f5c8341f-be2f-4cb1-9736-5305577fb2dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113989,7 +118250,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"SMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"mediums\": [\n \"EMAIL\"\n ],\n \"modified\": \"2020-05-15T14:37:06.909Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -114006,7 +118267,7 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -114017,7 +118278,7 @@ } }, { - "id": "7f106893-c5c6-41a8-8f6b-64e321c0ed83", + "id": "2fbd6a81-1949-41ed-bdfd-2f7d7e6989f1", "name": "Send Test Notification", "request": { "name": "Send Test Notification", @@ -114048,7 +118309,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"context\": {\n \"numberOfPendingTasks\": \"4\",\n \"ownerId\": \"201327fda1c44704ac01181e963d463c\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -114059,7 +118320,7 @@ }, "response": [ { - "id": "c7ce6ff7-baa0-4e85-b789-96fa2acdd891", + "id": "df010170-883e-4d8c-b655-3bf19866ba04", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -114089,7 +118350,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"context\": {\n \"numberOfPendingTasks\": \"4\",\n \"ownerId\": \"201327fda1c44704ac01181e963d463c\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -114105,7 +118366,7 @@ "_postman_previewlanguage": "text" }, { - "id": "33089eb8-e734-4c36-a75b-b88b4e5c3c8f", + "id": "025d1b9e-e57f-4fc0-8c82-4b0194b2a93c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114139,7 +118400,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"context\": {\n \"numberOfPendingTasks\": \"4\",\n \"ownerId\": \"201327fda1c44704ac01181e963d463c\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -114156,12 +118417,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "94837893-a8c6-46bd-861c-232084ec0527", + "id": "28c16982-ce57-4010-be85-524dadb9a9ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114195,7 +118456,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"context\": {\n \"numberOfPendingTasks\": \"4\",\n \"ownerId\": \"201327fda1c44704ac01181e963d463c\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -114212,12 +118473,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6bd19047-f1e4-4903-9277-e7c351e4fcff", + "id": "68d978ea-3053-431c-a18e-6926a4b1dfda", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114251,7 +118512,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"context\": {\n \"numberOfPendingTasks\": \"4\",\n \"ownerId\": \"201327fda1c44704ac01181e963d463c\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -114268,12 +118529,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e22e5d79-b74a-467d-bab7-d6062c937f2e", + "id": "26ad2c20-7b22-473a-bcc7-4212254eeaa6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -114307,7 +118568,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"context\": {\n \"numberOfPendingTasks\": \"4\",\n \"ownerId\": \"201327fda1c44704ac01181e963d463c\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -114324,12 +118585,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "94db98dd-ccb0-4666-8b00-c86040006903", + "id": "e2d8bdee-e0d3-42dd-9892-6f509eb6f475", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114363,7 +118624,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"context\": {\n \"numberOfPendingTasks\": \"4\",\n \"ownerId\": \"201327fda1c44704ac01181e963d463c\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -114380,12 +118641,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6712dcfb-78a4-4f57-941e-c5303af2fe1d", + "id": "c872a764-7c01-42ef-9270-9aad073cc5ee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114419,7 +118680,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"context\": {\n \"numberOfPendingTasks\": \"4\",\n \"ownerId\": \"201327fda1c44704ac01181e963d463c\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -114436,7 +118697,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -114447,7 +118708,7 @@ } }, { - "id": "0c3d7487-8915-4e93-af2b-379d3db07c85", + "id": "6c910661-3e34-49dd-85c9-57bba8c0c9c8", "name": "List From Addresses", "request": { "name": "List From Addresses", @@ -114488,7 +118749,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -114497,7 +118758,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "email eq \"john.doe@company.com\"" }, { "disabled": true, @@ -114506,7 +118767,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "email" } ], "variable": [] @@ -114522,7 +118783,7 @@ }, "response": [ { - "id": "d75bc818-c812-42b1-801f-13cdc502a805", + "id": "dc6f874d-48c9-4366-b07a-8db1c1f4a76f", "name": "List of Email Status", "originalRequest": { "url": { @@ -114558,7 +118819,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -114567,7 +118828,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "email eq \"john.doe@company.com\"" }, { "disabled": true, @@ -114576,7 +118837,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "email" } ], "variable": [] @@ -114606,12 +118867,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"FAILED\"\n },\n {\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"FAILED\"\n }\n]", + "body": "[\n {\n \"id\": \"laboris et tempor\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"SUCCESS\"\n },\n {\n \"id\": \"in esse voluptate sit\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"SUCCESS\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f7254ee-631d-4e55-bf8e-f9b875f5dc83", + "id": "23191d84-71fe-4d03-a7c8-9994ce8df881", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114647,7 +118908,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -114656,7 +118917,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "email eq \"john.doe@company.com\"" }, { "disabled": true, @@ -114665,7 +118926,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "email" } ], "variable": [] @@ -114695,12 +118956,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "269f3c03-249b-4737-9d97-14bfde10a185", + "id": "cdab25cc-1be2-4819-ac51-097c733c366a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114736,7 +118997,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -114745,7 +119006,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "email eq \"john.doe@company.com\"" }, { "disabled": true, @@ -114754,7 +119015,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "email" } ], "variable": [] @@ -114784,12 +119045,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a9b8aeb7-8d78-4f94-9119-3b89b269f2ab", + "id": "e098ab8a-4351-46a6-bc6b-f0c51752267b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114825,7 +119086,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -114834,7 +119095,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "email eq \"john.doe@company.com\"" }, { "disabled": true, @@ -114843,7 +119104,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "email" } ], "variable": [] @@ -114873,12 +119134,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4fa65297-168a-4342-95a5-bbb581253639", + "id": "4990911b-e8ae-4b4d-b88e-c967f26cdc5b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114914,7 +119175,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -114923,7 +119184,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "email eq \"john.doe@company.com\"" }, { "disabled": true, @@ -114932,7 +119193,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "email" } ], "variable": [] @@ -114962,7 +119223,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -114973,7 +119234,7 @@ } }, { - "id": "96fe23ec-5d1c-4427-a924-9797cb0c15b5", + "id": "f7292570-a537-4126-abe3-7d0fee911284", "name": "Create Verified From Address", "request": { "name": "Create Verified From Address", @@ -115004,7 +119265,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "raw": "{\n \"email\": \"sender@example.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -115015,7 +119276,7 @@ }, "response": [ { - "id": "67172888-89af-4135-955d-d8e56217be9d", + "id": "625e0d54-bc9c-4d38-8361-fb23f0e09277", "name": "New Verified Email Status", "originalRequest": { "url": { @@ -115049,7 +119310,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "raw": "{\n \"email\": \"sender@example.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -115066,12 +119327,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "body": "{\n \"id\": \"voluptate in\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"SUCCESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "582ab8d5-38f0-4e40-8af7-168c1d8950dd", + "id": "2ef720fc-9bf8-4898-9d59-c6faded320e4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115105,7 +119366,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "raw": "{\n \"email\": \"sender@example.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -115122,12 +119383,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1be8c401-3ff9-49f2-90ad-17ff542c2e8b", + "id": "6f83e63c-8e07-4f13-a579-1ccce4307d29", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115161,7 +119422,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "raw": "{\n \"email\": \"sender@example.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -115178,12 +119439,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad8943d5-7007-42fd-8612-a4dffa8689d2", + "id": "e559f8ef-1330-46b3-ad11-81de0c1555e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115217,7 +119478,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "raw": "{\n \"email\": \"sender@example.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -115234,12 +119495,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0b26e6b7-bdbb-4798-af1e-66c340627f98", + "id": "9147af4c-cb29-45bb-8f76-df0ff390e1be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115273,7 +119534,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "raw": "{\n \"email\": \"sender@example.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -115290,12 +119551,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3edd18fe-0129-4615-8f99-b6fbf30d2d57", + "id": "895babc1-1d8b-4c7e-8715-ed0bb362e2eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115329,7 +119590,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "raw": "{\n \"email\": \"sender@example.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -115346,7 +119607,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -115357,7 +119618,7 @@ } }, { - "id": "52542b46-ca8a-4415-839d-8085ef9dcf69", + "id": "d8ebdcde-68cf-45b0-86dd-d2aaaf6f17f4", "name": "Delete Verified From Address", "request": { "name": "Delete Verified From Address", @@ -115377,7 +119638,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "velit aliquip", "key": "id", "disabled": true, "description": { @@ -115398,7 +119659,7 @@ }, "response": [ { - "id": "b3a5c523-4998-4419-9600-44eb8bdcd888", + "id": "be009e82-0ee5-4a4e-99cb-6c787cf2be1d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -115432,7 +119693,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6dd9eebc-58e1-4ac4-b532-212f32216c35", + "id": "5227c7fb-8810-4a4f-8899-0ccef111a0ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115471,12 +119732,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4136057c-db0a-414d-a72f-c354e5f4ce8a", + "id": "89fcfde4-690c-4f67-894b-1458c0843a27", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115515,12 +119776,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "90d00989-1a60-4025-827d-d07e2ab5b881", + "id": "3d1a5fdd-8274-4b01-b77a-fd6f92137e03", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115559,12 +119820,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a9707c3a-763b-4cc7-9d1e-79619e49a942", + "id": "2337c6cd-e05d-4135-a68c-05a74627b1db", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -115603,12 +119864,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d11467af-8c92-4a3b-b023-236a8b8cc4b8", + "id": "b6342657-489c-421f-9d18-968840c11851", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115647,12 +119908,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3444cdd3-7393-41f5-8834-944ba94a36a5", + "id": "de8d10e6-ba5a-4a36-b09f-a951bfad4595", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115691,7 +119952,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -115702,7 +119963,7 @@ } }, { - "id": "427ef4c9-b27b-49eb-a7f4-13bf2358f36b", + "id": "fc61ad9d-ea8d-433e-896d-2e6dda91cf02", "name": "Get DKIM Attributes", "request": { "name": "Get DKIM Attributes", @@ -115731,7 +119992,7 @@ }, "response": [ { - "id": "862d17b9-7424-4e2c-8eb9-78839948b619", + "id": "e3e1a221-f824-4bc6-800c-0ace1d807382", "name": "List of DKIM Attributes", "originalRequest": { "url": { @@ -115769,12 +120030,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"address\": \"\",\n \"dkimEnabled\": false,\n \"dkimTokens\": [\n \"\",\n \"\"\n ],\n \"dkimVerificationStatus\": \"\"\n },\n {\n \"id\": \"\",\n \"address\": \"\",\n \"dkimEnabled\": false,\n \"dkimTokens\": [\n \"\",\n \"\"\n ],\n \"dkimVerificationStatus\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"123b45b0-aaaa-bbbb-a7db-123456a56abc\",\n \"address\": \"BobSmith@sailpoint.com\",\n \"dkimEnabled\": true,\n \"dkimTokens\": [\n \"uq1m3jjk25ckd3whl4n7y46c56r5l6aq\",\n \"u7pm38jky9ckdawhlsn7y4dcj6f5lpgq\",\n \"uhpm3jjkjjckdkwhlqn7yw6cjer5tpay\"\n ],\n \"dkimVerificationStatus\": \"Success\"\n },\n {\n \"id\": \"123b45b0-aaaa-bbbb-a7db-123456a56abc\",\n \"address\": \"BobSmith@sailpoint.com\",\n \"dkimEnabled\": true,\n \"dkimTokens\": [\n \"uq1m3jjk25ckd3whl4n7y46c56r5l6aq\",\n \"u7pm38jky9ckdawhlsn7y4dcj6f5lpgq\",\n \"uhpm3jjkjjckdkwhlqn7yw6cjer5tpay\"\n ],\n \"dkimVerificationStatus\": \"Success\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ea44aefe-2d9a-4017-89b2-4b6b58e82953", + "id": "3b73978e-50a5-41ce-b825-7deef1554daa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115812,12 +120073,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8c888a1c-d2ba-4936-bc29-5d9e33bdfccd", + "id": "b8eb15b1-0710-4a9c-a367-5b3828095b08", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115855,12 +120116,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cace9cba-4d5c-4061-91ea-d06c427476b2", + "id": "43aaa31d-85e6-4e15-9371-5e30ee05aa2c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115898,12 +120159,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "94ce7f4c-9605-46c7-935a-cea48e09dcdd", + "id": "46271dd7-4971-4b47-99f9-cd12e51b1e5d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115941,12 +120202,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ada1aef-90a3-42df-a94f-2d38339f65a0", + "id": "b27d89d4-5d9c-435f-9ad5-cac2223a1299", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115984,7 +120245,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -115995,7 +120256,7 @@ } }, { - "id": "6d530878-c19c-4d11-bd60-f983d932c520", + "id": "3ce11a50-9e9f-49a5-b1f6-b9c694fa0236", "name": "Verify domain address via DKIM", "request": { "name": "Verify domain address via DKIM", @@ -116026,7 +120287,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"domain\": \"\"\n}", + "raw": "{\n \"domain\": \"sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116037,7 +120298,7 @@ }, "response": [ { - "id": "3b84ffb9-b989-4686-a5cf-9950f98dddd9", + "id": "deede8a3-2109-4d91-ab6c-ad8b0b2d6f30", "name": "List of DKIM tokens required for the verification process.", "originalRequest": { "url": { @@ -116071,7 +120332,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"domain\": \"\"\n}", + "raw": "{\n \"domain\": \"sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116088,12 +120349,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"domain\": \"\",\n \"dkimEnabled\": false,\n \"dkimTokens\": [\n \"\",\n \"\"\n ],\n \"dkimVerificationStatus\": \"\"\n}", + "body": "{\n \"id\": \"123b45b0-aaaa-bbbb-a7db-123456a56abc\",\n \"domain\": \"sailpoint.com\",\n \"dkimEnabled\": true,\n \"dkimTokens\": [\n \"token1\",\n \"token2\",\n \"token3\"\n ],\n \"dkimVerificationStatus\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fbf6bd8c-34fa-4f35-9961-438a7b2881c7", + "id": "ced858e4-a58c-4222-bf7b-103a08cd8fac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116127,7 +120388,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"domain\": \"\"\n}", + "raw": "{\n \"domain\": \"sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116144,12 +120405,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ccf218f4-00d6-466f-b65d-8da50fe87eb2", + "id": "c45569f5-e424-4a3d-8995-f9c173640c9e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116183,7 +120444,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"domain\": \"\"\n}", + "raw": "{\n \"domain\": \"sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116200,12 +120461,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8449c985-d55f-4ecb-b118-1a661a6d1a36", + "id": "0953b568-5df2-4d88-9aeb-b024eea57bcf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116239,7 +120500,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"domain\": \"\"\n}", + "raw": "{\n \"domain\": \"sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116256,12 +120517,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "614889a2-ffed-4862-ad3f-9fe3ea2d1427", + "id": "81ee3c71-b97b-42b0-aa74-66ad992300f3", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -116295,7 +120556,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"domain\": \"\"\n}", + "raw": "{\n \"domain\": \"sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116312,12 +120573,12 @@ "value": "application/json" } ], - "body": "{\n \"errorName\": {\n \"description\": \"A message describing the error\",\n \"example\": \"NotSupportedException\"\n },\n \"errorMessage\": {\n \"description\": \"Description of the error\",\n \"example\": \"Cannot consume content type\"\n },\n \"trackingId\": \"\"\n}", + "body": "{\n \"errorName\": \"NotSupportedException\",\n \"errorMessage\": \"Cannot consume content type\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a01d6040-8652-436e-aff2-345d3dd1aac5", + "id": "26c5bb05-c170-4f27-aac9-bc3fa1c16a89", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116351,7 +120612,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"domain\": \"\"\n}", + "raw": "{\n \"domain\": \"sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116368,12 +120629,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dcb3c7bc-eaf0-427b-9d75-b321e8525f10", + "id": "ed9e864c-12fe-4349-8a9e-f84156ca1059", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116407,7 +120668,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"domain\": \"\"\n}", + "raw": "{\n \"domain\": \"sailpoint.com\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116424,7 +120685,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -116441,7 +120702,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": "b2845d37-3301-47aa-a33f-10a7e87367fe", + "id": "1ecc386e-a6f7-48aa-acf8-7ea5f39f6240", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -116464,7 +120725,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "lastUsed le 2023-02-05T10:59:27.214Z" } ], "variable": [] @@ -116480,7 +120741,7 @@ }, "response": [ { - "id": "a1f1e6d6-e523-4c31-9160-08f587b7c932", + "id": "fde3a6a9-cb0c-4daa-88d4-d28ccf8a164c", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -116498,7 +120759,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "lastUsed le 2023-02-05T10:59:27.214Z" } ], "variable": [] @@ -116528,12 +120789,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"lastUsed\": \"\"\n },\n {\n \"id\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"PUBLIC\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"lastUsed\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "55e39205-b8ab-4d1f-bc43-ca8124572543", + "id": "7c011849-c1a0-49a4-b7d1-46f7323aaa54", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116551,7 +120812,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "lastUsed le 2023-02-05T10:59:27.214Z" } ], "variable": [] @@ -116581,12 +120842,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c24046f6-cb05-4f96-ac4f-ffe6d23eee93", + "id": "5fa0592a-7503-4530-bbd5-c4592566bb25", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116604,7 +120865,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "lastUsed le 2023-02-05T10:59:27.214Z" } ], "variable": [] @@ -116634,12 +120895,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af17ccf2-c545-4d1f-8204-01e4bea587e6", + "id": "8159da91-ec95-44cd-b0d4-10c931608d32", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116657,7 +120918,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "lastUsed le 2023-02-05T10:59:27.214Z" } ], "variable": [] @@ -116687,12 +120948,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "612213d1-8d64-4d50-9274-49a1c6f31e8b", + "id": "840bff4d-7688-4f75-8cd3-48902a2885c3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116710,7 +120971,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "lastUsed le 2023-02-05T10:59:27.214Z" } ], "variable": [] @@ -116740,12 +121001,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca2c2ac8-8c83-4d98-ab31-c8a3c864f0ed", + "id": "7ba657db-a245-43d3-9374-fb39feb6c9c6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116763,7 +121024,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "lastUsed le 2023-02-05T10:59:27.214Z" } ], "variable": [] @@ -116793,7 +121054,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -116804,7 +121065,7 @@ } }, { - "id": "edef88f5-1947-4b6e-a0a5-4bd0648e9775", + "id": "3dfd0167-c164-4c0a-a92a-274feadee97e", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -116835,7 +121096,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"AUTHORIZATION_CODE\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": true,\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\",\n \"http://localhost:67890\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -116846,7 +121107,7 @@ }, "response": [ { - "id": "b5c58071-0152-41c0-819c-2064c0873234", + "id": "2a1aa6f3-9da8-49c6-b069-e979209fb52e", "name": "Request succeeded.", "originalRequest": { "url": { @@ -116880,7 +121141,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"AUTHORIZATION_CODE\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": true,\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\",\n \"http://localhost:67890\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -116897,12 +121158,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"secret\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"REFRESH_TOKEN\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"ONLINE\",\n \"type\": \"PUBLIC\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"secret\": \"5c32dd9b21adb51c77794d46e71de117a1d0ddb36a7ff941fa28014ab7de2cf3\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6a780438-4e48-4754-8bd2-8d0f456853e6", + "id": "48e5806e-a2cd-460d-8c03-3dc6a54c7f15", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116936,7 +121197,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"AUTHORIZATION_CODE\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": true,\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\",\n \"http://localhost:67890\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -116953,12 +121214,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ab8a73b5-51c1-4083-88c1-8833438688b2", + "id": "c26e2234-fa72-4ca9-a996-8018197d589b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116992,7 +121253,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"AUTHORIZATION_CODE\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": true,\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\",\n \"http://localhost:67890\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -117009,12 +121270,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d0198ed2-a2b8-4634-aa69-cc05ff2aa7de", + "id": "48c0cbe6-b9b0-4023-ac78-64bec7731172", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117048,7 +121309,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"AUTHORIZATION_CODE\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": true,\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\",\n \"http://localhost:67890\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -117065,12 +121326,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "135d3a98-b947-4c3d-b560-a89d1f6b72d6", + "id": "54ebc42a-3eaa-476b-ac55-70d1bec0e4a1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117104,7 +121365,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"AUTHORIZATION_CODE\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": true,\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\",\n \"http://localhost:67890\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -117121,12 +121382,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4467e106-a2ce-4336-8bdf-a59ff7feac5d", + "id": "bbf35da7-15ef-4e72-a89a-67b0fb670a00", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117160,7 +121421,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"AUTHORIZATION_CODE\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": true,\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\",\n \"http://localhost:67890\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -117177,7 +121438,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -117188,7 +121449,7 @@ } }, { - "id": "7313db02-1b20-4995-8ce6-4108fec7a99e", + "id": "344556a4-29d0-4f42-86e8-bdcbe76244ea", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -117208,7 +121469,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -117229,7 +121490,7 @@ }, "response": [ { - "id": "53d7a0fa-1931-4304-bb1f-45b851035950", + "id": "21109879-9f28-404d-b898-48f0220898dc", "name": "Request succeeded.", "originalRequest": { "url": { @@ -117268,12 +121529,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"REFRESH_TOKEN\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"lastUsed\": \"\"\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4fbc9c5e-0eb4-48e2-833e-b9be1d7db03f", + "id": "19f0ba8b-cdb0-4c38-9bcf-ca16f49c8001", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117312,12 +121573,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "03ab9338-c0c8-4afe-851a-3d4766541ec2", + "id": "b64f88b5-7b5a-42a4-a79e-59b0f1212175", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117356,12 +121617,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aa8cff53-256f-47c6-8a99-219a98b6fc34", + "id": "0e01c813-5c50-490b-b04f-0f89ce94497c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117400,12 +121661,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2b925951-3f15-46ab-a556-2bd0f9186552", + "id": "520d9664-fe5e-4408-aa7a-8fbdbb4dfcee", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -117444,12 +121705,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2141314d-9bb9-4709-bdca-c11af84e1137", + "id": "ed15f7b8-8887-4e01-ba06-cae39a17849c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117488,12 +121749,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e02bacf4-25b8-411c-8a8b-eb9e3b8fc897", + "id": "7f790ac2-7d50-455f-bfbe-5c03f554babc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117532,7 +121793,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -117543,7 +121804,7 @@ } }, { - "id": "e627cca1-d514-4491-b661-e3c9e1186afc", + "id": "b4af7d51-ee82-4c27-a230-09a05887c077", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -117563,7 +121824,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -117584,7 +121845,7 @@ }, "response": [ { - "id": "28f919ec-87cf-4bec-8ba9-0029a17f7388", + "id": "0206f14f-f9ac-44dd-9b54-71d05b783b1e", "name": "No content.", "originalRequest": { "url": { @@ -117618,7 +121879,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c2401b60-1876-4269-a774-ca95e8993d72", + "id": "58e00dbc-5151-41f2-b274-d873e966469b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117657,12 +121918,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c2603985-4486-4d80-a1c3-bf89da988a92", + "id": "be484913-dbe2-40d1-9447-64966a1bdb36", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117701,12 +121962,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb81e7df-a087-4bd2-b2a5-a202cb516867", + "id": "352a7fe2-f5bd-40cc-8062-78aa4a5b8d64", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117745,12 +122006,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "04d987e6-8e9c-48c9-a3b4-0cb6a42d355f", + "id": "35f3db9e-b1e7-4b72-8c60-b717eaf18d1a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -117789,12 +122050,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "440e2af1-0c14-4081-a068-85345ec0b4ac", + "id": "76edf3da-c112-4bc1-89c0-6239695199e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117833,12 +122094,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c5698ea9-496e-43d8-a6e9-8b31db6bfd95", + "id": "8793609c-0ec6-429c-99fa-95987b1e2ecd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117877,7 +122138,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -117888,7 +122149,7 @@ } }, { - "id": "b8478f7e-1860-4008-91bc-6b93ed49ec22", + "id": "d2e54563-e5f1-4571-ba62-745ed8ed222e", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -117908,7 +122169,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -117931,7 +122192,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/strongAuthSupported\",\n \"value\": true\n },\n {\n \"op\": \"replace\",\n \"path\": \"/businessName\",\n \"value\": \"acme-solar\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -117942,7 +122203,7 @@ }, "response": [ { - "id": "9cb41f46-a262-4ea8-8be1-e205155aa3f2", + "id": "e5522092-11b8-42a4-91f8-caa58834c852", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -117977,7 +122238,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/strongAuthSupported\",\n \"value\": true\n },\n {\n \"op\": \"replace\",\n \"path\": \"/businessName\",\n \"value\": \"acme-solar\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -117994,12 +122255,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"REFRESH_TOKEN\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"lastUsed\": \"\"\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1d12de4d-8562-4382-bdb5-fbe897b65590", + "id": "09ac158d-e4eb-49e1-9d81-0bf4e85d7ee4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118034,7 +122295,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/strongAuthSupported\",\n \"value\": true\n },\n {\n \"op\": \"replace\",\n \"path\": \"/businessName\",\n \"value\": \"acme-solar\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118051,12 +122312,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c16e330b-a260-4181-807e-735451119e30", + "id": "249ac8a8-2336-48b6-bac8-812f9d4a307b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118091,7 +122352,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/strongAuthSupported\",\n \"value\": true\n },\n {\n \"op\": \"replace\",\n \"path\": \"/businessName\",\n \"value\": \"acme-solar\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118108,12 +122369,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c43a4c19-e687-46e4-9138-f4d747358875", + "id": "686a7315-3530-43fc-a8bd-dc2bb25f1fdc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118148,7 +122409,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/strongAuthSupported\",\n \"value\": true\n },\n {\n \"op\": \"replace\",\n \"path\": \"/businessName\",\n \"value\": \"acme-solar\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118165,12 +122426,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "10657cdb-6daa-46ec-ab60-3826689fae0d", + "id": "3ace797d-cf3d-4924-8ee3-105484254633", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -118205,7 +122466,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/strongAuthSupported\",\n \"value\": true\n },\n {\n \"op\": \"replace\",\n \"path\": \"/businessName\",\n \"value\": \"acme-solar\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118222,12 +122483,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5195afa8-1352-4d95-8c87-a9ec3279bce0", + "id": "0a763b36-ca22-4210-bf3a-2b779f54cc95", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118262,7 +122523,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/strongAuthSupported\",\n \"value\": true\n },\n {\n \"op\": \"replace\",\n \"path\": \"/businessName\",\n \"value\": \"acme-solar\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118279,12 +122540,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f7267be9-45de-4ec8-a7d6-681c0b653aa0", + "id": "5d4ed82a-a16a-47ae-b72c-794aac2445ea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118319,7 +122580,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/strongAuthSupported\",\n \"value\": true\n },\n {\n \"op\": \"replace\",\n \"path\": \"/businessName\",\n \"value\": \"acme-solar\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118336,7 +122597,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -118353,7 +122614,7 @@ "description": "Operations for managing org configuration settings (eg. time zone)", "item": [ { - "id": "5ff21f77-9a6f-4dfe-af75-58577d2c751f", + "id": "831b27ac-3ca3-4e01-9e74-29b0976a24c3", "name": "Get Org configuration settings", "request": { "name": "Get Org configuration settings", @@ -118382,7 +122643,7 @@ }, "response": [ { - "id": "ed3a8514-93a5-4755-b3e7-1b26829c57bb", + "id": "9dfde502-1615-44e9-aefd-dde5eed88190", "name": "Request succeeded.", "originalRequest": { "url": { @@ -118420,12 +122681,12 @@ "value": "application/json" } ], - "body": "{\n \"orgName\": \"\",\n \"timeZone\": \"\",\n \"lcsChangeHonorsSourceEnableFeature\": \"\",\n \"armCustomerId\": \"\",\n \"armSapSystemIdMappings\": \"\",\n \"armAuth\": \"\",\n \"armDb\": \"\",\n \"armSsoUrl\": \"\",\n \"iaiEnableCertificationRecommendations\": \"\",\n \"sodReportConfigs\": [\n {\n \"columnName\": \"\",\n \"required\": false,\n \"included\": false,\n \"order\": \"\"\n },\n {\n \"columnName\": \"\",\n \"required\": false,\n \"included\": false,\n \"order\": \"\"\n }\n ]\n}", + "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"id anim\",\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": "ec579347-d2f8-45e5-aa65-8ef6898bc21a", + "id": "ed4bb19b-734e-491c-b61d-309ca1d2c71f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118463,12 +122724,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5e30a818-6318-43bd-8778-4faa85516470", + "id": "d8954402-18ca-4c20-afa7-62980a700160", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118506,12 +122767,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca20d969-095e-435f-a917-386896fafa48", + "id": "441a23dd-65b3-45a9-9358-4d734d51e446", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118549,12 +122810,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6eb89f9b-822b-46c9-a1e2-188015d518ed", + "id": "cf55b056-82d1-4730-9956-0fa6d7d210f4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -118592,12 +122853,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6b321c4f-5e1b-4707-82ec-bd9911a9c401", + "id": "d1f6ee01-a8e4-4aed-acd8-daaddb6e3a20", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118635,12 +122896,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5c0e9d9c-f6ef-4430-b974-4a362e7c24f6", + "id": "d7c6d86f-4e0f-4450-b049-465b310d4b84", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118678,7 +122939,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -118689,7 +122950,7 @@ } }, { - "id": "18366fd3-541b-4fc4-ab9a-ce165f64916c", + "id": "2179063d-8a37-481e-bfc7-8a86f4a6b9e5", "name": "Patch an Org configuration property", "request": { "name": "Patch an Org configuration property", @@ -118720,7 +122981,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/timeZone\",\n \"value\": \"America/Toronto\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118731,7 +122992,7 @@ }, "response": [ { - "id": "c9f5562e-34da-4cb4-9276-7905168f9517", + "id": "f1840d47-7cd8-4970-8f81-684604ab608a", "name": "The Org was successfully patched.", "originalRequest": { "url": { @@ -118765,7 +123026,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/timeZone\",\n \"value\": \"America/Toronto\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118782,12 +123043,12 @@ "value": "application/json" } ], - "body": "{\n \"orgName\": \"\",\n \"timeZone\": \"\",\n \"lcsChangeHonorsSourceEnableFeature\": \"\",\n \"armCustomerId\": \"\",\n \"armSapSystemIdMappings\": \"\",\n \"armAuth\": \"\",\n \"armDb\": \"\",\n \"armSsoUrl\": \"\",\n \"iaiEnableCertificationRecommendations\": \"\",\n \"sodReportConfigs\": [\n {\n \"columnName\": \"\",\n \"required\": false,\n \"included\": false,\n \"order\": \"\"\n },\n {\n \"columnName\": \"\",\n \"required\": false,\n \"included\": false,\n \"order\": \"\"\n }\n ]\n}", + "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"id anim\",\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": "11bf7d52-80a7-4dfb-9157-f1d9e261df8d", + "id": "5143beb6-ea4f-40c0-9e47-268aa17da2ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118821,7 +123082,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/timeZone\",\n \"value\": \"America/Toronto\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118838,12 +123099,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "76897292-afc3-4290-a1d8-e4c77583db6e", + "id": "bc977367-e0f8-4404-b3c4-a1e8904b4fbf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118877,7 +123138,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/timeZone\",\n \"value\": \"America/Toronto\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118894,12 +123155,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "139353f8-45fb-4ed5-9727-78f9ad7c2d37", + "id": "01d9d0cb-9a7b-4b32-803d-3887743dde04", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118933,7 +123194,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/timeZone\",\n \"value\": \"America/Toronto\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118950,12 +123211,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "62c2292a-4447-41e5-8cfd-31fdf96e5d59", + "id": "31f05a85-77b0-435f-bffa-febfb33d9a48", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -118989,7 +123250,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/timeZone\",\n \"value\": \"America/Toronto\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -119006,12 +123267,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "45f8085f-4116-440a-8429-83131ee0236e", + "id": "6248cef3-ee33-4cc3-9c66-1a5992e16c01", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119045,7 +123306,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/timeZone\",\n \"value\": \"America/Toronto\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -119062,12 +123323,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "375571df-2de6-4d6a-8385-f1ee3b72c88b", + "id": "868b419f-84de-4298-ae07-c8ed3174cbc6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119101,7 +123362,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/timeZone\",\n \"value\": \"America/Toronto\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -119118,7 +123379,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -119129,7 +123390,7 @@ } }, { - "id": "5fb121b2-3a4b-463a-af7e-ff5165b94284", + "id": "cd82332d-98cd-4240-a6a4-1d740e1deb82", "name": "Get list of time zones", "request": { "name": "Get list of time zones", @@ -119159,7 +123420,7 @@ }, "response": [ { - "id": "36413a8f-4e65-4a0f-a892-c0b978d83316", + "id": "72762306-a10a-4dca-93d2-1a3cfa862686", "name": "Request successful", "originalRequest": { "url": { @@ -119198,12 +123459,12 @@ "value": "application/json" } ], - "body": "[\n \"\",\n \"\"\n]", + "body": "[\n \"Etc/GMT-6\",\n \"Etc/GMT+8\",\n \"EST\",\n \"America/Chicago\",\n \"America/Toronto\",\n \"Asia/Gaza\",\n \"Europe/Brussels\",\n \"Europe/Kiev\"\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0de5ef5f-d487-414c-8852-d1bff5e83f06", + "id": "b504f740-2ded-423e-83c4-1a91f7ddbd00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119242,12 +123503,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "96a49390-a496-4c32-a05a-3452937391f1", + "id": "42553fbf-d85d-4959-bb72-861553d37152", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119286,12 +123547,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "333167c3-2124-491f-ae50-49ec46d07d61", + "id": "a6c158e9-6a30-494d-81e2-5914367418cc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119330,12 +123591,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e6402c4a-1314-426e-bc18-8f35f4019ab6", + "id": "fa3daa72-c498-4f0d-95f1-d239e8669b04", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119374,12 +123635,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "590ee9c0-7f1e-481e-9522-72426f358d23", + "id": "dd37b5a2-c7ec-4f45-b4bb-e155ddf4cc97", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119418,7 +123679,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -119435,7 +123696,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": "2cf50474-ecad-4441-9409-bed8189c8f72", + "id": "5e7e8062-2e35-4750-831b-3e180d153f1e", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -119464,7 +123725,7 @@ }, "response": [ { - "id": "026570f2-047f-4003-9c53-768ddf837874", + "id": "d7abd864-4db7-40fd-a731-9fbe82f4b348", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -119502,12 +123763,12 @@ "value": "application/json" } ], - "body": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "body": "{\n \"customInstructionsEnabled\": true,\n \"digitTokenDurationMinutes\": 9,\n \"digitTokenEnabled\": false,\n \"digitTokenLength\": 6\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b81f7c3b-1fec-47a7-b008-30188058515e", + "id": "bba1f317-827a-4535-ab7e-e5d2633c09e6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119545,12 +123806,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4881b9a0-b5e3-4399-9cbf-28ff70c091da", + "id": "80ea3a61-8b9e-42f3-9cda-70c9cc55b930", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119588,12 +123849,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb970162-7c73-4df5-ba63-75d6e5b85420", + "id": "49833417-0b46-414b-bc49-58eb8e507781", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119631,12 +123892,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "dc455209-4735-4e2b-87db-f8b1eeed7bb7", + "id": "68f0534c-e1ce-4482-969f-99d282146c28", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119674,12 +123935,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "37f0e208-62d3-42c3-8696-2e357ba8b2a1", + "id": "9dad9e79-ec57-427e-8557-1b29f3d6aef8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119717,7 +123978,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -119728,7 +123989,7 @@ } }, { - "id": "0c9cd5e2-e66c-44fe-a4aa-75c3552db602", + "id": "9b4cbac1-2926-4e94-92d4-a52d9058fee7", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -119759,7 +124020,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "raw": "{\n \"digitTokenEnabled\": true,\n \"digitTokenDurationMinutes\": 12\n}", "options": { "raw": { "headerFamily": "json", @@ -119770,7 +124031,7 @@ }, "response": [ { - "id": "eaced452-ab6e-4b60-b39e-296ba9e4223a", + "id": "b5e402ea-afe8-4bc9-9a4a-88253ec982d8", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -119804,7 +124065,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "raw": "{\n \"digitTokenEnabled\": true,\n \"digitTokenDurationMinutes\": 12\n}", "options": { "raw": { "headerFamily": "json", @@ -119821,12 +124082,12 @@ "value": "application/json" } ], - "body": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "body": "{\n \"customInstructionsEnabled\": true,\n \"digitTokenDurationMinutes\": 12,\n \"digitTokenEnabled\": true,\n \"digitTokenLength\": 6\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "68a2237d-7f94-4afe-b342-3fac74102366", + "id": "d94fcb5e-ee92-4372-8100-6eb02c61775b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119860,7 +124121,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "raw": "{\n \"digitTokenEnabled\": true,\n \"digitTokenDurationMinutes\": 12\n}", "options": { "raw": { "headerFamily": "json", @@ -119877,12 +124138,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "19eb34b7-9bd7-4daf-82e3-a53e3456ac36", + "id": "64109fcc-c421-49fb-bf2b-1d15fc4b3636", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119916,7 +124177,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "raw": "{\n \"digitTokenEnabled\": true,\n \"digitTokenDurationMinutes\": 12\n}", "options": { "raw": { "headerFamily": "json", @@ -119933,12 +124194,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "14dcd986-0171-437f-b0d9-0b9a07dd63ac", + "id": "c3f9ba48-36e8-427b-bd0a-59ccd2878bde", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119972,7 +124233,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "raw": "{\n \"digitTokenEnabled\": true,\n \"digitTokenDurationMinutes\": 12\n}", "options": { "raw": { "headerFamily": "json", @@ -119989,12 +124250,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b921a316-8927-4878-81db-12dfe99f4cd8", + "id": "5dd84f49-934c-4415-9ac5-e8f73c956b00", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120028,7 +124289,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "raw": "{\n \"digitTokenEnabled\": true,\n \"digitTokenDurationMinutes\": 12\n}", "options": { "raw": { "headerFamily": "json", @@ -120045,12 +124306,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f09f8ff7-9fb6-4c70-abb7-79d4566e8d48", + "id": "3221c89a-c518-4ff1-8474-4dae1dec7a94", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120084,7 +124345,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "raw": "{\n \"digitTokenEnabled\": true,\n \"digitTokenDurationMinutes\": 12\n}", "options": { "raw": { "headerFamily": "json", @@ -120101,7 +124362,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -120112,7 +124373,7 @@ } }, { - "id": "4f2cc0c1-f862-4d08-88d8-2dbbb2c1854a", + "id": "77e83810-1d95-4c37-a593-293558505fca", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -120143,7 +124404,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "raw": "{\n \"customInstructionsEnabled\": true,\n \"digitTokenEnabled\": true,\n \"digitTokenDurationMinutes\": 12,\n \"digitTokenLength\": 9\n}", "options": { "raw": { "headerFamily": "json", @@ -120154,7 +124415,7 @@ }, "response": [ { - "id": "56894ed9-8424-4998-8442-ac3b2c93633c", + "id": "117b1947-b505-4322-8537-b9352082dcde", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -120188,7 +124449,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "raw": "{\n \"customInstructionsEnabled\": true,\n \"digitTokenEnabled\": true,\n \"digitTokenDurationMinutes\": 12,\n \"digitTokenLength\": 9\n}", "options": { "raw": { "headerFamily": "json", @@ -120205,12 +124466,12 @@ "value": "application/json" } ], - "body": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "body": "{\n \"customInstructionsEnabled\": true,\n \"digitTokenDurationMinutes\": 9,\n \"digitTokenEnabled\": true,\n \"digitTokenLength\": 12\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3c3ddca-deef-412e-97e4-38975a0ab4af", + "id": "5fb66b39-3f5a-4da6-82ec-ac47ba728adb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120244,7 +124505,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "raw": "{\n \"customInstructionsEnabled\": true,\n \"digitTokenEnabled\": true,\n \"digitTokenDurationMinutes\": 12,\n \"digitTokenLength\": 9\n}", "options": { "raw": { "headerFamily": "json", @@ -120261,12 +124522,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "135b7f48-3fa9-4e45-82b0-8b9b15158043", + "id": "95e52bc3-0d90-482f-a402-d59e8882e6d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120300,7 +124561,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "raw": "{\n \"customInstructionsEnabled\": true,\n \"digitTokenEnabled\": true,\n \"digitTokenDurationMinutes\": 12,\n \"digitTokenLength\": 9\n}", "options": { "raw": { "headerFamily": "json", @@ -120317,12 +124578,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cd84a83e-f114-421d-a5a6-3db57173ba27", + "id": "e5303c2a-a61f-43ef-8fcb-3e38f36c9803", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120356,7 +124617,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "raw": "{\n \"customInstructionsEnabled\": true,\n \"digitTokenEnabled\": true,\n \"digitTokenDurationMinutes\": 12,\n \"digitTokenLength\": 9\n}", "options": { "raw": { "headerFamily": "json", @@ -120373,12 +124634,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "25e62cb1-5de4-45e4-8e26-74a411afbc62", + "id": "ceb3065e-2e63-4c4b-bdcc-9ac543bf3b08", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120412,7 +124673,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "raw": "{\n \"customInstructionsEnabled\": true,\n \"digitTokenEnabled\": true,\n \"digitTokenDurationMinutes\": 12,\n \"digitTokenLength\": 9\n}", "options": { "raw": { "headerFamily": "json", @@ -120429,12 +124690,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dcdfa7d5-f14b-42c6-8797-88dc6716ce72", + "id": "4d2765ef-6ccc-41ba-9404-f64204572d85", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120468,7 +124729,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"customInstructionsEnabled\": false,\n \"digitTokenEnabled\": false,\n \"digitTokenDurationMinutes\": 5,\n \"digitTokenLength\": 6\n}", + "raw": "{\n \"customInstructionsEnabled\": true,\n \"digitTokenEnabled\": true,\n \"digitTokenDurationMinutes\": 12,\n \"digitTokenLength\": 9\n}", "options": { "raw": { "headerFamily": "json", @@ -120485,7 +124746,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -120502,7 +124763,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": "491279c8-dc56-479f-bc7e-a8276daaa317", + "id": "88d72e4d-af0e-40ab-bdc1-2a3667779379", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -120531,7 +124792,7 @@ }, "response": [ { - "id": "337049a5-79e8-4f75-97c5-27a620fe14fb", + "id": "85203f26-83ba-4ef4-9662-832844d56cd3", "name": "A password dictionary response", "originalRequest": { "url": { @@ -120569,12 +124830,12 @@ "value": "text/plain" } ], - "body": "", + "body": "velit aliquip", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "1dc233bc-f3ad-4e8e-9a53-f06f462ed607", + "id": "e499e260-5270-4c12-b15c-e390171c0805", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120612,12 +124873,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5340b8f3-32d9-432b-bfd3-09b4e5cd1704", + "id": "d8e1372f-1ec9-432b-9ae7-fb25b8f1b05d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120655,12 +124916,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "198036ea-d35c-40e3-bc3c-83a4cdf5b333", + "id": "ca293d1e-ac0b-4c50-abe6-21d0bcff7f88", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120698,12 +124959,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4b2ebec1-f21d-47f0-a7cc-0dce7ddc49d0", + "id": "6eba9f6f-ab35-4910-9cdb-b8b86b126fdf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -120741,12 +125002,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2802b1b2-8f54-4812-9881-b7899667bfbe", + "id": "cd74e828-2749-4037-a328-a12a9cd59520", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120784,12 +125045,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7fd21733-fd6a-42a3-b9ab-40601fcc9aaa", + "id": "eb2a5ef8-808b-4b65-a43e-8de5f463af66", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120827,7 +125088,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -120838,7 +125099,7 @@ } }, { - "id": "cd092827-325c-40ef-a18c-d733e02bd328", + "id": "4482a302-ed14-4228-9e76-0648e403c5c6", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -120876,7 +125137,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -120884,7 +125145,7 @@ }, "response": [ { - "id": "18e2c4b6-1e10-49c0-a181-a01b4469369c", + "id": "f718a987-9354-4c8c-9be5-bc9593411e79", "name": "Successfully updated.", "originalRequest": { "url": { @@ -120921,7 +125182,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -120934,7 +125195,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7ff42973-61ad-46e2-9cc7-9e75005316bc", + "id": "24f4278e-9455-41cd-b8be-8421241af4b5", "name": "Created.", "originalRequest": { "url": { @@ -120971,7 +125232,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -120984,7 +125245,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5843666b-cf7f-45b5-8856-31e011001757", + "id": "ade33056-e3b3-42d6-b60a-d1d59bf0b6a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121025,7 +125286,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -121039,12 +125300,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1b5de2f4-c190-4d94-8740-d97fa857d891", + "id": "4233adef-41c3-4faf-aeb6-f92ec9e90808", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121085,7 +125346,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -121099,12 +125360,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80171be8-1758-48fe-94b2-47b2827c7810", + "id": "69340cf5-fe21-448d-9586-cd0726e222b3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121145,7 +125406,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -121159,12 +125420,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a0f2c39f-e4a0-4336-8eff-fd3e12114757", + "id": "5b8c412d-98d8-4f5b-a19e-e1fc39f039e0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121205,7 +125466,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -121219,12 +125480,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "16688000-bcef-4b22-a94b-ef9706209964", + "id": "a41ed467-5979-43ac-9997-0e58d4c3a309", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121265,7 +125526,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -121279,12 +125540,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a64c6bac-2d4b-4aa8-a999-8ba6da4199e9", + "id": "6a8758a8-d0bf-4f6c-9612-37069dc968a5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121325,7 +125586,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -121339,7 +125600,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -121356,7 +125617,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": "ce50a5a6-230c-494a-9240-d164001ae374", + "id": "0ae631ee-9788-42e5-beaa-57847a9a1572", "name": "Generate a digit token", "request": { "name": "Generate a digit token", @@ -121388,7 +125649,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\",\n \"length\": \"\",\n \"durationMinutes\": \"\"\n}", + "raw": "{\n \"userId\": \"Abby.Smith\",\n \"length\": 8,\n \"durationMinutes\": 5\n}", "options": { "raw": { "headerFamily": "json", @@ -121399,7 +125660,7 @@ }, "response": [ { - "id": "3fb6b561-a9d7-4c52-a9d8-fa72156ba0cd", + "id": "ecb10422-8c6f-4fd3-933a-cd5a2957b89c", "name": "The digit token for password management.", "originalRequest": { "url": { @@ -121434,7 +125695,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\",\n \"length\": \"\",\n \"durationMinutes\": \"\"\n}", + "raw": "{\n \"userId\": \"Abby.Smith\",\n \"length\": 8,\n \"durationMinutes\": 5\n}", "options": { "raw": { "headerFamily": "json", @@ -121451,12 +125712,12 @@ "value": "application/json" } ], - "body": "{\n \"digitToken\": \"\",\n \"requestId\": \"\"\n}", + "body": "{\n \"digitToken\": 9087713,\n \"requestId\": \"e1267ecd-fcd9-4c73-9c55-12555efad136\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "99342489-fa6b-4ca4-a5fa-6b468c6add79", + "id": "2e0f6563-d58d-4189-8796-c02cfc578e91", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121491,7 +125752,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\",\n \"length\": \"\",\n \"durationMinutes\": \"\"\n}", + "raw": "{\n \"userId\": \"Abby.Smith\",\n \"length\": 8,\n \"durationMinutes\": 5\n}", "options": { "raw": { "headerFamily": "json", @@ -121508,12 +125769,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3784e5b0-7672-421b-8f4a-4af37e64d679", + "id": "aa1b0e5a-6fbc-4568-a090-315ab4656dfc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121548,7 +125809,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\",\n \"length\": \"\",\n \"durationMinutes\": \"\"\n}", + "raw": "{\n \"userId\": \"Abby.Smith\",\n \"length\": 8,\n \"durationMinutes\": 5\n}", "options": { "raw": { "headerFamily": "json", @@ -121565,12 +125826,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "13c97e50-5df5-4dbe-8528-9188ff2d362c", + "id": "f5657f43-c291-4ff0-864f-7169d0b180c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121605,7 +125866,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userId\": \"\",\n \"length\": \"\",\n \"durationMinutes\": \"\"\n}", + "raw": "{\n \"userId\": \"Abby.Smith\",\n \"length\": 8,\n \"durationMinutes\": 5\n}", "options": { "raw": { "headerFamily": "json", @@ -121622,7 +125883,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -121633,7 +125894,7 @@ } }, { - "id": "bf7e96e7-5b9c-4b5f-9c90-13171246d1b9", + "id": "07f239e3-0c01-4ac3-8ce5-39647fe13293", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -121664,7 +125925,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userName\": \"\",\n \"sourceName\": \"\"\n}", + "raw": "{\n \"userName\": \"Abby.Smith\",\n \"sourceName\": \"My-AD\"\n}", "options": { "raw": { "headerFamily": "json", @@ -121675,7 +125936,7 @@ }, "response": [ { - "id": "05806d72-bc47-40a3-8317-77ba3ff88a05", + "id": "f640763a-c748-41a2-b640-7faea1b2dea4", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -121709,7 +125970,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userName\": \"\",\n \"sourceName\": \"\"\n}", + "raw": "{\n \"userName\": \"Abby.Smith\",\n \"sourceName\": \"My-AD\"\n}", "options": { "raw": { "headerFamily": "json", @@ -121726,12 +125987,12 @@ "value": "application/json" } ], - "body": "{\n \"identityId\": \"\",\n \"sourceId\": \"\",\n \"publicKeyId\": \"\",\n \"publicKey\": \"\",\n \"accounts\": [\n {\n \"accountId\": \"\",\n \"accountName\": \"\"\n },\n {\n \"accountId\": \"\",\n \"accountName\": \"\"\n }\n ],\n \"policies\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"identityId\": \"2c918085744fec4301746f9a5bce4611\",\n \"sourceId\": \"2c918083746f642c01746f9908840111\",\n \"publicKeyId\": \"N2M1OTJiMGEtMDJlZS00ZWU3LTkyYTEtNjA5YmI5NWE3ZWVA\",\n \"publicKey\": \"AIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuGFkWi2J75TztpbaPKd36bJnIB3J8gZ6UcoS9oSDYsqBzPpTsfZXYaEf4Y4BKGgJIXmE/lwhwuj7mU1itdZ2qTSNFtnXA8Fn75c3UUkk+h+wdZbkuSmqlsJo3R1OnJkwkJggcAy9Jvk9jlcrNLWorpQ1w9raUvxtvfgkSdq153KxotenQ1HciSyZ0nA/Kw0UaucLnho8xdRowZs11afXGXA9IT9H6D8T6zUdtSxm0nAyH+mluma5LdTfaM50W3l/L8q56Vrqmx2pZIiwdx/0+g3Y++jV70zom0ZBkC1MmSoLMrQYG5OICNjr72f78B2PaGXfarQHqARLjKpMVt9YIQIDAQAB\",\n \"accounts\": [\n {\n \"accountId\": \"CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com\",\n \"accountName\": \"Abby.Smith\"\n }\n ],\n \"policies\": [\n \"passwordRepeatedChar is 3\",\n \"passwordMinAlpha is 1\",\n \"passwordMinLength is 5\",\n \"passwordMinNumeric is 1\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e25173a3-e61e-459c-bfc2-dd862c9d2fa6", + "id": "1a1c4e6d-60f4-4f13-8245-e622adcfaab5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121765,7 +126026,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userName\": \"\",\n \"sourceName\": \"\"\n}", + "raw": "{\n \"userName\": \"Abby.Smith\",\n \"sourceName\": \"My-AD\"\n}", "options": { "raw": { "headerFamily": "json", @@ -121782,12 +126043,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9249f567-321e-41ae-b3a0-c23265ff5586", + "id": "aea80e23-b855-45dd-be71-4ac1f93181ad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121821,7 +126082,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userName\": \"\",\n \"sourceName\": \"\"\n}", + "raw": "{\n \"userName\": \"Abby.Smith\",\n \"sourceName\": \"My-AD\"\n}", "options": { "raw": { "headerFamily": "json", @@ -121838,12 +126099,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5ca589c6-0bf6-475d-9106-16516f543e61", + "id": "72b8887c-5ab5-467e-b74c-f6270688726b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121877,7 +126138,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userName\": \"\",\n \"sourceName\": \"\"\n}", + "raw": "{\n \"userName\": \"Abby.Smith\",\n \"sourceName\": \"My-AD\"\n}", "options": { "raw": { "headerFamily": "json", @@ -121894,12 +126155,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ff0b3ed4-f676-4e5c-a15f-523097a1beec", + "id": "88e2888e-98c0-48e6-b97b-eade35f6adb4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121933,7 +126194,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userName\": \"\",\n \"sourceName\": \"\"\n}", + "raw": "{\n \"userName\": \"Abby.Smith\",\n \"sourceName\": \"My-AD\"\n}", "options": { "raw": { "headerFamily": "json", @@ -121950,12 +126211,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d4442624-0323-430e-b660-9a1922213620", + "id": "7f84f61a-9d13-4bf9-84b0-7a485f3d7f75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121989,7 +126250,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"userName\": \"\",\n \"sourceName\": \"\"\n}", + "raw": "{\n \"userName\": \"Abby.Smith\",\n \"sourceName\": \"My-AD\"\n}", "options": { "raw": { "headerFamily": "json", @@ -122006,7 +126267,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -122017,7 +126278,7 @@ } }, { - "id": "d919e486-3c85-4240-bf62-846f885221a6", + "id": "f7917bab-ce65-46f9-9e0d-81a4fe28a554", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", @@ -122048,7 +126309,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"encryptedPassword\": \"\",\n \"publicKeyId\": \"\",\n \"accountId\": \"\",\n \"sourceId\": \"\"\n}", + "raw": "{\n \"identityId\": \"8a807d4c73c545510173c545f0a002ff\",\n \"encryptedPassword\": \"GIAP7TaAg7Y2EJtFojokBDvHQ/iXF3qk0z0+eLusqXMSkEhAfr34GydFLy+BM2uZB94cwbTYKi9rRrCRRdh8610VeqpRDjhuc28nOPYqTJOx09IGJdr8dl4mbhC1f21JCqMBBrFSA4VQQvd6OMVsceoXTjDI0aKahRYNjlMlsOuaIUZeNQxWBydLuR6vYG3qAKEPCzYZbvyYuBUylUWArfqwV4dgwKGDgDkTLBkQU9LVu3rssc+BXaex6l6JcBDiPg7wvKD1G3lZ+BaGrMknbx3j0T2Uivg+HxwTf7PmtAua6O9M7F984c79KM+sYFTU37MAdlWZu/cy+w2DdHVdCg==\",\n \"publicKeyId\": \"YWQ2NjQ4MTItZjY0NC00MWExLWFjMjktOGNmMzU3Y2VlNjk2\",\n \"accountId\": \"CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com\",\n \"sourceId\": \"8a807d4c73c545510173c545d4b60246\"\n}", "options": { "raw": { "headerFamily": "json", @@ -122059,7 +126320,7 @@ }, "response": [ { - "id": "aa5bda16-0303-4ba3-a5e0-60bab20910de", + "id": "a5550fb3-db64-4505-baa2-69a1d8627687", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -122093,7 +126354,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"encryptedPassword\": \"\",\n \"publicKeyId\": \"\",\n \"accountId\": \"\",\n \"sourceId\": \"\"\n}", + "raw": "{\n \"identityId\": \"8a807d4c73c545510173c545f0a002ff\",\n \"encryptedPassword\": \"GIAP7TaAg7Y2EJtFojokBDvHQ/iXF3qk0z0+eLusqXMSkEhAfr34GydFLy+BM2uZB94cwbTYKi9rRrCRRdh8610VeqpRDjhuc28nOPYqTJOx09IGJdr8dl4mbhC1f21JCqMBBrFSA4VQQvd6OMVsceoXTjDI0aKahRYNjlMlsOuaIUZeNQxWBydLuR6vYG3qAKEPCzYZbvyYuBUylUWArfqwV4dgwKGDgDkTLBkQU9LVu3rssc+BXaex6l6JcBDiPg7wvKD1G3lZ+BaGrMknbx3j0T2Uivg+HxwTf7PmtAua6O9M7F984c79KM+sYFTU37MAdlWZu/cy+w2DdHVdCg==\",\n \"publicKeyId\": \"YWQ2NjQ4MTItZjY0NC00MWExLWFjMjktOGNmMzU3Y2VlNjk2\",\n \"accountId\": \"CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com\",\n \"sourceId\": \"8a807d4c73c545510173c545d4b60246\"\n}", "options": { "raw": { "headerFamily": "json", @@ -122110,12 +126371,12 @@ "value": "application/json" } ], - "body": "{\n \"requestId\": \"\",\n \"state\": \"IN_PROGRESS\"\n}", + "body": "{\n \"state\": \"IN_PROGRESS\",\n \"requestId\": \"089899f13a8f4da7824996191587bab9\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "366236fa-3640-49a6-a7a5-94789bbce444", + "id": "95f238f1-84ca-4472-a67a-59fa3957e52a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122149,7 +126410,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"encryptedPassword\": \"\",\n \"publicKeyId\": \"\",\n \"accountId\": \"\",\n \"sourceId\": \"\"\n}", + "raw": "{\n \"identityId\": \"8a807d4c73c545510173c545f0a002ff\",\n \"encryptedPassword\": \"GIAP7TaAg7Y2EJtFojokBDvHQ/iXF3qk0z0+eLusqXMSkEhAfr34GydFLy+BM2uZB94cwbTYKi9rRrCRRdh8610VeqpRDjhuc28nOPYqTJOx09IGJdr8dl4mbhC1f21JCqMBBrFSA4VQQvd6OMVsceoXTjDI0aKahRYNjlMlsOuaIUZeNQxWBydLuR6vYG3qAKEPCzYZbvyYuBUylUWArfqwV4dgwKGDgDkTLBkQU9LVu3rssc+BXaex6l6JcBDiPg7wvKD1G3lZ+BaGrMknbx3j0T2Uivg+HxwTf7PmtAua6O9M7F984c79KM+sYFTU37MAdlWZu/cy+w2DdHVdCg==\",\n \"publicKeyId\": \"YWQ2NjQ4MTItZjY0NC00MWExLWFjMjktOGNmMzU3Y2VlNjk2\",\n \"accountId\": \"CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com\",\n \"sourceId\": \"8a807d4c73c545510173c545d4b60246\"\n}", "options": { "raw": { "headerFamily": "json", @@ -122166,12 +126427,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c5a1eea1-dab1-43a9-85ea-b8df8c6670b6", + "id": "492d9d84-10a5-4433-adf8-a5fc205a89f5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122205,7 +126466,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"encryptedPassword\": \"\",\n \"publicKeyId\": \"\",\n \"accountId\": \"\",\n \"sourceId\": \"\"\n}", + "raw": "{\n \"identityId\": \"8a807d4c73c545510173c545f0a002ff\",\n \"encryptedPassword\": \"GIAP7TaAg7Y2EJtFojokBDvHQ/iXF3qk0z0+eLusqXMSkEhAfr34GydFLy+BM2uZB94cwbTYKi9rRrCRRdh8610VeqpRDjhuc28nOPYqTJOx09IGJdr8dl4mbhC1f21JCqMBBrFSA4VQQvd6OMVsceoXTjDI0aKahRYNjlMlsOuaIUZeNQxWBydLuR6vYG3qAKEPCzYZbvyYuBUylUWArfqwV4dgwKGDgDkTLBkQU9LVu3rssc+BXaex6l6JcBDiPg7wvKD1G3lZ+BaGrMknbx3j0T2Uivg+HxwTf7PmtAua6O9M7F984c79KM+sYFTU37MAdlWZu/cy+w2DdHVdCg==\",\n \"publicKeyId\": \"YWQ2NjQ4MTItZjY0NC00MWExLWFjMjktOGNmMzU3Y2VlNjk2\",\n \"accountId\": \"CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com\",\n \"sourceId\": \"8a807d4c73c545510173c545d4b60246\"\n}", "options": { "raw": { "headerFamily": "json", @@ -122222,12 +126483,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "daab875e-e18f-4520-af31-93da1b83b9be", + "id": "43ca292e-f10f-4f03-bd84-9d1c0f5f09cb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122261,7 +126522,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"encryptedPassword\": \"\",\n \"publicKeyId\": \"\",\n \"accountId\": \"\",\n \"sourceId\": \"\"\n}", + "raw": "{\n \"identityId\": \"8a807d4c73c545510173c545f0a002ff\",\n \"encryptedPassword\": \"GIAP7TaAg7Y2EJtFojokBDvHQ/iXF3qk0z0+eLusqXMSkEhAfr34GydFLy+BM2uZB94cwbTYKi9rRrCRRdh8610VeqpRDjhuc28nOPYqTJOx09IGJdr8dl4mbhC1f21JCqMBBrFSA4VQQvd6OMVsceoXTjDI0aKahRYNjlMlsOuaIUZeNQxWBydLuR6vYG3qAKEPCzYZbvyYuBUylUWArfqwV4dgwKGDgDkTLBkQU9LVu3rssc+BXaex6l6JcBDiPg7wvKD1G3lZ+BaGrMknbx3j0T2Uivg+HxwTf7PmtAua6O9M7F984c79KM+sYFTU37MAdlWZu/cy+w2DdHVdCg==\",\n \"publicKeyId\": \"YWQ2NjQ4MTItZjY0NC00MWExLWFjMjktOGNmMzU3Y2VlNjk2\",\n \"accountId\": \"CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com\",\n \"sourceId\": \"8a807d4c73c545510173c545d4b60246\"\n}", "options": { "raw": { "headerFamily": "json", @@ -122278,12 +126539,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8883a1e1-38ee-4912-abbc-444c67146038", + "id": "39e5cbcc-cb0a-496f-9e8d-cd29162629cf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122317,7 +126578,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"encryptedPassword\": \"\",\n \"publicKeyId\": \"\",\n \"accountId\": \"\",\n \"sourceId\": \"\"\n}", + "raw": "{\n \"identityId\": \"8a807d4c73c545510173c545f0a002ff\",\n \"encryptedPassword\": \"GIAP7TaAg7Y2EJtFojokBDvHQ/iXF3qk0z0+eLusqXMSkEhAfr34GydFLy+BM2uZB94cwbTYKi9rRrCRRdh8610VeqpRDjhuc28nOPYqTJOx09IGJdr8dl4mbhC1f21JCqMBBrFSA4VQQvd6OMVsceoXTjDI0aKahRYNjlMlsOuaIUZeNQxWBydLuR6vYG3qAKEPCzYZbvyYuBUylUWArfqwV4dgwKGDgDkTLBkQU9LVu3rssc+BXaex6l6JcBDiPg7wvKD1G3lZ+BaGrMknbx3j0T2Uivg+HxwTf7PmtAua6O9M7F984c79KM+sYFTU37MAdlWZu/cy+w2DdHVdCg==\",\n \"publicKeyId\": \"YWQ2NjQ4MTItZjY0NC00MWExLWFjMjktOGNmMzU3Y2VlNjk2\",\n \"accountId\": \"CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com\",\n \"sourceId\": \"8a807d4c73c545510173c545d4b60246\"\n}", "options": { "raw": { "headerFamily": "json", @@ -122334,12 +126595,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb4e806f-89fb-468a-aaf9-feb8dc09d23d", + "id": "6e9a7896-2863-4e3c-9728-19f09fcde548", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122373,7 +126634,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"encryptedPassword\": \"\",\n \"publicKeyId\": \"\",\n \"accountId\": \"\",\n \"sourceId\": \"\"\n}", + "raw": "{\n \"identityId\": \"8a807d4c73c545510173c545f0a002ff\",\n \"encryptedPassword\": \"GIAP7TaAg7Y2EJtFojokBDvHQ/iXF3qk0z0+eLusqXMSkEhAfr34GydFLy+BM2uZB94cwbTYKi9rRrCRRdh8610VeqpRDjhuc28nOPYqTJOx09IGJdr8dl4mbhC1f21JCqMBBrFSA4VQQvd6OMVsceoXTjDI0aKahRYNjlMlsOuaIUZeNQxWBydLuR6vYG3qAKEPCzYZbvyYuBUylUWArfqwV4dgwKGDgDkTLBkQU9LVu3rssc+BXaex6l6JcBDiPg7wvKD1G3lZ+BaGrMknbx3j0T2Uivg+HxwTf7PmtAua6O9M7F984c79KM+sYFTU37MAdlWZu/cy+w2DdHVdCg==\",\n \"publicKeyId\": \"YWQ2NjQ4MTItZjY0NC00MWExLWFjMjktOGNmMzU3Y2VlNjk2\",\n \"accountId\": \"CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com\",\n \"sourceId\": \"8a807d4c73c545510173c545d4b60246\"\n}", "options": { "raw": { "headerFamily": "json", @@ -122390,7 +126651,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -122401,7 +126662,7 @@ } }, { - "id": "4804624e-3d18-4bc2-8e15-26100a0d8ef1", + "id": "fb2a1022-9fd5-478e-9771-95f1654e1a99", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -122421,7 +126682,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "velit aliquip", "key": "id", "disabled": true, "description": { @@ -122442,7 +126703,7 @@ }, "response": [ { - "id": "7da7563a-5ac2-4a6d-809a-0dd9fa1411ef", + "id": "edc94617-1a3b-447f-bc6f-bbf0a722f278", "name": "Status of the password change request", "originalRequest": { "url": { @@ -122481,12 +126742,12 @@ "value": "application/json" } ], - "body": "{\n \"requestId\": \"\",\n \"state\": \"IN_PROGRESS\",\n \"errors\": [\n \"\",\n \"\"\n ],\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"status\": \"IN_PROCESS\",\n \"reqeustId\": \"089899f13a8f4da7824996191587bab9\",\n \"error\": null\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8c5e1564-732c-417f-9943-f67d116e8569", + "id": "d4620ab2-e210-4867-9157-ad40080be204", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122525,12 +126786,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "75b98332-e0eb-486d-b18c-a0519070c10a", + "id": "e981417a-0b07-4bba-811c-82e6e07cb626", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122569,12 +126830,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c798feb7-4a49-41d6-b044-1a0803a87fa0", + "id": "5f2fd777-2189-47a9-a3dc-793f74d4b8cc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122613,12 +126874,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0b016e27-21c9-4bcd-bacf-657e44b70530", + "id": "f08549a2-95ed-4592-9007-b89c75ed871a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122657,12 +126918,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d14f8bba-5752-4d12-83ca-705296189d69", + "id": "ce3918c4-89c8-49bf-ab39-b814e05e2614", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122701,7 +126962,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -122718,7 +126979,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": "9753d3ab-faf1-47ef-9d8c-c70dff0a3c17", + "id": "13e6aa78-6a3e-470d-9e00-0d83a010e251", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -122759,7 +127020,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -122775,7 +127036,7 @@ }, "response": [ { - "id": "c395ce67-5896-45ff-a9fa-bbc97d1a2c5c", + "id": "b096e931-67cc-48e0-8027-b9ead60c74a7", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -122811,7 +127072,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -122841,12 +127102,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"id\": \"6881f631-3bd5-4213-9c75-8e05cc3e35dd\",\n \"name\": \"Password Sync Group 1\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n },\n {\n \"id\": \"6881f631-3bd5-4213-9c75-8e05cc3e35dd\",\n \"name\": \"Password Sync Group 1\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "61eb1815-8b8b-4816-8f4f-9e26f50f88d8", + "id": "219e654c-34e6-4128-a6f0-1c49cbd1e5e5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122882,7 +127143,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -122912,12 +127173,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9821de45-1e1f-4a8d-960a-1657a87fa7dc", + "id": "eabb693b-17aa-4c6a-a7dc-94db8c37ed4c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122953,7 +127214,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -122983,12 +127244,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dd7d4f46-7b80-406b-a885-8521bd12a0cd", + "id": "e6d1a2ea-73d9-4563-9d89-3c6f75eb56ec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123024,7 +127285,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -123054,12 +127315,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "70815056-a662-4115-8b08-cc3eb7d62567", + "id": "ba2ad92d-2f57-4488-8fcb-2c717aba4d8a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123095,7 +127356,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -123125,12 +127386,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04ef8f43-ec29-4d08-a023-e680a8eb3e84", + "id": "69f4c2a4-d13d-4553-9cc1-4b9673f09437", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123166,7 +127427,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -123196,7 +127457,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -123207,7 +127468,7 @@ } }, { - "id": "fa214cc3-27a8-4247-a606-6c7297ff9f4a", + "id": "f08a3981-b518-4090-bcb5-0ec1cf9a3b18", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -123238,7 +127499,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -123249,7 +127510,7 @@ }, "response": [ { - "id": "b78ff1fe-53f8-4929-8e99-80f9788fe1e0", + "id": "a36233d8-343c-437c-b561-2e7d1bd4e513", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -123283,7 +127544,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -123300,12 +127561,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"6881f631-3bd5-4213-9c75-8e05cc3e35dd\",\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "279bc5e3-5214-4484-9902-5666a9b81d8a", + "id": "2c2a004f-e910-4e35-87b0-d8e6574e2613", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123339,7 +127600,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -123356,12 +127617,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9a698f9d-48ad-4acb-a61f-9020db430d43", + "id": "30e260c2-40ff-4ee6-824a-396f0c0aa715", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123395,7 +127656,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -123412,12 +127673,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8eb708a2-4a39-4840-91df-876929ae282b", + "id": "ada62113-19b5-4967-8092-74362dccb44d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123451,7 +127712,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -123468,12 +127729,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7bade2d0-9b0c-4121-a4ad-7f7f1107b4e6", + "id": "c5cf034f-1cb6-428e-a154-aed8e602e351", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123507,7 +127768,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -123524,12 +127785,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "72295b5b-cc8e-4ced-b5ff-687bd8a4627a", + "id": "0e672f67-e6bd-45f5-b40a-d827efec2211", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123563,7 +127824,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -123580,7 +127841,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -123591,7 +127852,7 @@ } }, { - "id": "86ca1f8d-dafa-47b0-9a02-8490729091a7", + "id": "9011c273-e2f8-4660-b209-345d5f67fceb", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -123611,7 +127872,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "6881f631-3bd5-4213-9c75-8e05cc3e35dd", "key": "id", "disabled": true, "description": { @@ -123632,7 +127893,7 @@ }, "response": [ { - "id": "9709f0c4-6a14-485e-81b7-0817b2af8c9b", + "id": "5cf64376-753a-4055-aacd-9c20a06db464", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -123671,12 +127932,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"6881f631-3bd5-4213-9c75-8e05cc3e35dd\",\n \"name\": \"Password Sync Group 1\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1e2746ee-e01b-4226-b60c-258b56019904", + "id": "1de1f7ba-a6ed-424b-a136-237f10cbb5b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123715,12 +127976,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d28aa12a-e7c9-407b-b709-46cd3f1f0a5e", + "id": "64c5fd81-ec3d-4f47-8f60-b05f3d40d51d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123759,12 +128020,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "877d576a-dd87-4ad3-a006-22d715f1ab9e", + "id": "68b8fc70-39dd-4789-96cd-e0b169730712", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123803,12 +128064,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e14fba99-d2e6-40e8-88cf-0c7a0a6a505e", + "id": "8873f012-c99d-4178-92bb-a033daf814be", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -123847,12 +128108,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ae768e04-6f1d-4bfc-b959-21a5b9af66ba", + "id": "39a7c199-e1ad-4f39-926e-f87c260f87f7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123891,12 +128152,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3b6cc3cd-5837-4a3f-9f59-7bab557c341e", + "id": "830a371e-6627-4cd1-8233-c69a0ada8acf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123935,7 +128196,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -123946,7 +128207,7 @@ } }, { - "id": "1da0e3d3-71aa-4eea-af87-d5d7e5a56cd3", + "id": "e7396b1a-1a1d-4b63-b088-cd8fdfbe8161", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -123966,7 +128227,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "6881f631-3bd5-4213-9c75-8e05cc3e35dd", "key": "id", "disabled": true, "description": { @@ -123989,7 +128250,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"id\": \"6881f631-3bd5-4213-9c75-8e05cc3e35dd\",\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -124000,7 +128261,7 @@ }, "response": [ { - "id": "42885c79-5e1c-479f-9c52-e0b22ec11964", + "id": "c9cdc63f-b0fe-4dff-82f8-b354f3c1eccb", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -124035,7 +128296,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"id\": \"6881f631-3bd5-4213-9c75-8e05cc3e35dd\",\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -124052,12 +128313,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"6881f631-3bd5-4213-9c75-8e05cc3e35dd\",\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c2f9ec6-a3ae-4023-9b87-555b0c24d8a0", + "id": "6bccb76d-04c0-4c20-8e83-3d7ec356298f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124092,7 +128353,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"id\": \"6881f631-3bd5-4213-9c75-8e05cc3e35dd\",\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -124109,12 +128370,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "35464a93-b381-4889-9e83-e478b8065c13", + "id": "01a176d0-de61-44ee-a479-acc4ab823b4d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124149,7 +128410,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"id\": \"6881f631-3bd5-4213-9c75-8e05cc3e35dd\",\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -124166,12 +128427,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "017e2d19-8d75-4118-87ca-5a43520a97ed", + "id": "e2035563-f626-4dc3-a250-750ac6bb92a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124206,7 +128467,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"id\": \"6881f631-3bd5-4213-9c75-8e05cc3e35dd\",\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -124223,12 +128484,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6e79900a-c952-4904-9582-bc5e1a936a36", + "id": "45c71111-e834-425a-bd1c-26ead81ac8b3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -124263,7 +128524,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"id\": \"6881f631-3bd5-4213-9c75-8e05cc3e35dd\",\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -124280,12 +128541,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0d6eea83-0261-4f02-b875-f35b3d42bc05", + "id": "10e13e3f-0fa0-4aa5-83ef-f812bc2cb424", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124320,7 +128581,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"id\": \"6881f631-3bd5-4213-9c75-8e05cc3e35dd\",\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -124337,12 +128598,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bae8a053-9798-4197-aae2-eed2de41922c", + "id": "00fc6c6d-f206-4ad0-a940-8f2ff7dbd9da", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124377,7 +128638,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"passwordPolicyId\": \"\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"id\": \"6881f631-3bd5-4213-9c75-8e05cc3e35dd\",\n \"name\": \"Password Sync Group 2\",\n \"passwordPolicyId\": \"2c91808d744ba0ce01746f93b6204501\",\n \"sourceIds\": [\n \"2c918084660f45d6016617daa9210584\",\n \"2c918084660f45d6016617daa9210500\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -124394,7 +128655,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -124405,7 +128666,7 @@ } }, { - "id": "c40334eb-4002-4378-a9b4-af99a21b67c7", + "id": "de136717-cd88-4021-b8e9-7721ee166637", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -124425,7 +128686,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "6881f631-3bd5-4213-9c75-8e05cc3e35dd", "key": "id", "disabled": true, "description": { @@ -124446,7 +128707,7 @@ }, "response": [ { - "id": "b5c6f754-d81a-41fc-893c-ae0070d45968", + "id": "a199507f-e6a0-4d4a-9a67-39e158a76abc", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -124480,7 +128741,7 @@ "_postman_previewlanguage": "text" }, { - "id": "05f14039-89b1-4e20-bae9-131b7592dbd8", + "id": "f2722e54-345e-4871-95a1-602c504b40b9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124519,12 +128780,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "99b31ca6-5d0e-40d7-a5d6-980bf31145b4", + "id": "3e68c5f8-ff93-429b-a46a-02ffe5d21576", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124563,12 +128824,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "96cddb9c-b2e0-4433-8654-0b8cbaa8fa2e", + "id": "8a7ffb4a-4734-4f15-9280-0be7b57482db", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124607,12 +128868,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "60b128f1-f2d2-47a3-a1a5-c00cc8252e46", + "id": "3cb994a8-732d-4479-b5fd-a5b2ea615c28", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124651,12 +128912,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca582f8f-64e4-4637-b58e-6ef028458e7c", + "id": "0438af07-d0b6-4d57-8ac5-50ac56c6a45c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124695,7 +128956,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -124712,7 +128973,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": "6e5541f1-0ab8-4caa-9a25-ebfc19f2d499", + "id": "41a7472b-4d20-4f9e-bce4-4a3b1b1afbd3", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -124735,7 +128996,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "2c9180867b50d088017b554662fb281e" }, { "disabled": true, @@ -124744,7 +129005,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "lastUsed le 2023-02-05T10:59:27.214Z" } ], "variable": [] @@ -124760,7 +129021,7 @@ }, "response": [ { - "id": "27240689-d340-4526-a44e-bf94f8fa75c5", + "id": "b9007cde-eb5a-40c2-a2cf-9f3577a9b1ec", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -124778,7 +129039,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "2c9180867b50d088017b554662fb281e" }, { "disabled": true, @@ -124787,7 +129048,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "lastUsed le 2023-02-05T10:59:27.214Z" } ], "variable": [] @@ -124817,12 +129078,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\",\n \"lastUsed\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\",\n \"lastUsed\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"86f1dc6fe8f54414950454cbb11278fa\",\n \"name\": \"NodeJS Integration\",\n \"scope\": [\n \"demo:personal-access-token-scope:first\",\n \"demo:personal-access-token-scope:second\"\n ],\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n },\n {\n \"id\": \"86f1dc6fe8f54414950454cbb11278fa\",\n \"name\": \"NodeJS Integration\",\n \"scope\": [\n \"demo:personal-access-token-scope:first\",\n \"demo:personal-access-token-scope:second\"\n ],\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e28b9165-73c5-44ca-93cd-fd7da961cc63", + "id": "d5c1f0cb-fbbf-46b3-8f26-f3ba1bc9ea69", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124840,7 +129101,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "2c9180867b50d088017b554662fb281e" }, { "disabled": true, @@ -124849,7 +129110,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "lastUsed le 2023-02-05T10:59:27.214Z" } ], "variable": [] @@ -124879,12 +129140,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c4ba49f3-a3ab-43ef-b9d3-9b9bfd352a69", + "id": "7df9fe06-52fd-4343-9bfe-9a199c177b2f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124902,7 +129163,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "2c9180867b50d088017b554662fb281e" }, { "disabled": true, @@ -124911,7 +129172,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "lastUsed le 2023-02-05T10:59:27.214Z" } ], "variable": [] @@ -124941,12 +129202,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a32145f5-885e-4cad-9232-9ae5860b249b", + "id": "e5beddd4-846f-4c2d-a1a8-4e6978ef41f8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124964,7 +129225,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "2c9180867b50d088017b554662fb281e" }, { "disabled": true, @@ -124973,7 +129234,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "lastUsed le 2023-02-05T10:59:27.214Z" } ], "variable": [] @@ -125003,12 +129264,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f51fe813-0894-4cb4-b971-250708dfa9f3", + "id": "808d52ee-327f-423f-b37f-3759daf75360", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125026,7 +129287,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "2c9180867b50d088017b554662fb281e" }, { "disabled": true, @@ -125035,7 +129296,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "lastUsed le 2023-02-05T10:59:27.214Z" } ], "variable": [] @@ -125065,12 +129326,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "79fb721d-5720-4dfe-9d4b-896063019a3e", + "id": "2139dee7-2f63-462d-b148-266b850e4372", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125088,7 +129349,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "" + "value": "2c9180867b50d088017b554662fb281e" }, { "disabled": true, @@ -125097,7 +129358,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "lastUsed le 2023-02-05T10:59:27.214Z" } ], "variable": [] @@ -125127,7 +129388,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -125138,7 +129399,7 @@ } }, { - "id": "59e72008-b81e-4ad0-b8e2-0aa8678b72b8", + "id": "8e7a43f9-4a19-41e7-b226-a579ff65cec5", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -125169,7 +129430,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"NodeJS Integration\",\n \"scope\": [\n \"demo:personal-access-token-scope:first\",\n \"demo:personal-access-token-scope:second\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -125180,7 +129441,7 @@ }, "response": [ { - "id": "b97b1542-4254-4e51-b5fc-7f2a9122c715", + "id": "4b543af4-da0d-4198-ad24-3cfb7062c244", "name": "Created. Note - this is the only time Personal Access Tokens' secret attribute will be displayed.", "originalRequest": { "url": { @@ -125214,7 +129475,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"NodeJS Integration\",\n \"scope\": [\n \"demo:personal-access-token-scope:first\",\n \"demo:personal-access-token-scope:second\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -125231,12 +129492,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"secret\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"86f1dc6fe8f54414950454cbb11278fa\",\n \"secret\": \"1d1bef2b9f426383447f64f69349fc7cac176042578d205c256ba3f37c59adb9\",\n \"scope\": [\n \"demo:personal-access-token-scope:first\",\n \"demo:personal-access-token-scope:second\"\n ],\n \"name\": \"NodeJS Integration\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"created\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "51f0d7b7-4a16-4ad6-b075-05ecf368ef20", + "id": "670855dc-4797-4103-bf10-3c97c8c171f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125270,7 +129531,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"NodeJS Integration\",\n \"scope\": [\n \"demo:personal-access-token-scope:first\",\n \"demo:personal-access-token-scope:second\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -125287,12 +129548,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a0885e51-5245-4460-87ae-d9f42beda059", + "id": "dc2299a4-1413-4266-bfb2-1dcbc3aca270", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125326,7 +129587,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"NodeJS Integration\",\n \"scope\": [\n \"demo:personal-access-token-scope:first\",\n \"demo:personal-access-token-scope:second\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -125343,12 +129604,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6fecedc9-67f6-41be-89e6-1eb7ed7e27dc", + "id": "9db6fcf6-8a4d-4f38-a0f5-7efdcf61e3a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125382,7 +129643,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"NodeJS Integration\",\n \"scope\": [\n \"demo:personal-access-token-scope:first\",\n \"demo:personal-access-token-scope:second\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -125399,12 +129660,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "306a5c2a-7d91-485f-9e51-77687b19b09b", + "id": "f0ac34fa-eed6-4795-a404-956ad84fddbd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125438,7 +129699,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"NodeJS Integration\",\n \"scope\": [\n \"demo:personal-access-token-scope:first\",\n \"demo:personal-access-token-scope:second\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -125455,12 +129716,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e465086-e5f4-40c9-a445-629a3602fd51", + "id": "76c08d7a-022d-43ca-b959-f419123ce961", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125494,7 +129755,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"NodeJS Integration\",\n \"scope\": [\n \"demo:personal-access-token-scope:first\",\n \"demo:personal-access-token-scope:second\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -125511,7 +129772,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -125522,7 +129783,7 @@ } }, { - "id": "7198899e-ef79-4ffd-90b5-c3c79463b94c", + "id": "6f31af9e-096c-44f1-bd24-0be7b6d1a29c", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -125542,7 +129803,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -125565,7 +129826,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"New name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/scope\",\n \"value\": [\n \"sp:scopes:all\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -125576,7 +129837,7 @@ }, "response": [ { - "id": "92dc871e-c99c-4450-a414-494d3ceb4d6b", + "id": "864de434-e132-4738-84e8-98319cb09473", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -125611,7 +129872,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"New name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/scope\",\n \"value\": [\n \"sp:scopes:all\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -125628,12 +129889,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\",\n \"lastUsed\": \"\"\n}", + "body": "{\n \"id\": \"86f1dc6fe8f54414950454cbb11278fa\",\n \"name\": \"NodeJS Integration\",\n \"scope\": [\n \"demo:personal-access-token-scope:first\",\n \"demo:personal-access-token-scope:second\"\n ],\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b1a8dba-a138-4c73-b06c-5bfb1893c0c7", + "id": "22876f62-1df9-4e08-8314-244ffc69d19a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125668,7 +129929,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"New name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/scope\",\n \"value\": [\n \"sp:scopes:all\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -125685,12 +129946,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1af3ccf8-3753-49c3-85ee-35ae2817ddf1", + "id": "c87c3950-c5ef-4cab-b671-cc88cc2a5092", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125725,7 +129986,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"New name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/scope\",\n \"value\": [\n \"sp:scopes:all\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -125742,12 +130003,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85b86af1-0f39-4500-b4f9-3370fe3b9263", + "id": "b5e950e1-6843-4604-88a4-812a8f934cbd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125782,7 +130043,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"New name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/scope\",\n \"value\": [\n \"sp:scopes:all\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -125799,12 +130060,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b37222dd-5a41-496e-ae15-7eccc2ba4769", + "id": "290267af-8e99-4449-b47c-24e33938ad44", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -125839,7 +130100,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"New name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/scope\",\n \"value\": [\n \"sp:scopes:all\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -125856,12 +130117,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "16d6a310-dac3-46a2-a6c1-ac39496b53ea", + "id": "89d33eb2-3bae-47e2-a49d-d7b25216d1f7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125896,7 +130157,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"New name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/scope\",\n \"value\": [\n \"sp:scopes:all\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -125913,12 +130174,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93dcea82-7156-488c-ba0b-7f1b8e588397", + "id": "feed2166-86c7-47e1-a7f4-9cddfa951771", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125953,7 +130214,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"New name\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/scope\",\n \"value\": [\n \"sp:scopes:all\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -125970,7 +130231,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -125981,7 +130242,7 @@ } }, { - "id": "664732f2-ddcb-42e6-80f1-ba8da6902df7", + "id": "1070772d-785a-423b-9cb9-ca8ddaf532d0", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -126001,7 +130262,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -126022,7 +130283,7 @@ }, "response": [ { - "id": "cd4bd29b-6f4c-4309-9b02-095f950bae7c", + "id": "c65b813e-cf8f-4614-b4f1-4a972ae5169a", "name": "No content.", "originalRequest": { "url": { @@ -126056,7 +130317,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ee61812a-8c1c-4c57-b528-faeb041b2b94", + "id": "8a62df6b-a3e3-4e39-a2a2-c63eba087e1c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126095,12 +130356,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "799e3d2e-cbfc-4493-b191-edb9de4b0df6", + "id": "78706b1f-a353-4e48-b132-85689fed38d9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126139,12 +130400,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d862b6d9-7684-4212-99c1-0fb9280fe1b2", + "id": "157be259-a69f-4e3c-9d8a-9f6bc7019743", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126183,12 +130444,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "72043e9e-28de-4e4d-ae99-74ee021aedd6", + "id": "2f4a356f-dc4b-4aa8-9f3c-e4eb8ef1cf72", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -126227,12 +130488,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fe973764-c72a-45ea-a4a9-8a5b5a1fc417", + "id": "6fd02e03-3c3e-4aad-8a4a-43d042541a6a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126271,12 +130532,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3ffed8cb-f46d-42fa-a6f0-0531ea2cc808", + "id": "846b1f78-0b31-4448-a6f9-83f909c76920", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126315,7 +130576,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -126332,7 +130593,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": "db446cfc-4f49-4c20-97b2-21144647002d", + "id": "5de8a906-bf32-4342-90bd-ef242c1e54e3", "name": "Get Public Identity Config", "request": { "name": "Get Public Identity Config", @@ -126361,7 +130622,7 @@ }, "response": [ { - "id": "c35d9318-996d-427e-ae53-9ea65bf3c45a", + "id": "e59b86cd-c36c-4ec6-ba53-c371eed213f3", "name": "Request succeeded.", "originalRequest": { "url": { @@ -126399,12 +130660,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "body": "{\n \"attributes\": [\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n },\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"modified\": \"2018-06-25T20:22:28.104Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "76c74bb7-0426-402c-b3d5-5ea14ce76f29", + "id": "d7372d40-4686-4845-b381-336d859d8035", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126442,12 +130703,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bda1ee7b-d739-4461-9cb2-0f0659380f7d", + "id": "03a4fb58-1fea-4f03-8a04-b6a3ae67bb47", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126485,12 +130746,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56b6045d-fd61-4e8f-afc0-a01e9435aad2", + "id": "a6b09500-9e6d-4355-b853-cac0c36ce102", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126528,12 +130789,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5993b51e-e2d1-4037-9bf6-765d78e62831", + "id": "0de3c80c-ea1f-4015-964d-f37c4eaf87d9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126571,12 +130832,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d255fcfa-e475-43dd-a092-db07e846389b", + "id": "03ee6067-f6f3-40c5-bbc3-4f62ee4cbeae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126614,7 +130875,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -126625,7 +130886,7 @@ } }, { - "id": "2422cc09-dfa3-4486-8689-b947b2a03a44", + "id": "185af28d-e3f6-489a-bf90-895c9144fe3b", "name": "Update Public Identity Config", "request": { "name": "Update Public Identity Config", @@ -126656,7 +130917,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "raw": "{\n \"attributes\": [\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n },\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"modified\": \"2018-06-25T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -126667,7 +130928,7 @@ }, "response": [ { - "id": "1b47cf64-adb6-4ab1-b9ed-831d6952e85d", + "id": "2d8688d4-09c6-48d0-9fde-8557fb0a04e2", "name": "Request succeeded.", "originalRequest": { "url": { @@ -126701,7 +130962,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "raw": "{\n \"attributes\": [\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n },\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"modified\": \"2018-06-25T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -126718,12 +130979,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "body": "{\n \"attributes\": [\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n },\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"modified\": \"2018-06-25T20:22:28.104Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f33892f5-ed6d-4484-a019-18a5a76d7d1a", + "id": "707a4b64-964e-4b23-b0d1-f8b0d861bfae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126757,7 +131018,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "raw": "{\n \"attributes\": [\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n },\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"modified\": \"2018-06-25T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -126774,12 +131035,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0f1d1f43-3a77-4882-bdc5-b486d42e1e2e", + "id": "9c012a4d-54fa-4b0b-86bd-5842034eab05", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126813,7 +131074,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "raw": "{\n \"attributes\": [\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n },\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"modified\": \"2018-06-25T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -126830,12 +131091,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd6b4d1e-f517-45c0-a62a-41f960ccef07", + "id": "f9c1fabe-cde7-4cc5-b084-dcf0cefb952f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126869,7 +131130,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "raw": "{\n \"attributes\": [\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n },\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"modified\": \"2018-06-25T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -126886,12 +131147,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2da6af56-cea6-4e31-a9a4-397ede705f7c", + "id": "7b2a4e30-a324-4c35-b9ff-887c1a3ffc6a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126925,7 +131186,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "raw": "{\n \"attributes\": [\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n },\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"modified\": \"2018-06-25T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -126942,12 +131203,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "032316ac-da8b-45a6-a7a7-ec28d75a92e6", + "id": "3b56016d-808f-4b38-85fd-55fe30c9b03b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126981,7 +131242,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "raw": "{\n \"attributes\": [\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n },\n {\n \"key\": \"country\",\n \"name\": \"Country\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"modified\": \"2018-06-25T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -126998,7 +131259,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -127015,7 +131276,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": "bf14c565-5d96-42db-b4cd-1f7ce5215aab", + "id": "13f7e4b6-15d0-41f7-9bea-3ba9e7539663", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -127038,7 +131299,7 @@ "type": "text/plain" }, "key": "identity-id", - "value": "" + "value": "e7eab60924f64aa284175b9fa3309599" }, { "disabled": true, @@ -127047,7 +131308,7 @@ "type": "text/plain" }, "key": "types", - "value": "ACCESS_PROFILE,ACCESS_PROFILE" + "value": "ROLE,ACCESS_PROFILE" }, { "disabled": true, @@ -127056,7 +131317,7 @@ "type": "text/plain" }, "key": "term", - "value": "" + "value": "Finance Role" }, { "disabled": true, @@ -127065,7 +131326,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "ASSIGNED,ASSIGNED" + "value": "ASSIGNED,PENDING" }, { "disabled": true, @@ -127092,7 +131353,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -127101,7 +131362,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"bob\"" }, { "disabled": true, @@ -127110,7 +131371,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -127126,7 +131387,7 @@ }, "response": [ { - "id": "0411d6e7-ee56-425a-a8e4-2394b47817c3", + "id": "203647e2-9543-4fe1-82b0-beb6eba502bb", "name": "List of requestable objects", "originalRequest": { "url": { @@ -127144,7 +131405,7 @@ "type": "text/plain" }, "key": "identity-id", - "value": "" + "value": "e7eab60924f64aa284175b9fa3309599" }, { "disabled": true, @@ -127153,7 +131414,7 @@ "type": "text/plain" }, "key": "types", - "value": "ACCESS_PROFILE,ACCESS_PROFILE" + "value": "ROLE,ACCESS_PROFILE" }, { "disabled": true, @@ -127162,7 +131423,7 @@ "type": "text/plain" }, "key": "term", - "value": "" + "value": "Finance Role" }, { "disabled": true, @@ -127171,7 +131432,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "ASSIGNED,ASSIGNED" + "value": "ASSIGNED,PENDING" }, { "disabled": true, @@ -127198,7 +131459,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -127207,7 +131468,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"bob\"" }, { "disabled": true, @@ -127216,7 +131477,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -127246,12 +131507,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"requestStatus\": \"PENDING\",\n \"identityRequestId\": \"\",\n \"ownerRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"requestCommentsRequired\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"requestStatus\": \"AVAILABLE\",\n \"identityRequestId\": \"\",\n \"ownerRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"requestCommentsRequired\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"Applied Research Access\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"description\": \"Access to research information, lab results, and schematics.\",\n \"type\": \"ACCESS_PROFILE\",\n \"requestStatus\": \"AVAILABLE\",\n \"identityRequestId\": null,\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\",\n \"name\": \"Alison Ferguso\",\n \"email\": \"alison.ferguso@identitysoon.com\"\n },\n \"requestCommentsRequired\": false\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"Applied Research Access\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"description\": \"Access to research information, lab results, and schematics.\",\n \"type\": \"ACCESS_PROFILE\",\n \"requestStatus\": \"AVAILABLE\",\n \"identityRequestId\": null,\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\",\n \"name\": \"Alison Ferguso\",\n \"email\": \"alison.ferguso@identitysoon.com\"\n },\n \"requestCommentsRequired\": false\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d8a330b6-96d9-46f3-a86e-a8033973ed62", + "id": "8ac9ac4c-a477-4f8d-a7a5-c23834c36f09", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127269,7 +131530,7 @@ "type": "text/plain" }, "key": "identity-id", - "value": "" + "value": "e7eab60924f64aa284175b9fa3309599" }, { "disabled": true, @@ -127278,7 +131539,7 @@ "type": "text/plain" }, "key": "types", - "value": "ACCESS_PROFILE,ACCESS_PROFILE" + "value": "ROLE,ACCESS_PROFILE" }, { "disabled": true, @@ -127287,7 +131548,7 @@ "type": "text/plain" }, "key": "term", - "value": "" + "value": "Finance Role" }, { "disabled": true, @@ -127296,7 +131557,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "ASSIGNED,ASSIGNED" + "value": "ASSIGNED,PENDING" }, { "disabled": true, @@ -127323,7 +131584,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -127332,7 +131593,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"bob\"" }, { "disabled": true, @@ -127341,7 +131602,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -127371,12 +131632,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "26baa49d-889e-480e-b8f9-ee1476ce8222", + "id": "8c3e4ad6-1d52-474c-8fb7-dfaa7904ccfd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127394,7 +131655,7 @@ "type": "text/plain" }, "key": "identity-id", - "value": "" + "value": "e7eab60924f64aa284175b9fa3309599" }, { "disabled": true, @@ -127403,7 +131664,7 @@ "type": "text/plain" }, "key": "types", - "value": "ACCESS_PROFILE,ACCESS_PROFILE" + "value": "ROLE,ACCESS_PROFILE" }, { "disabled": true, @@ -127412,7 +131673,7 @@ "type": "text/plain" }, "key": "term", - "value": "" + "value": "Finance Role" }, { "disabled": true, @@ -127421,7 +131682,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "ASSIGNED,ASSIGNED" + "value": "ASSIGNED,PENDING" }, { "disabled": true, @@ -127448,7 +131709,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -127457,7 +131718,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"bob\"" }, { "disabled": true, @@ -127466,7 +131727,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -127496,12 +131757,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "01c44eba-52df-476f-93aa-8148ecc060dc", + "id": "cb1e1c2a-a81e-49d9-886a-ecc0a5e1b1a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127519,7 +131780,7 @@ "type": "text/plain" }, "key": "identity-id", - "value": "" + "value": "e7eab60924f64aa284175b9fa3309599" }, { "disabled": true, @@ -127528,7 +131789,7 @@ "type": "text/plain" }, "key": "types", - "value": "ACCESS_PROFILE,ACCESS_PROFILE" + "value": "ROLE,ACCESS_PROFILE" }, { "disabled": true, @@ -127537,7 +131798,7 @@ "type": "text/plain" }, "key": "term", - "value": "" + "value": "Finance Role" }, { "disabled": true, @@ -127546,7 +131807,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "ASSIGNED,ASSIGNED" + "value": "ASSIGNED,PENDING" }, { "disabled": true, @@ -127573,7 +131834,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -127582,7 +131843,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"bob\"" }, { "disabled": true, @@ -127591,7 +131852,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -127621,12 +131882,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "03e20677-f443-42ee-b746-ab45b1c600d7", + "id": "6d9292fa-0ea2-4c00-9f28-059d919f881e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127644,7 +131905,7 @@ "type": "text/plain" }, "key": "identity-id", - "value": "" + "value": "e7eab60924f64aa284175b9fa3309599" }, { "disabled": true, @@ -127653,7 +131914,7 @@ "type": "text/plain" }, "key": "types", - "value": "ACCESS_PROFILE,ACCESS_PROFILE" + "value": "ROLE,ACCESS_PROFILE" }, { "disabled": true, @@ -127662,7 +131923,7 @@ "type": "text/plain" }, "key": "term", - "value": "" + "value": "Finance Role" }, { "disabled": true, @@ -127671,7 +131932,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "ASSIGNED,ASSIGNED" + "value": "ASSIGNED,PENDING" }, { "disabled": true, @@ -127698,7 +131959,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -127707,7 +131968,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"bob\"" }, { "disabled": true, @@ -127716,7 +131977,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -127746,12 +132007,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80f557c8-dd50-45a7-a118-792d62f3c387", + "id": "2a93798d-7fe4-4f85-9d7e-5c9a9e478d96", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127769,7 +132030,7 @@ "type": "text/plain" }, "key": "identity-id", - "value": "" + "value": "e7eab60924f64aa284175b9fa3309599" }, { "disabled": true, @@ -127778,7 +132039,7 @@ "type": "text/plain" }, "key": "types", - "value": "ACCESS_PROFILE,ACCESS_PROFILE" + "value": "ROLE,ACCESS_PROFILE" }, { "disabled": true, @@ -127787,7 +132048,7 @@ "type": "text/plain" }, "key": "term", - "value": "" + "value": "Finance Role" }, { "disabled": true, @@ -127796,7 +132057,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "ASSIGNED,ASSIGNED" + "value": "ASSIGNED,PENDING" }, { "disabled": true, @@ -127823,7 +132084,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -127832,7 +132093,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"bob\"" }, { "disabled": true, @@ -127841,7 +132102,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -127871,7 +132132,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -127888,7 +132149,7 @@ "description": "", "item": [ { - "id": "43f55133-a72e-437b-9fe9-f1a4f6d2cbbd", + "id": "8e359675-789e-446a-8253-2fc3090342cd", "name": "Generate insights for roles", "request": { "name": "Generate insights for roles", @@ -127918,7 +132179,7 @@ }, "response": [ { - "id": "45293112-6556-4a04-8c2c-45b87ba1fb82", + "id": "805fce77-7201-42d4-9466-6598c9fe8095", "name": "Submitted a role insights generation request", "originalRequest": { "url": { @@ -127957,12 +132218,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"createdDate\": \"\",\n \"lastGenerated\": \"\",\n \"numberOfUpdates\": \"\",\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"status\": \"IN PROGRESS\"\n}", + "body": "{\n \"id\": \"c9aa02f7-86b0-4bc4-84bd-3116a6131e77\",\n \"createdDate\": \"2020-09-16T18:49:32.150Z\",\n \"lastGenerated\": \"2020-09-16T18:49:32.150Z\",\n \"numberOfUpdates\": 0,\n \"roleIds\": [\n \"2c91808e720e94f8017253287c0a44f4\",\n \"2c918087723ac2800172532191540e03\",\n \"2c9180986e4c8592016e6b15eaef447c\"\n ],\n \"status\": \"CREATED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a3358547-fbbb-461c-baf7-a04dfc9d10bc", + "id": "8a813cda-1116-426e-bf2f-cb4443f38425", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128001,12 +132262,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "09ba7c5a-2874-44e5-89ab-507e4fb399cb", + "id": "1697d39d-7deb-4a70-9718-9be34a1e105f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128045,12 +132306,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4d3a55f4-6727-4f66-a4aa-a8f58c569dba", + "id": "ea45d65b-6935-43d1-b422-14effeecec6e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128089,12 +132350,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d6ae41b9-3026-4ae7-9533-eb571be3a289", + "id": "d031dbf7-5bc8-46d4-a5ce-8ffc1d46d0c8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128133,12 +132394,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "008f97d4-efe3-4945-9ad4-be3dbfd2e950", + "id": "b06cfe5c-8548-4037-ba9b-dd0ee63b855f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128177,7 +132438,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -128188,7 +132449,7 @@ } }, { - "id": "e7d4e47e-08f4-4215-9550-f05cf2232da1", + "id": "985d2280-ee5b-4905-a966-631add916f40", "name": "Returns metadata from prior request.", "request": { "name": "Returns metadata from prior request.", @@ -128209,7 +132470,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "id", "disabled": true, "description": { @@ -128230,7 +132491,7 @@ }, "response": [ { - "id": "13350aa7-b65d-40b2-840d-b94beef8695b", + "id": "8259729f-e388-4aef-a714-a5391b49a0a4", "name": "Succeeded. Returns details of an earlier role insights request.", "originalRequest": { "url": { @@ -128270,12 +132531,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"createdDate\": \"\",\n \"lastGenerated\": \"\",\n \"numberOfUpdates\": \"\",\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"status\": \"IN PROGRESS\"\n}", + "body": "{\n \"id\": \"c9aa02f7-86b0-4bc4-84bd-3116a6131e77\",\n \"createdDate\": \"2020-09-16T18:49:32.150Z\",\n \"lastGenerated\": \"2020-09-16T18:49:32.150Z\",\n \"numberOfUpdates\": 0,\n \"roleIds\": [\n \"2c91808e720e94f8017253287c0a44f4\",\n \"2c918087723ac2800172532191540e03\",\n \"2c9180986e4c8592016e6b15eaef447c\"\n ],\n \"status\": \"CREATED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ebb6d368-2059-43b2-8e7d-2f483e001368", + "id": "7f1eadb7-0aa3-4f9e-adf2-bc7ecaa04673", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128315,12 +132576,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "60f7482f-8ba0-4627-b5d3-2a997d37d195", + "id": "5e0ef99d-c5fa-4c3a-8c9f-d0d60b845d07", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128360,12 +132621,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b735c478-80e3-488d-95a7-662839950fa1", + "id": "e3290cf6-f334-4aab-b549-e75190e479fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128405,12 +132666,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8ac73229-c5af-4539-8816-0656292b9241", + "id": "2ca582b5-311a-40af-8b65-60ec2bb45ca9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128450,12 +132711,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1bab91ff-b2b5-4660-89b1-f741850670cb", + "id": "6bd62709-8bb2-4b7c-b2c7-d23b1bf17c9f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128495,7 +132756,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -128506,7 +132767,7 @@ } }, { - "id": "48417aa0-098f-4ed2-b344-8929bf1f6e7a", + "id": "e6f2cb69-9743-4d98-9a9c-6d365bc7ece4", "name": "Get role insights summary information", "request": { "name": "Get role insights summary information", @@ -128536,7 +132797,7 @@ }, "response": [ { - "id": "4a4a77b9-d1e5-43be-8f59-d874ec244421", + "id": "9e4d7a4c-a5be-40a5-a4e4-a9a97c4b4a53", "name": "Succeeded. Returns high level counts.", "originalRequest": { "url": { @@ -128575,12 +132836,12 @@ "value": "application/json" } ], - "body": "{\n \"numberOfUpdates\": \"\",\n \"lastGenerated\": \"\",\n \"entitlementsIncludedInRoles\": \"\",\n \"totalNumberOfEntitlements\": \"\",\n \"identitiesWithAccessViaRoles\": \"\",\n \"totalNumberOfIdentities\": \"\"\n}", + "body": "{\n \"numberOfUpdates\": -40612885,\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": "7b668ea5-3eb5-4b95-a8b1-df2ddf520165", + "id": "b92209ce-14d7-432d-8c54-14842061bd4c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128619,12 +132880,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bdd68cfb-8695-4b7c-bd81-6281978d128c", + "id": "20e8e308-b4dc-4d6b-8776-9c39f9db36a1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128663,12 +132924,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ace35a6f-d2a0-4764-b469-3a53a4f73275", + "id": "30d53621-4cdf-4d07-94b0-c791009a52bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128707,12 +132968,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "95baff88-4314-4434-913b-ae2a416c6f0f", + "id": "1939386b-7348-4987-b793-e9ec5de3d0ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128751,7 +133012,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -128762,7 +133023,7 @@ } }, { - "id": "89e0193e-543a-4e7c-8846-1e9e6c835160", + "id": "028e396f-3276-4f09-bd2e-5f21d48b673b", "name": "Get role insights", "request": { "name": "Get role insights", @@ -128803,7 +133064,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -128812,7 +133073,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "numberOfUpdates" }, { "disabled": true, @@ -128821,7 +133082,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"John\"" } ], "variable": [] @@ -128837,7 +133098,7 @@ }, "response": [ { - "id": "e6ff3da9-2ae9-450f-9608-0ff7359fdd1e", + "id": "148f8136-74bd-44c8-83fc-ec439c745a63", "name": "Succeeded. Returns a list of roles with information about insights for each role.", "originalRequest": { "url": { @@ -128873,7 +133134,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -128882,7 +133143,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "numberOfUpdates" }, { "disabled": true, @@ -128891,7 +133152,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"John\"" } ], "variable": [] @@ -128921,12 +133182,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"numberOfUpdates\": \"\",\n \"createdDate\": \"\",\n \"role\": {\n \"name\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"insight\": {\n \"type\": \"\",\n \"identitiesWithAccess\": \"\",\n \"identitiesImpacted\": \"\",\n \"totalNumberOfIdentities\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"numberOfUpdates\": \"\",\n \"createdDate\": \"\",\n \"role\": {\n \"name\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"insight\": {\n \"type\": \"\",\n \"identitiesWithAccess\": \"\",\n \"identitiesImpacted\": \"\",\n \"totalNumberOfIdentities\": \"\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n },\n {\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bf89c2c4-74ca-423f-bdc5-4843711672db", + "id": "7598649c-21d1-498d-baa4-6347d062cbd5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128962,7 +133223,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -128971,7 +133232,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "numberOfUpdates" }, { "disabled": true, @@ -128980,7 +133241,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"John\"" } ], "variable": [] @@ -129010,12 +133271,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "16e044b4-c5f9-4881-90a3-45067d3b5886", + "id": "06634034-9aed-4158-9f71-0bf5e623b89e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129051,7 +133312,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -129060,7 +133321,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "numberOfUpdates" }, { "disabled": true, @@ -129069,7 +133330,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"John\"" } ], "variable": [] @@ -129099,12 +133360,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56e307cb-be99-432d-8276-57e303709eb7", + "id": "1cc394d5-e83a-46f0-8500-a6f4fbabf9ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129140,7 +133401,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -129149,7 +133410,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "numberOfUpdates" }, { "disabled": true, @@ -129158,7 +133419,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"John\"" } ], "variable": [] @@ -129188,12 +133449,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e9fc515a-1915-483f-91b8-4e197ff5f6e3", + "id": "d57953f2-0dd7-406c-8b70-7fcbdfc468b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129229,7 +133490,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -129238,7 +133499,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "numberOfUpdates" }, { "disabled": true, @@ -129247,7 +133508,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"John\"" } ], "variable": [] @@ -129277,7 +133538,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -129288,7 +133549,7 @@ } }, { - "id": "ed925d60-439f-437b-af28-5491467b5883", + "id": "c2768fac-22f3-49aa-b25c-f0c3fc1e5708", "name": "Get a single role insight", "request": { "name": "Get a single role insight", @@ -129308,7 +133569,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "insightId", "disabled": true, "description": { @@ -129329,7 +133590,7 @@ }, "response": [ { - "id": "4838a368-ffc8-4820-8419-40693b9259c4", + "id": "0761150c-d0cb-4354-9a7d-0f7f63fb6a09", "name": "Succeeded. Returns information about insights for a single role.", "originalRequest": { "url": { @@ -129368,12 +133629,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"numberOfUpdates\": \"\",\n \"createdDate\": \"\",\n \"role\": {\n \"name\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"insight\": {\n \"type\": \"\",\n \"identitiesWithAccess\": \"\",\n \"identitiesImpacted\": \"\",\n \"totalNumberOfIdentities\": \"\"\n }\n}", + "body": "{\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8dbe095b-b249-45a5-bfd2-d7d5dab9306e", + "id": "bee5bd6f-e95c-48bc-9299-86b2beac4dd1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129412,12 +133673,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8778d66b-f1df-4ba6-98b4-23a20c961e60", + "id": "ed9ffbc2-5282-4d6c-8764-03fde8a9cd01", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129456,12 +133717,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aa0b98a1-3b61-4fbb-9766-04759ac1719d", + "id": "3da22252-3613-4b3d-a7d5-3c910bcc383b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129500,12 +133761,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c39ac9cd-4d96-4e01-b8aa-943359fdd17a", + "id": "c381f901-cd0f-4dbe-865f-a6f5901722e8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129544,7 +133805,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -129555,7 +133816,7 @@ } }, { - "id": "0dbaf218-0c0b-4759-831e-6ea09e67a929", + "id": "0d44cd61-17d7-4974-8886-ccd24ff7f902", "name": "Get entitlement insights for a role", "request": { "name": "Get entitlement insights for a role", @@ -129580,7 +133841,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -129589,13 +133850,13 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Admin\"" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "insightId", "disabled": true, "description": { @@ -129616,7 +133877,7 @@ }, "response": [ { - "id": "578b44de-edb6-4066-8c6a-32e0f0a4c6ba", + "id": "4155ca3c-8a4a-408b-9974-084ba167b841", "name": "Succeeded. Returns a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -129636,7 +133897,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -129645,7 +133906,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Admin\"" } ], "variable": [] @@ -129675,12 +133936,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"source\": \"\",\n \"insight\": {\n \"type\": \"\",\n \"identitiesWithAccess\": \"\",\n \"identitiesImpacted\": \"\",\n \"totalNumberOfIdentities\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"source\": \"\",\n \"insight\": {\n \"type\": \"\",\n \"identitiesWithAccess\": \"\",\n \"identitiesImpacted\": \"\",\n \"totalNumberOfIdentities\": \"\"\n }\n }\n]", + "body": "[\n {\n \"name\": \"non sed\",\n \"id\": \"ex enim\",\n \"description\": \"do labore ad\",\n \"attribute\": \"voluptate\",\n \"value\": \"quis of\",\n \"source\": \"dolor\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n },\n {\n \"name\": \"id sint et nulla\",\n \"id\": \"laborum ex in adipisicing\",\n \"description\": \"eu reprehenderit nulla deserunt\",\n \"attribute\": \"nostrud non eu ullamc\",\n \"value\": \"deserunt sit\",\n \"source\": \"dolore laborum Ut est do\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1d377218-2e48-476d-9ebe-83508d77a5e0", + "id": "b919a7dd-65a6-47f4-86f7-9325abc3a0db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129700,7 +133961,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -129709,7 +133970,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Admin\"" } ], "variable": [] @@ -129739,12 +134000,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1d1e5201-a0ef-459d-b5f4-6ac0943cea1f", + "id": "cd9335ae-9f9f-49b2-be58-75106cee7d7f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129764,7 +134025,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -129773,7 +134034,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Admin\"" } ], "variable": [] @@ -129803,12 +134064,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "055c45d7-722d-44ab-a4ff-3449319265cf", + "id": "19260f4b-d1f1-4f11-bd24-e9d35c1a3219", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129828,7 +134089,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -129837,7 +134098,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Admin\"" } ], "variable": [] @@ -129867,12 +134128,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c28ef4b3-31f9-4b5d-9106-165d99510f10", + "id": "e292dc77-e03e-4996-85b8-39783ac40f85", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129892,7 +134153,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -129901,7 +134162,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Admin\"" } ], "variable": [] @@ -129931,7 +134192,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -129942,7 +134203,7 @@ } }, { - "id": "e73473b5-8119-4630-ae55-cf6f2d549abd", + "id": "6a10dbad-56dd-45d0-82a2-12f1833029df", "name": "Download entitlement insights for a role", "request": { "name": "Download entitlement insights for a role", @@ -129968,7 +134229,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "identitiesWithAccess" }, { "disabled": true, @@ -129977,13 +134238,13 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"r\"" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "insightId", "disabled": true, "description": { @@ -130004,7 +134265,7 @@ }, "response": [ { - "id": "30645ac9-93c0-4760-99fe-08fcac63d8ac", + "id": "8f578fc7-d1ce-43ab-b251-0f772d727a0f", "name": "Succeeded. Returns a csv file containing a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -130025,7 +134286,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "identitiesWithAccess" }, { "disabled": true, @@ -130034,7 +134295,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"r\"" } ], "variable": [] @@ -130064,12 +134325,12 @@ "value": "text/csv" } ], - "body": "", + "body": "velit aliquip", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "8aa9edbd-3e41-4183-9cd3-4cd79a775985", + "id": "85b48d32-ffd2-4044-86b2-b25354f8a037", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130090,7 +134351,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "identitiesWithAccess" }, { "disabled": true, @@ -130099,7 +134360,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"r\"" } ], "variable": [] @@ -130129,12 +134390,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ea7f4024-08ba-417b-a841-fe982bcf8922", + "id": "63e81705-49ff-4025-83a2-122bbed7ebbe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130155,7 +134416,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "identitiesWithAccess" }, { "disabled": true, @@ -130164,7 +134425,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"r\"" } ], "variable": [] @@ -130194,12 +134455,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "95799cac-9064-4bdf-9767-b371e3ce74b8", + "id": "a589215b-90b3-4c78-a9d2-772745251c6c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130220,7 +134481,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "identitiesWithAccess" }, { "disabled": true, @@ -130229,7 +134490,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"r\"" } ], "variable": [] @@ -130259,12 +134520,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8a865f33-ade6-4cd1-8b9b-ca2206e9351d", + "id": "4cd363ca-632f-483d-870e-4c8405ee12f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130285,7 +134546,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "identitiesWithAccess" }, { "disabled": true, @@ -130294,7 +134555,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"r\"" } ], "variable": [] @@ -130324,7 +134585,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -130335,7 +134596,7 @@ } }, { - "id": "d8a1d8b1-aa4b-4edb-b592-f32d66ddf737", + "id": "f5fbd1c1-19eb-4756-a806-f904d6b2f5bd", "name": "Get current entitlement for a role", "request": { "name": "Get current entitlement for a role", @@ -130360,13 +134621,13 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"r\"" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "insightId", "disabled": true, "description": { @@ -130387,7 +134648,7 @@ }, "response": [ { - "id": "7087cfff-0868-43e0-b49f-e95f35213eb2", + "id": "37bb8fd1-315e-4ae6-afef-28775cc54691", "name": "Succeeded. Returns a list of current or pre-existing entitlements for a role.", "originalRequest": { "url": { @@ -130407,7 +134668,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"r\"" } ], "variable": [] @@ -130437,12 +134698,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"source\": \"\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"source\": \"\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n]", + "body": "[\n {\n \"name\": \"Administrator\",\n \"description\": \"Full administrative access to IdentityNow\",\n \"source\": \"IdentityNow\",\n \"attribute\": \"assignedGroups\",\n \"value\": \"ORG_ADMIN\"\n },\n {\n \"name\": \"Administrator\",\n \"description\": \"Full administrative access to IdentityNow\",\n \"source\": \"IdentityNow\",\n \"attribute\": \"assignedGroups\",\n \"value\": \"ORG_ADMIN\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8d75fbec-2d96-4c15-9970-6268dff78d8f", + "id": "3b42d6dd-19c5-4d8d-b182-d1a6581c53c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130462,7 +134723,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"r\"" } ], "variable": [] @@ -130492,12 +134753,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0b6678d1-ba21-4973-91d1-14009cf7223b", + "id": "323ec4cb-fc3c-4b13-af58-cbe4f3a9045b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130517,7 +134778,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"r\"" } ], "variable": [] @@ -130547,12 +134808,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5ac2afb4-80bf-4386-8743-830a24a0dc6c", + "id": "eed18f66-156a-4a0f-8cc8-f126c37abba8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130572,7 +134833,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"r\"" } ], "variable": [] @@ -130602,12 +134863,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "49366146-e81a-4061-9708-85205acd41c3", + "id": "426fa4d8-0770-4d3d-ac6c-22c293c13c78", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130627,7 +134888,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"r\"" } ], "variable": [] @@ -130657,7 +134918,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -130668,7 +134929,7 @@ } }, { - "id": "ae1d3902-10a7-47b5-adf1-88db3549c275", + "id": "a2cde5d7-4c06-4d3a-a038-9935dfe7e7c1", "name": "Get identities for a suggested entitlement (for a role)", "request": { "name": "Get identities for a suggested entitlement (for a role)", @@ -130722,7 +134983,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -130731,7 +134992,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -130740,13 +135001,13 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Jan\"" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "insightId", "disabled": true, "description": { @@ -130756,7 +135017,7 @@ }, { "type": "any", - "value": "", + "value": "8c190e67-87aa-4ed9-a90b-d9d5344523fb", "key": "entitlementId", "disabled": true, "description": { @@ -130777,7 +135038,7 @@ }, "response": [ { - "id": "24b608be-5edd-464a-8842-8b75d816620a", + "id": "7166664b-ed8a-42c0-8e51-461f9413b3b3", "name": "Succeeded. Returns a list of identities with or without the entitlement.", "originalRequest": { "url": { @@ -130826,7 +135087,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -130835,7 +135096,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -130844,7 +135105,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Jan\"" } ], "variable": [] @@ -130874,12 +135135,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"minim0e\": \"\",\n \"esse9e\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"ex_8d7\": \"\",\n \"nostrud40\": \"\",\n \"dod6\": \"\",\n \"aliqua0b9\": \"\"\n }\n }\n]", + "body": "[\n {\n \"name\": \"Adam Smith\",\n \"attributes\": {\n \"department\": \"Human Resources-tah-mgb-dnd\",\n \"firstName\": \"Adam\",\n \"jobTitle\": \"Sales Analyst\",\n \"location\": \"Mexico\"\n }\n },\n {\n \"name\": \"Adam Smith\",\n \"attributes\": {\n \"department\": \"Human Resources-tah-mgb-dnd\",\n \"firstName\": \"Adam\",\n \"jobTitle\": \"Sales Analyst\",\n \"location\": \"Mexico\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "07bea50c-213d-41f0-9055-271d68cd60a0", + "id": "76d4ab51-99a8-4a38-b0a3-95f794461d5a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130928,7 +135189,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -130937,7 +135198,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -130946,7 +135207,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Jan\"" } ], "variable": [] @@ -130976,12 +135237,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "09e21f57-f8b2-4b85-acbc-9940e9692546", + "id": "b6a1bd46-4549-44ac-acd5-060085dcd32a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131030,7 +135291,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -131039,7 +135300,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -131048,7 +135309,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Jan\"" } ], "variable": [] @@ -131078,12 +135339,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d00f7e8-e80f-4dec-959f-1ae4cfaeadeb", + "id": "f44aaef6-c505-422b-b1bb-999fc4527c3c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131132,7 +135393,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -131141,7 +135402,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -131150,7 +135411,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Jan\"" } ], "variable": [] @@ -131180,12 +135441,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2c012d54-86af-4d75-b3a1-8c1a258821a7", + "id": "ab4f1cef-0186-472a-afcb-fc81a5ee71dc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131234,7 +135495,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -131243,7 +135504,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -131252,7 +135513,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw \"Jan\"" } ], "variable": [] @@ -131282,7 +135543,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -131299,7 +135560,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": "bd7f5a6d-a1d1-4938-b361-dddee0c32e51", + "id": "d24fab7f-21c9-44d7-8949-1cf4751e9be2", "name": "List Roles", "request": { "name": "List Roles", @@ -131322,7 +135583,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "5168015d32f890ca15812c9180835d2e" }, { "disabled": true, @@ -131349,7 +135610,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -131358,7 +135619,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "requestable eq false" }, { "disabled": true, @@ -131367,7 +135628,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -131376,7 +135637,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d" }, { "disabled": true, @@ -131385,7 +135646,7 @@ "type": "text/plain" }, "key": "include-unsegmented", - "value": "true" + "value": "false" } ], "variable": [] @@ -131401,7 +135662,7 @@ }, "response": [ { - "id": "93bc3a51-c0a5-462f-8bd0-a4e2a243d3fe", + "id": "da722ad7-9d8b-4545-a9cf-4b740021f2da", "name": "List of Roles", "originalRequest": { "url": { @@ -131419,7 +135680,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "5168015d32f890ca15812c9180835d2e" }, { "disabled": true, @@ -131446,7 +135707,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -131455,7 +135716,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "requestable eq false" }, { "disabled": true, @@ -131464,7 +135725,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -131473,7 +135734,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d" }, { "disabled": true, @@ -131482,7 +135743,7 @@ "type": "text/plain" }, "key": "include-unsegmented", - "value": "true" + "value": "false" } ], "variable": [] @@ -131512,12 +135773,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"dolore_6\": -58381792,\n \"dolore1c\": -91645381\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n },\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"minim456\": -36023221.126886584\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n },\n {\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "23aeea72-56fb-4b6b-a17a-4101c48616fd", + "id": "1666f1b3-5476-47cf-94e1-d9b56517b9b0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131535,7 +135796,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "5168015d32f890ca15812c9180835d2e" }, { "disabled": true, @@ -131562,7 +135823,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -131571,7 +135832,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "requestable eq false" }, { "disabled": true, @@ -131580,7 +135841,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -131589,7 +135850,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d" }, { "disabled": true, @@ -131598,7 +135859,7 @@ "type": "text/plain" }, "key": "include-unsegmented", - "value": "true" + "value": "false" } ], "variable": [] @@ -131628,12 +135889,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1405d834-aebf-4f7f-aea9-ff835de16b4a", + "id": "efca1679-1b8a-45a6-9d2f-105699564a48", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131651,7 +135912,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "5168015d32f890ca15812c9180835d2e" }, { "disabled": true, @@ -131678,7 +135939,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -131687,7 +135948,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "requestable eq false" }, { "disabled": true, @@ -131696,7 +135957,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -131705,7 +135966,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d" }, { "disabled": true, @@ -131714,7 +135975,7 @@ "type": "text/plain" }, "key": "include-unsegmented", - "value": "true" + "value": "false" } ], "variable": [] @@ -131744,12 +136005,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "92a9543e-7393-4923-b817-db9ae7b223e8", + "id": "6b511358-eeec-49bf-866f-7000c5864991", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131767,7 +136028,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "5168015d32f890ca15812c9180835d2e" }, { "disabled": true, @@ -131794,7 +136055,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -131803,7 +136064,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "requestable eq false" }, { "disabled": true, @@ -131812,7 +136073,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -131821,7 +136082,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d" }, { "disabled": true, @@ -131830,7 +136091,7 @@ "type": "text/plain" }, "key": "include-unsegmented", - "value": "true" + "value": "false" } ], "variable": [] @@ -131860,12 +136121,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "432b3ed0-cf2b-4d10-a9d4-4999f9070a33", + "id": "446037c7-55d5-4fc0-a4f4-edac237cd2eb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131883,7 +136144,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "5168015d32f890ca15812c9180835d2e" }, { "disabled": true, @@ -131910,7 +136171,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -131919,7 +136180,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "requestable eq false" }, { "disabled": true, @@ -131928,7 +136189,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -131937,7 +136198,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d" }, { "disabled": true, @@ -131946,7 +136207,7 @@ "type": "text/plain" }, "key": "include-unsegmented", - "value": "true" + "value": "false" } ], "variable": [] @@ -131976,12 +136237,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a243ddcd-eca1-44da-9ae5-768b428eac25", + "id": "8721fed9-5668-4184-a2f4-8c1e70919b72", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131999,7 +136260,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "5168015d32f890ca15812c9180835d2e" }, { "disabled": true, @@ -132026,7 +136287,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -132035,7 +136296,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "requestable eq false" }, { "disabled": true, @@ -132044,7 +136305,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" }, { "disabled": true, @@ -132053,7 +136314,7 @@ "type": "text/plain" }, "key": "for-segment-ids", - "value": "" + "value": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d" }, { "disabled": true, @@ -132062,7 +136323,7 @@ "type": "text/plain" }, "key": "include-unsegmented", - "value": "true" + "value": "false" } ], "variable": [] @@ -132092,7 +136353,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -132103,7 +136364,7 @@ } }, { - "id": "1bd4b0e5-7b47-4c14-897a-608a353c8382", + "id": "80e22ad5-950f-4cad-9136-387df2f7884f", "name": "Create a Role", "request": { "name": "Create a Role", @@ -132134,7 +136395,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"irure3\": -81189132\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -132145,7 +136406,7 @@ }, "response": [ { - "id": "2a04254b-3f61-4799-ab61-783a5b64b581", + "id": "7d0995e7-6b87-4f0e-b41c-c2e8acaf9f0e", "name": "Role created", "originalRequest": { "url": { @@ -132179,7 +136440,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"irure3\": -81189132\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -132196,12 +136457,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"irure3\": -81189132\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0fe5c4cc-4efd-4eb6-b860-f5d6448d4231", + "id": "8fb4fa01-aa6f-41f9-8835-0cf9b06d735e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132235,7 +136496,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"irure3\": -81189132\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -132252,12 +136513,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8953560b-da20-4741-a44f-36f146471d81", + "id": "6098c063-25a6-4735-ae30-dbbbd439cfaa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132291,7 +136552,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"irure3\": -81189132\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -132308,12 +136569,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4d2ad331-e542-4153-917f-48a0eb62543a", + "id": "18744b9e-82e7-4f92-872f-748821627fb0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132347,7 +136608,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"irure3\": -81189132\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -132364,12 +136625,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c48b98e8-1b17-40a7-a5d1-080ba698f205", + "id": "be1ffa1d-520a-42ab-a0e9-36b40812ede0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132403,7 +136664,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"irure3\": -81189132\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -132420,12 +136681,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6fea75ea-b1db-4151-8a9f-f8424e03a471", + "id": "cb45a919-87fc-4bac-9755-506e3f315893", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132459,7 +136720,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"irure3\": -81189132\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -132476,7 +136737,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -132487,7 +136748,7 @@ } }, { - "id": "6fe84f7d-01ed-4f3f-9267-e638272097ed", + "id": "d4f179a6-8695-4669-96b9-33d87aa206db", "name": "Get a Role", "request": { "name": "Get a Role", @@ -132507,7 +136768,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808a7813090a017814121e121518", "key": "id", "disabled": true, "description": { @@ -132528,7 +136789,7 @@ }, "response": [ { - "id": "9bb4a398-0bf0-4c20-8f87-6391dddd9758", + "id": "31e06bae-969e-4344-868f-28e4cddb80db", "name": "List of all Roles", "originalRequest": { "url": { @@ -132567,12 +136828,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"irure3\": -81189132\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7abffac-9cd0-4c10-87d6-05869e0e8a43", + "id": "d5fc1788-f6aa-4d52-b98e-c4ff310ee3e3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132611,12 +136872,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2e9a39f0-8947-4fbe-8f66-7985c362bc7d", + "id": "a8a19eba-3feb-43e8-b57f-68db4bca7e00", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132655,12 +136916,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "50102be6-e717-4012-bd2a-826a0bbe7e92", + "id": "68f5d35d-e23d-414a-bf02-482de93509b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132699,12 +136960,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "dbafed73-abe2-4364-b5c4-4c171705069d", + "id": "e7e918aa-8468-41ee-9589-5bfb1087cf0f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132743,12 +137004,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bbaf75de-19cb-483c-a0aa-b400ee5f8fd0", + "id": "9c9422a6-9dae-4f3b-9708-0410d3fb9d3b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132787,7 +137048,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -132798,7 +137059,7 @@ } }, { - "id": "29cc37b0-f560-4aca-baf7-12c7d75bd72a", + "id": "9abef252-d350-41d5-8ae8-66c143583971", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -132818,7 +137079,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808a7813090a017814121e121518", "key": "id", "disabled": true, "description": { @@ -132841,7 +137102,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/requestable\",\n \"value\": true\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": true\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -132852,8 +137113,8 @@ }, "response": [ { - "id": "0520eabf-3fb1-44d7-8128-7ba1e251268c", - "name": "Responds with the Role as updated.", + "id": "5fb65956-8b6b-4b2e-8256-897eed73226f", + "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { "path": [ @@ -132887,7 +137148,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/requestable\",\n \"value\": true\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": true\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -132904,13 +137165,13 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"irure3\": -81189132\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a14d00c7-4ccb-4199-aad2-1293b42120ff", - "name": "Client Error - Returned if the request body is invalid.", + "id": "89d8cf91-5ff9-4acf-ad93-bdd6ac548b82", + "name": "Assign a Role to a Segment", "originalRequest": { "url": { "path": [ @@ -132944,7 +137205,235 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/segments/-\",\n \"value\": \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "46214a8c-c796-4866-997e-0ddf6134761d", + "name": "Set the Membership Selection Criteria to a List of Identities", + "originalRequest": { + "url": { + "path": [ + "roles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/membership\",\n \"value\": {\n \"type\": \"IDENTITY_LIST\",\n \"identities\": [\n {\n \"id\": \"2c91808973fe906c0174262092014ed9\"\n },\n {\n \"id\": \"2c918086262092014ed94fb8a47612f3\"\n }\n ]\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "000c92d5-e3af-48dd-866a-68a3ef503c30", + "name": "Set the Membership Selection Criteria to a Standard Expression", + "originalRequest": { + "url": { + "path": [ + "roles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/membership\",\n \"value\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"attribute.memberOf\",\n \"sourceId\": \"2c9180887701fb2014213e122092014e\"\n },\n \"stringValue\": \"Engineering\"\n }\n ]\n }\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "b8485cb1-ee3a-42a4-b7a6-34912924eef9", + "name": "Add a New Clause as the Child of an Existing Standard Expression", + "originalRequest": { + "url": { + "path": [ + "roles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/membership/criteria/children/-\",\n \"value\": {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"attribute.email\"\n },\n \"stringValue\": \"@identitynow.com\"\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"Entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "b46de652-c215-450a-b6b7-18affaceafc6", + "name": "Assign a Role to a Segment", + "originalRequest": { + "url": { + "path": [ + "roles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/segments/-\",\n \"value\": \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -132961,13 +137450,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "376b39be-0031-4675-9a2a-7fcd067478b4", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "55c066d3-e668-4b74-87bb-558ab96fdf4a", + "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { "path": [ @@ -133001,7 +137490,178 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/membership\",\n \"value\": {\n \"type\": \"IDENTITY_LIST\",\n \"identities\": [\n {\n \"id\": \"2c91808973fe906c0174262092014ed9\"\n },\n {\n \"id\": \"2c918086262092014ed94fb8a47612f3\"\n }\n ]\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "b8cdab60-3bf1-467d-ad09-154def3cf889", + "name": "Set the Membership Selection Criteria to a Standard Expression", + "originalRequest": { + "url": { + "path": [ + "roles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/membership\",\n \"value\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"attribute.memberOf\",\n \"sourceId\": \"2c9180887701fb2014213e122092014e\"\n },\n \"stringValue\": \"Engineering\"\n }\n ]\n }\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "84399616-0986-4f6b-8912-88113e436a81", + "name": "Add a New Clause as the Child of an Existing Standard Expression", + "originalRequest": { + "url": { + "path": [ + "roles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/membership/criteria/children/-\",\n \"value\": {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"attribute.email\"\n },\n \"stringValue\": \"@identitynow.com\"\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "484dd2a5-5191-4285-9631-7f0719a9827f", + "name": "Set the Membership Selection Criteria to a List of Identities", + "originalRequest": { + "url": { + "path": [ + "roles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/membership\",\n \"value\": {\n \"type\": \"IDENTITY_LIST\",\n \"identities\": [\n {\n \"id\": \"2c91808973fe906c0174262092014ed9\"\n },\n {\n \"id\": \"2c918086262092014ed94fb8a47612f3\"\n }\n ]\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -133018,13 +137678,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87b3fd39-e5e0-432c-bb48-0e4b2c68a86f", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "2aa71fc9-4bbf-42b8-8e0b-c59d99d31ffa", + "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { "path": [ @@ -133058,7 +137718,121 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/membership\",\n \"value\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"attribute.memberOf\",\n \"sourceId\": \"2c9180887701fb2014213e122092014e\"\n },\n \"stringValue\": \"Engineering\"\n }\n ]\n }\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "f95e84e0-5f22-4525-9811-61ec0ac20c9c", + "name": "Add a New Clause as the Child of an Existing Standard Expression", + "originalRequest": { + "url": { + "path": [ + "roles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/membership/criteria/children/-\",\n \"value\": {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"attribute.email\"\n },\n \"stringValue\": \"@identitynow.com\"\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "7d102b1d-9a7e-41a9-b2de-53459e4ead35", + "name": "An example of a 403 response object", + "originalRequest": { + "url": { + "path": [ + "roles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/membership\",\n \"value\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"OR\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"attribute.memberOf\",\n \"sourceId\": \"2c9180887701fb2014213e122092014e\"\n },\n \"stringValue\": \"Engineering\"\n }\n ]\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -133075,13 +137849,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c5149756-7414-474f-bc56-65212fb84ba7", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "c99c22f4-da45-4b05-a8e0-207ed6505aee", + "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { "path": [ @@ -133115,7 +137889,64 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/membership/criteria/children/-\",\n \"value\": {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"attribute.email\"\n },\n \"stringValue\": \"@identitynow.com\"\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "00b5adea-0ad5-4ab5-ad56-91749d35b3d6", + "name": "Add a New Clause as the Child of an Existing Standard Expression", + "originalRequest": { + "url": { + "path": [ + "roles", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/membership/criteria/children/-\",\n \"value\": {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"attribute.email\"\n },\n \"stringValue\": \"@identitynow.com\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -133132,13 +137963,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f380595b-8b72-4f94-9171-4d781b5c2ed9", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "0f2fe7a7-76ac-492a-acaa-df1e760aa4d0", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -133172,7 +138003,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/requestable\",\n \"value\": true\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": true\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -133189,7 +138020,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -133200,7 +138031,7 @@ } }, { - "id": "4cfbc1d2-3f94-4f11-81bc-d0df20eda4fd", + "id": "dd97d1c9-267d-45e6-8321-fe997cb84ba9", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -133220,7 +138051,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808a7813090a017814121e121518", "key": "id", "disabled": true, "description": { @@ -133241,7 +138072,7 @@ }, "response": [ { - "id": "10a1004d-b08a-4c78-9870-3e5572fc820b", + "id": "fb492c5d-227c-4794-bcd1-4841f57bd0f0", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -133275,7 +138106,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ed8955a9-944c-40e8-a12d-08279278d29d", + "id": "db9fb9b0-4688-46be-8ec8-b5ce19ab7a2d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133314,12 +138145,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "beb973f4-af99-434e-b515-97d9d8fbd472", + "id": "16e15f62-9b48-4703-8017-8b6d2eb1dd91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133358,12 +138189,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e69661af-6f33-4e99-8cbd-bc6914c35a11", + "id": "42cc43cb-f095-4372-aa3a-168587e927b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133402,12 +138233,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "390c3d0c-027a-463e-8e8c-fe74cece0ef2", + "id": "aeb5b58c-f33e-40cf-8148-2aa60c62bfab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133446,12 +138277,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f966bd21-1ec4-46d7-a5a7-698e62ee71ce", + "id": "8be6a3dd-f4c4-414c-a5de-c083c70b6373", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133490,7 +138321,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -133501,7 +138332,7 @@ } }, { - "id": "1a98931d-a1cb-49bc-9821-f711cd1098f2", + "id": "72512bb5-b714-4a08-9b37-f0ce8364b78f", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -133533,7 +138364,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roleIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"roleIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -133544,7 +138375,7 @@ }, "response": [ { - "id": "527a0fca-6a8d-4fe9-8abc-a3b40b36f5d6", + "id": "05918dbe-57ec-4bac-aac9-2061ce2a41ca", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -133579,7 +138410,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roleIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"roleIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -133596,13 +138427,13 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n}", + "body": "{\n \"type\": \"TASK_RESULT\",\n \"id\": \"464ae7bf791e49fdb74606a2e4a89635\",\n \"name\": null\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "71d91c95-3f86-4456-87ff-01d2cfc265bc", - "name": "Client Error - Returned if the request body is invalid.", + "id": "6b18b636-2ae3-4daa-b502-e443f6b562e7", + "name": "400.1 Bad Request Content", "originalRequest": { "url": { "path": [ @@ -133636,7 +138467,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roleIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"roleIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -133653,12 +138484,126 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"1ea1adcb84da4dcb890145e05745774e\",\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4d4ad410-daec-4d6b-a4bb-bdbc79bea4f1", + "id": "53d41fc7-916f-4129-9782-fc135a018d7f", + "name": "400.1 Role ids limit violation", + "originalRequest": { + "url": { + "path": [ + "roles", + "bulk-delete" + ], + "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 \"roleIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"77aa89ac6f0e422dbc588866abc22be9\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"roleIds count exceeded max limit of 50 for bulk-delete.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "d83be562-8e87-4b7d-a6f9-a1127920abc1", + "name": "400.1.404 Referenced object not found", + "originalRequest": { + "url": { + "path": [ + "roles", + "bulk-delete" + ], + "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 \"roleIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1.404 Referenced object not found\",\n \"trackingId\": \"77aa89ac6f0e422dbc588866abc22be9\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"Referenced roleIds [\\\"2c91808876438bb2017668b91919ecca\\\"] was not found.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "f8dc4868-8595-4c64-96de-fad47b534dd0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133693,7 +138638,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roleIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"roleIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -133710,12 +138655,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb2a146a-0c89-4ca1-842b-61adcd386a4c", + "id": "d1b633dd-466a-42bf-9763-1acfe2a3d958", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133750,7 +138695,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roleIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"roleIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -133767,12 +138712,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3de48156-bf1c-4bcc-9a54-a49f5e1c173d", + "id": "88b8381a-712b-4686-aeb9-46b6d2984ab8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133807,7 +138752,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roleIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"roleIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -133824,12 +138769,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4a69b0e9-12fe-4c77-86ca-7aa75397bc6f", + "id": "6ae636ae-ad49-4fab-81a4-075252c6cf05", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133864,7 +138809,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roleIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"roleIds\": [\n \"2c91808876438bb2017668b91919ecca\",\n \"2c91808876438ba801766e129f151816\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -133881,7 +138826,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -133892,7 +138837,7 @@ } }, { - "id": "2e16226c-d132-4275-9a40-3f87e80bccf7", + "id": "910a5e52-11d2-409d-a661-ee60d283aa80", "name": "Identities assigned a Role", "request": { "name": "Identities assigned a Role", @@ -133932,7 +138877,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -133941,7 +138886,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw Joe" }, { "disabled": true, @@ -133950,13 +138895,13 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "aliasName,name" } ], "variable": [ { "type": "any", - "value": "", + "value": "2c91808a7813090a017814121e121518", "key": "id", "disabled": true, "description": { @@ -133977,7 +138922,7 @@ }, "response": [ { - "id": "6a9e7672-4e6f-4a84-bc35-630e4b2b04b2", + "id": "9564ed1b-f3f9-42d4-b487-4bf5c3e6210a", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -134015,7 +138960,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -134024,7 +138969,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw Joe" }, { "disabled": true, @@ -134033,7 +138978,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "aliasName,name" } ], "variable": [] @@ -134063,12 +139008,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"aliasName\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"roleAssignmentSource\": \"ROLE_MEMBERSHIP\"\n },\n {\n \"id\": \"\",\n \"aliasName\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"roleAssignmentSource\": \"ROLE_MEMBERSHIP\"\n }\n]", + "body": "[\n {\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"aliasName\": \"t.edison\",\n \"name\": \"Thomas Edison\",\n \"email\": \"t.edison@identitynow.com\",\n \"roleAssignmentSource\": \"ACCESS_REQUEST\"\n },\n {\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"aliasName\": \"t.edison\",\n \"name\": \"Thomas Edison\",\n \"email\": \"t.edison@identitynow.com\",\n \"roleAssignmentSource\": \"ACCESS_REQUEST\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "006de70e-59fb-4048-bcfd-94d64cde73b7", + "id": "f1a926ee-dd60-4469-bad9-040764e19a00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134106,7 +139051,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -134115,7 +139060,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw Joe" }, { "disabled": true, @@ -134124,7 +139069,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "aliasName,name" } ], "variable": [] @@ -134154,12 +139099,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d6b83281-36de-4aba-a6bf-fc88c26747e8", + "id": "8684b272-df1e-4205-8730-a894dc4ab0fe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134197,7 +139142,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -134206,7 +139151,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw Joe" }, { "disabled": true, @@ -134215,7 +139160,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "aliasName,name" } ], "variable": [] @@ -134245,12 +139190,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5f66c30a-80d8-4bca-9d88-85c23379bd64", + "id": "40aa5009-9e48-4857-85e6-0dc5f92548f8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134288,7 +139233,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -134297,7 +139242,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw Joe" }, { "disabled": true, @@ -134306,7 +139251,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "aliasName,name" } ], "variable": [] @@ -134336,12 +139281,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7b5ea09b-32c1-4d56-aab7-8bf45ee46b20", + "id": "43fd2f3f-b799-407b-a20e-14855440d9c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134379,7 +139324,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -134388,7 +139333,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw Joe" }, { "disabled": true, @@ -134397,7 +139342,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "aliasName,name" } ], "variable": [] @@ -134427,12 +139372,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d95d523d-1472-45e0-8ab6-ef688349eb36", + "id": "d67a43e1-de1a-431c-92a1-5c96ad59766a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134470,7 +139415,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -134479,7 +139424,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name sw Joe" }, { "disabled": true, @@ -134488,7 +139433,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "aliasName,name" } ], "variable": [] @@ -134518,7 +139463,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -134529,7 +139474,7 @@ } }, { - "id": "5060644c-adf1-4789-8a56-62187d8a0403", + "id": "5a5ea474-75b7-4a4d-9c87-a8a69cea5ea2", "name": "List role's Entitlements", "request": { "name": "List role's Entitlements", @@ -134572,7 +139517,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -134581,7 +139526,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" }, { "disabled": true, @@ -134590,13 +139535,13 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [ { "type": "any", - "value": "", + "value": "2c91808a7813090a017814121919ecca", "key": "id", "disabled": true, "description": { @@ -134617,7 +139562,7 @@ }, "response": [ { - "id": "f6e5525f-2112-4078-802a-9568725b20ba", + "id": "1ac687ed-de82-49b2-9787-213de932de13", "name": "List of Entitlements", "originalRequest": { "url": { @@ -134655,7 +139600,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -134664,7 +139609,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" }, { "disabled": true, @@ -134673,7 +139618,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -134703,12 +139648,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"dolore_59a\": -14064548.001217768,\n \"ad_0\": 88792807\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"reprehenderit_bb\": 84438357.51621753\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", + "body": "[\n {\n \"id\": \"2c91808874ff91550175097daaec161c\",\n \"name\": \"LauncherTest2\",\n \"created\": \"2020-10-08T18:33:52.029Z\",\n \"modified\": \"2020-10-08T18:33:52.029Z\",\n \"attribute\": \"memberOf\",\n \"value\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"sourceSchemaObjectType\": \"group\",\n \"privileged\": true,\n \"cloudGoverned\": true,\n \"description\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"requestable\": true,\n \"attributes\": {\n \"fieldName\": \"fieldValue\"\n },\n \"source\": {\n \"id\": \"2c9180827ca885d7017ca8ce28a000eb\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-Source\"\n },\n \"owner\": {\n \"id\": \"2a2fdacca5e345f18bf7970cfbb8fec2\",\n \"name\": \"identity 1\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n },\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n }\n ],\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n }\n },\n {\n \"id\": \"2c91808874ff91550175097daaec161c\",\n \"name\": \"LauncherTest2\",\n \"created\": \"2020-10-08T18:33:52.029Z\",\n \"modified\": \"2020-10-08T18:33:52.029Z\",\n \"attribute\": \"memberOf\",\n \"value\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"sourceSchemaObjectType\": \"group\",\n \"privileged\": true,\n \"cloudGoverned\": true,\n \"description\": \"CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local\",\n \"requestable\": true,\n \"attributes\": {\n \"fieldName\": \"fieldValue\"\n },\n \"source\": {\n \"id\": \"2c9180827ca885d7017ca8ce28a000eb\",\n \"type\": \"SOURCE\",\n \"name\": \"ODS-AD-Source\"\n },\n \"owner\": {\n \"id\": \"2a2fdacca5e345f18bf7970cfbb8fec2\",\n \"name\": \"identity 1\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n },\n {\n \"rights\": [\n \"SELECT\",\n \"SELECT\"\n ],\n \"target\": \"SYS.GV_$TRANSACTION\"\n }\n ],\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": true,\n \"DESCRIPTION\": true\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ceb38954-a6bb-48d9-b5e9-7e7c6c3432e1", + "id": "e7f995a0-98bd-4655-8ce7-d7c16c28457b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134746,7 +139691,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -134755,7 +139700,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" }, { "disabled": true, @@ -134764,7 +139709,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -134794,12 +139739,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c385673a-f090-4bcc-9eed-d1d6ae7d811f", + "id": "c64d8e45-43fa-4996-8149-d18b7b531824", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134837,7 +139782,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -134846,7 +139791,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" }, { "disabled": true, @@ -134855,7 +139800,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -134885,12 +139830,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ee03459b-d088-4b16-af6f-ec49808af0b4", + "id": "4369db4a-66a6-461b-924e-aca0db951b0c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134928,7 +139873,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -134937,7 +139882,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" }, { "disabled": true, @@ -134946,7 +139891,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -134976,12 +139921,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0313449a-2056-4007-acd8-d65d27db4df0", + "id": "48742923-2402-4d24-a8cd-53a9e522c344", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135019,7 +139964,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -135028,7 +139973,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" }, { "disabled": true, @@ -135037,7 +139982,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -135067,12 +140012,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "05445091-0d24-43f5-a598-009f52bbd1f2", + "id": "02f9af03-a865-4866-b720-f28335c9dca2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135110,7 +140055,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -135119,7 +140064,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "attribute eq \"memberOf\"" }, { "disabled": true, @@ -135128,7 +140073,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name,-modified" } ], "variable": [] @@ -135158,7 +140103,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -135175,7 +140120,7 @@ "description": "", "item": [ { - "id": "e638ff9f-d063-4662-865b-b96633909197", + "id": "968154e4-22f2-4954-b0d6-28215180bce2", "name": "Configure/create extended search attributes in IdentityNow.", "request": { "name": "Configure/create extended search attributes in IdentityNow.", @@ -135207,7 +140152,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"applicationAttributes\": {}\n}", + "raw": "{\n \"name\": \"newMailAttribute\",\n \"displayName\": \"New Mail Attribute\",\n \"applicationAttributes\": {\n \"2c9180866166b5b0016167c32ef31a66\": \"mail\",\n \"2c9180866166b5b0016167c32ef31a67\": \"mail\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -135218,7 +140163,7 @@ }, "response": [ { - "id": "f65fe72c-f8f5-4c28-b8e4-54b976b156be", + "id": "cae60096-ef2a-432a-9db4-bdb133658d7b", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -135253,7 +140198,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"applicationAttributes\": {}\n}", + "raw": "{\n \"name\": \"newMailAttribute\",\n \"displayName\": \"New Mail Attribute\",\n \"applicationAttributes\": {\n \"2c9180866166b5b0016167c32ef31a66\": \"mail\",\n \"2c9180866166b5b0016167c32ef31a67\": \"mail\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -135275,7 +140220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7dcbe45-be9d-482b-b482-dcb82a521e2b", + "id": "75edda1c-67b6-400e-9777-d357e54ed57e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135310,7 +140255,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"applicationAttributes\": {}\n}", + "raw": "{\n \"name\": \"newMailAttribute\",\n \"displayName\": \"New Mail Attribute\",\n \"applicationAttributes\": {\n \"2c9180866166b5b0016167c32ef31a66\": \"mail\",\n \"2c9180866166b5b0016167c32ef31a67\": \"mail\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -135327,12 +140272,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b4de294f-13d6-4fe1-90a4-1be90ceddcaf", + "id": "6c28a5a1-866b-4262-b247-4cfe2c5def84", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135367,7 +140312,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"applicationAttributes\": {}\n}", + "raw": "{\n \"name\": \"newMailAttribute\",\n \"displayName\": \"New Mail Attribute\",\n \"applicationAttributes\": {\n \"2c9180866166b5b0016167c32ef31a66\": \"mail\",\n \"2c9180866166b5b0016167c32ef31a67\": \"mail\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -135384,12 +140329,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "328eb63b-b952-4abc-b00f-c2ba0a138399", + "id": "119f77dd-587a-404c-9a11-f1378cfc7b95", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135424,7 +140369,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"applicationAttributes\": {}\n}", + "raw": "{\n \"name\": \"newMailAttribute\",\n \"displayName\": \"New Mail Attribute\",\n \"applicationAttributes\": {\n \"2c9180866166b5b0016167c32ef31a66\": \"mail\",\n \"2c9180866166b5b0016167c32ef31a67\": \"mail\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -135441,12 +140386,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d4e04093-2feb-4ae4-aced-f5450a9fe233", + "id": "76e41115-bdfd-4a80-90fc-37d9524caeba", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -135481,7 +140426,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"applicationAttributes\": {}\n}", + "raw": "{\n \"name\": \"newMailAttribute\",\n \"displayName\": \"New Mail Attribute\",\n \"applicationAttributes\": {\n \"2c9180866166b5b0016167c32ef31a66\": \"mail\",\n \"2c9180866166b5b0016167c32ef31a67\": \"mail\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -135498,12 +140443,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "cc1dc507-7208-4481-ae14-25a6201cc3df", + "id": "bba033dd-04a5-4f26-8f6e-71ab11744e11", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135538,7 +140483,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"applicationAttributes\": {}\n}", + "raw": "{\n \"name\": \"newMailAttribute\",\n \"displayName\": \"New Mail Attribute\",\n \"applicationAttributes\": {\n \"2c9180866166b5b0016167c32ef31a66\": \"mail\",\n \"2c9180866166b5b0016167c32ef31a67\": \"mail\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -135555,12 +140500,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6508fde2-0f39-4f65-8195-33e3bab3fb05", + "id": "342d80d7-2b38-450c-b1fe-e206c502df83", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135595,7 +140540,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"applicationAttributes\": {}\n}", + "raw": "{\n \"name\": \"newMailAttribute\",\n \"displayName\": \"New Mail Attribute\",\n \"applicationAttributes\": {\n \"2c9180866166b5b0016167c32ef31a66\": \"mail\",\n \"2c9180866166b5b0016167c32ef31a67\": \"mail\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -135612,7 +140557,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -135623,7 +140568,7 @@ } }, { - "id": "58281c47-7432-4f04-8e51-13ad70b2b787", + "id": "e0d78a38-40a0-4f9c-8f95-9dd57cf9c831", "name": "Retrieve a list of extended search attributes in IdentityNow.", "request": { "name": "Retrieve a list of extended search attributes in IdentityNow.", @@ -135653,7 +140598,7 @@ }, "response": [ { - "id": "2f1e34da-cbf1-4ef4-94ed-bdbb347307d0", + "id": "a73327c8-7bf9-4d36-864a-0eac5168668c", "name": "List of attribute configurations in IdentityNow.", "originalRequest": { "url": { @@ -135692,12 +140637,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"applicationAttributes\": {}\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"applicationAttributes\": {}\n }\n]", + "body": "[\n {\n \"name\": \"newMailAttribute\",\n \"displayName\": \"New Mail Attribute\",\n \"applicationAttributes\": {\n \"2c91808b79fd2422017a0b35d30f3968\": \"employeeNumber\",\n \"2c91808b79fd2422017a0b36008f396b\": \"employeeNumber\"\n }\n },\n {\n \"name\": \"newMailAttribute\",\n \"displayName\": \"New Mail Attribute\",\n \"applicationAttributes\": {\n \"2c91808b79fd2422017a0b35d30f3968\": \"employeeNumber\",\n \"2c91808b79fd2422017a0b36008f396b\": \"employeeNumber\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6f02a529-932b-40f5-af89-7a4ddc0b5258", + "id": "1d12c41e-f62a-44b1-90ad-9b69c300c542", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135736,12 +140681,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "febaf66c-7e64-4ad2-8525-b9b83c25cace", + "id": "b17fec1e-dde8-4992-96a5-73778cf612c4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135780,12 +140725,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "da4b7c4d-973a-449c-8ed1-2d0639105502", + "id": "25a2a634-0820-443b-bf6a-8cf4b5527fd9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135824,12 +140769,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1a3d161-dac0-46a3-97f0-3401438cb0ed", + "id": "79468578-926e-4c58-84fd-fb396c42a4c4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135868,7 +140813,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -135879,7 +140824,7 @@ } }, { - "id": "84bb1911-b8ab-404f-94ba-c024f97f69f4", + "id": "587faf22-f733-4c08-b3d7-9fbd9eeac918", "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.", @@ -135900,7 +140845,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "newMailAttribute", "key": "name", "disabled": true, "description": { @@ -135921,7 +140866,7 @@ }, "response": [ { - "id": "3b5b38a2-816a-4f4b-afc8-a9f1548e5b1f", + "id": "9dd6569f-d965-4e63-b61a-6175492421b7", "name": "Specific attribute configuration in IdentityNow.", "originalRequest": { "url": { @@ -135961,12 +140906,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"applicationAttributes\": {}\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"applicationAttributes\": {}\n }\n]", + "body": "[\n {\n \"name\": \"newMailAttribute\",\n \"displayName\": \"New Mail Attribute\",\n \"applicationAttributes\": {\n \"2c91808b79fd2422017a0b35d30f3968\": \"employeeNumber\",\n \"2c91808b79fd2422017a0b36008f396b\": \"employeeNumber\"\n }\n },\n {\n \"name\": \"newMailAttribute\",\n \"displayName\": \"New Mail Attribute\",\n \"applicationAttributes\": {\n \"2c91808b79fd2422017a0b35d30f3968\": \"employeeNumber\",\n \"2c91808b79fd2422017a0b36008f396b\": \"employeeNumber\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6c1610ce-5a5a-412c-ba3c-8e8b6c4e16f9", + "id": "b2b7602e-83ac-4f56-8e89-5358849e3633", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -136001,7 +140946,7 @@ "_postman_previewlanguage": "text" }, { - "id": "eafe5f08-3e4b-4489-b721-f7f92de72dce", + "id": "f64769a3-e5e7-48ae-ae62-14413c3c90b6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136041,12 +140986,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "64b95787-682b-44e4-ae9c-468f24f67974", + "id": "38511d90-e0b6-4a54-b8b9-b9bf695f185b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136086,12 +141031,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e4bdc300-2326-42cc-a605-9a95f9c1cbfc", + "id": "24855f91-056f-4277-9565-cf2c8ef5f06b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136131,12 +141076,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bc542bed-d087-4f88-b5bb-d290cf78c2f5", + "id": "4dc9d118-89aa-477a-ad24-6cccacd4dfa6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136176,12 +141121,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ffb42c5e-2dc6-4b2e-ab59-96616dd99586", + "id": "f609ce9e-3d17-494c-a1c4-212544641209", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136221,7 +141166,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -136232,7 +141177,7 @@ } }, { - "id": "1ca2c35f-0e52-43eb-bf1b-92b7113acf67", + "id": "6c098f7a-3831-4298-87da-a804027cf84f", "name": "Delete an extended search attribute in IdentityNow.", "request": { "name": "Delete an extended search attribute in IdentityNow.", @@ -136253,7 +141198,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "newMailAttribute", "key": "name", "disabled": true, "description": { @@ -136274,7 +141219,7 @@ }, "response": [ { - "id": "98d47633-f75c-4537-82c5-6d5cd5c1c88d", + "id": "4b19cda4-a91e-4098-946a-fe75a992a412", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -136309,7 +141254,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b3fe6a25-5b16-4f8f-bed4-8a8fcddb9172", + "id": "cb00ce57-3931-4a37-b0d9-1e05496426d2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136349,12 +141294,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7239a33c-c1c4-4bf4-a9c0-cf555a2af178", + "id": "7224b614-75e6-4d35-a138-e11b7a53303a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136394,12 +141339,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6b458310-7900-4285-9550-9ad30472707b", + "id": "f433ce03-bc29-4100-a99d-8fdd83973446", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136439,12 +141384,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "de128d8c-1dc1-4511-9b1a-318ab21e0a3c", + "id": "cb44a967-5cbb-43f4-93ae-b27996fc7811", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136484,12 +141429,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2655cd3b-ebfa-4115-b4ac-0474bc46ca76", + "id": "15024da7-94f0-4359-8511-938055d6b0c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136529,7 +141474,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -136540,7 +141485,7 @@ } }, { - "id": "8460d19a-840b-47a7-8c7a-4171aa2e3796", + "id": "88e3bdfc-b48f-4029-8237-f3fb04b310c5", "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.", @@ -136561,7 +141506,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "promotedMailAttribute", "key": "name", "disabled": true, "description": { @@ -136584,7 +141529,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"newAttributeName\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/displayName\",\n \"value\": \"new attribute display name\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/applicationAttributes\",\n \"value\": {\n \"2c91808b79fd2422017a0b35d30f3968\": \"employeeNumber\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -136595,7 +141540,7 @@ }, "response": [ { - "id": "f3fe160b-8a2e-4f78-9dc8-34725576950d", + "id": "496ab351-ead7-4bdc-83ee-08826bbeff52", "name": "Responds with the Search Attribute Configuration as updated.", "originalRequest": { "url": { @@ -136631,7 +141576,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"newAttributeName\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/displayName\",\n \"value\": \"new attribute display name\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/applicationAttributes\",\n \"value\": {\n \"2c91808b79fd2422017a0b35d30f3968\": \"employeeNumber\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -136648,12 +141593,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"displayName\": \"\",\n \"applicationAttributes\": {}\n}", + "body": "{\n \"name\": \"newMailAttribute\",\n \"displayName\": \"New Mail Attribute\",\n \"applicationAttributes\": {\n \"2c91808b79fd2422017a0b35d30f3968\": \"employeeNumber\",\n \"2c91808b79fd2422017a0b36008f396b\": \"employeeNumber\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1dfca179-fb7e-4e13-91c9-f679a7d8748d", + "id": "0a2d9a11-c2e0-4bd1-9057-7c47bc504d15", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136689,7 +141634,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"newAttributeName\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/displayName\",\n \"value\": \"new attribute display name\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/applicationAttributes\",\n \"value\": {\n \"2c91808b79fd2422017a0b35d30f3968\": \"employeeNumber\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -136706,12 +141651,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "64a59322-7c07-4f5e-8554-c8130a599e82", + "id": "f5e3b66e-ce53-4547-83a1-d6bff96ad4e1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136747,7 +141692,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"newAttributeName\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/displayName\",\n \"value\": \"new attribute display name\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/applicationAttributes\",\n \"value\": {\n \"2c91808b79fd2422017a0b35d30f3968\": \"employeeNumber\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -136764,12 +141709,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35e8309a-7750-4f09-9b1e-487ecb6c4eec", + "id": "2f01d3cc-14b4-4bd4-bf0e-fa4c30648b53", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136805,7 +141750,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"newAttributeName\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/displayName\",\n \"value\": \"new attribute display name\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/applicationAttributes\",\n \"value\": {\n \"2c91808b79fd2422017a0b35d30f3968\": \"employeeNumber\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -136822,12 +141767,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "910040c4-21a7-41e6-97f9-24219926bc0a", + "id": "7b4863a8-e502-416d-9695-1fdc8f5e5eaf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136863,7 +141808,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"newAttributeName\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/displayName\",\n \"value\": \"new attribute display name\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/applicationAttributes\",\n \"value\": {\n \"2c91808b79fd2422017a0b35d30f3968\": \"employeeNumber\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -136880,12 +141825,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "83c9628b-0391-41a8-a05d-066f48e5d3c3", + "id": "48d12a81-9b1c-4579-8661-9a9ca544a00c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136921,7 +141866,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"newAttributeName\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/displayName\",\n \"value\": \"new attribute display name\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/applicationAttributes\",\n \"value\": {\n \"2c91808b79fd2422017a0b35d30f3968\": \"employeeNumber\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -136938,12 +141883,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52918be6-bb4c-4083-8bbf-ea082380e83e", + "id": "4bfd59bb-0a72-472a-9dd2-c8f348d2474c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136979,7 +141924,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"newAttributeName\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/displayName\",\n \"value\": \"new attribute display name\"\n },\n {\n \"op\": \"add\",\n \"path\": \"/applicationAttributes\",\n \"value\": {\n \"2c91808b79fd2422017a0b35d30f3968\": \"employeeNumber\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -136996,7 +141941,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -137013,7 +141958,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": "8aef5f5b-2447-424c-bc1d-62e3fb80c0ef", + "id": "be580b5a-59ca-4de5-ad4b-0156bedf7789", "name": "Create Segment", "request": { "name": "Create Segment", @@ -137044,7 +141989,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": false\n}", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"segment-xyz\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This segment represents xyz\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Austin\"\n }\n }\n },\n \"active\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -137055,7 +142000,7 @@ }, "response": [ { - "id": "135214f0-34bb-4be3-b545-aa09ca99e75f", + "id": "25341f20-fc9e-49a2-9c24-168e0e5cbe69", "name": "Segment created", "originalRequest": { "url": { @@ -137089,7 +142034,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": false\n}", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"segment-xyz\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This segment represents xyz\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Austin\"\n }\n }\n },\n \"active\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -137106,12 +142051,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": false\n}", + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"segment-xyz\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This segment represents xyz\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Austin\"\n }\n }\n },\n \"active\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "29887847-b314-4f87-86ca-1a6b45e75e3c", + "id": "cd97d0b3-9ff1-4242-8044-ef7c2f6f1fb4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137145,7 +142090,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": false\n}", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"segment-xyz\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This segment represents xyz\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Austin\"\n }\n }\n },\n \"active\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -137162,12 +142107,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "281a3133-db15-402d-a0c2-b819e935d1aa", + "id": "326ea826-3d1d-4403-adbf-16b45303d872", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137201,7 +142146,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": false\n}", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"segment-xyz\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This segment represents xyz\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Austin\"\n }\n }\n },\n \"active\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -137218,12 +142163,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bdc47b8b-f02d-49b6-bf4f-286213516894", + "id": "4a9323ab-c53d-4368-ae10-bc4b86d05baa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137257,7 +142202,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": false\n}", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"segment-xyz\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This segment represents xyz\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Austin\"\n }\n }\n },\n \"active\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -137274,12 +142219,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b94ba480-8afe-42ba-9b8d-24bfe5e8fb47", + "id": "a11a2ed1-8587-45be-8fef-4b4281afe1d4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137313,7 +142258,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": false\n}", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"segment-xyz\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This segment represents xyz\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Austin\"\n }\n }\n },\n \"active\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -137330,12 +142275,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "05548c8f-173f-486b-a1d4-9a6c4e2a7a1b", + "id": "6b969d74-cd0c-486d-97fb-d09730dfb6cd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137369,7 +142314,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": false\n}", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"segment-xyz\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This segment represents xyz\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Austin\"\n }\n }\n },\n \"active\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -137386,7 +142331,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -137397,7 +142342,7 @@ } }, { - "id": "b844af8b-d3b8-4d52-a192-7505914f9266", + "id": "94925bac-039e-44c8-9545-cad635a83d4e", "name": "List Segments", "request": { "name": "List Segments", @@ -137438,7 +142383,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -137454,7 +142399,7 @@ }, "response": [ { - "id": "34fe9a17-e324-4433-a529-fd2bbcb5f30f", + "id": "ddd38feb-3048-4157-8e0c-6f83a350ec2e", "name": "List of all segments", "originalRequest": { "url": { @@ -137490,7 +142435,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -137520,12 +142465,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": false\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": false\n }\n]", + "body": "[\n {\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"segment-xyz\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This segment represents xyz\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Austin\"\n }\n }\n },\n \"active\": true\n },\n {\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"segment-xyz\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This segment represents xyz\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Austin\"\n }\n }\n },\n \"active\": true\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "edc3ae7b-e36b-49e2-a813-67e19997e809", + "id": "8fd5afda-edfe-4322-abe0-56b730658214", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137561,7 +142506,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -137591,12 +142536,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4d675cb0-0566-44ba-ab03-a24a22139b28", + "id": "f1a346f4-14c9-46a6-b4a9-cdb88acbca2a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137632,7 +142577,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -137662,12 +142607,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "48a9e99f-d8ee-41a9-bcde-4ed629be453f", + "id": "71aa8aea-32bb-449a-a00e-8f8995aaa447", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137703,7 +142648,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -137733,12 +142678,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ff07db1f-88b8-4b63-abc2-53e703a220c0", + "id": "9263cad2-d3be-499a-8104-8ee07766f30d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137774,7 +142719,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -137804,12 +142749,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "acc80f21-2e03-41fd-b994-7778dd1f9284", + "id": "ba56e78c-227d-4f9e-976d-1cdb65bad6b5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137845,7 +142790,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -137875,7 +142820,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -137886,7 +142831,7 @@ } }, { - "id": "190e3fa9-674f-4f16-97d9-9c5c5d574a33", + "id": "842533c5-5bb9-42dd-9dd3-3767c4c9729e", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -137906,7 +142851,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -137927,7 +142872,7 @@ }, "response": [ { - "id": "3d2f5ca1-8d2a-4c88-be00-26905932a591", + "id": "3b0bcdb6-e1db-48ec-8e3a-8657fba03a0b", "name": "Segment", "originalRequest": { "url": { @@ -137966,12 +142911,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": false\n}", + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"segment-xyz\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This segment represents xyz\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Austin\"\n }\n }\n },\n \"active\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97f406ea-ab64-42ed-9364-7a5ae9595426", + "id": "dbacc7f0-4640-4fd5-b8b7-52fca23e46b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138010,12 +142955,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9ba02b33-e97a-4801-8b0f-4b65ec87969d", + "id": "9604c147-4850-4b6f-8010-4344ad5c8802", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138054,12 +142999,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "be1667b5-52fc-49f6-971f-3dbb881dbd91", + "id": "92dbac9b-9002-4a69-9ba4-49bc4bb1afde", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138098,12 +143043,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2f8c833e-3c59-4be1-9544-f0ea2c223d5b", + "id": "9d202af8-a984-445a-9f58-474e27af354b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -138142,12 +143087,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "83fd80d5-759b-4c93-9581-9163be01542c", + "id": "846907eb-1c5d-4673-a0d3-354c514e0f2d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138186,12 +143131,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "74b59899-a302-42a0-9279-e8fdd72ec9de", + "id": "07d7a91e-a5c7-4b17-8088-99fb47c702c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138230,7 +143175,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -138241,7 +143186,7 @@ } }, { - "id": "8848cee4-a548-4408-a2a2-ba8f6524d208", + "id": "bc8939fb-8e93-44da-9030-fb13e48fa1d5", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -138261,7 +143206,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -138282,7 +143227,7 @@ }, "response": [ { - "id": "e935cf41-4309-4826-a624-dab89b6e7c4c", + "id": "6657a967-edb9-4ee2-8ba6-6cd23de58fba", "name": "No content.", "originalRequest": { "url": { @@ -138316,7 +143261,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6ca3069e-2256-4fb3-b8db-15f0247a5111", + "id": "595d3bda-5008-4a74-90a8-3921749aeb34", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138355,12 +143300,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fa08fef6-1207-48cb-9594-8f7fe19d8f8b", + "id": "77319653-a9d0-4239-bde2-8163bc8d2803", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138399,12 +143344,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9b28312e-26aa-4e3f-94ee-dd86dd7bfcc6", + "id": "60f1ee26-7fa5-4cae-aec7-58dc346c854e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138443,12 +143388,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7ae94f46-5b57-4b3f-8d1e-54ccd5c40dd3", + "id": "7028797d-eac3-4034-b68c-17687205e5e8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -138487,12 +143432,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f2191642-185d-417a-93b9-a7e97806862b", + "id": "f8004690-ee12-4567-b6e0-4f51fe9958cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138531,12 +143476,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15db7aa2-afaa-496b-ad95-c3afd21f7e45", + "id": "84cd6683-7369-4f9c-9b83-b8b6cb514b6a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138575,7 +143520,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -138586,7 +143531,7 @@ } }, { - "id": "3cb8fbec-992c-4743-90bf-76c0f21938db", + "id": "6bf0dcef-8676-4265-b12d-f5f23bfb9d3a", "name": "Update Segment", "request": { "name": "Update Segment", @@ -138606,7 +143551,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -138629,7 +143574,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/visibilityCriteria\",\n \"value\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"children\": [\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Philadelphia\"\n }\n },\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"department\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"HR\"\n }\n }\n ]\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -138640,7 +143585,7 @@ }, "response": [ { - "id": "cf3d035c-09c3-4399-8973-7fd98eee1884", + "id": "b5c93c80-086e-4192-85f7-8ca54797b59e", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -138675,7 +143620,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/visibilityCriteria\",\n \"value\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"children\": [\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Philadelphia\"\n }\n },\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"department\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"HR\"\n }\n }\n ]\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -138692,12 +143637,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": false\n}", + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"segment-xyz\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This segment represents xyz\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Austin\"\n }\n }\n },\n \"active\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "92cf03f7-62b3-4c8c-85ae-da0ac102b315", + "id": "b10ba005-b51d-4f7f-bfbb-857b731779ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138732,7 +143677,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/visibilityCriteria\",\n \"value\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"children\": [\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Philadelphia\"\n }\n },\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"department\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"HR\"\n }\n }\n ]\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -138749,12 +143694,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c911e51f-1b81-4d1b-aacf-6077d7385b5b", + "id": "bedf1443-7cac-4461-af07-61733317078f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138789,7 +143734,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/visibilityCriteria\",\n \"value\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"children\": [\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Philadelphia\"\n }\n },\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"department\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"HR\"\n }\n }\n ]\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -138806,12 +143751,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a8c4f41a-e615-412e-90a2-aac1701a6d00", + "id": "7ec225c0-7b0e-4c2f-b41c-df1e0ffbb882", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138846,7 +143791,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/visibilityCriteria\",\n \"value\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"children\": [\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Philadelphia\"\n }\n },\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"department\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"HR\"\n }\n }\n ]\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -138863,12 +143808,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b9a890e0-fcaa-4282-a893-e4a5f4f2f1de", + "id": "c838badf-272d-42dd-acfc-41c0cac3b53e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -138903,7 +143848,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/visibilityCriteria\",\n \"value\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"children\": [\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Philadelphia\"\n }\n },\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"department\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"HR\"\n }\n }\n ]\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -138920,12 +143865,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "073180a1-5589-4a7e-a0b8-226df59aa51c", + "id": "165fe227-db17-4faf-b953-e9d1a7316b0c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138960,7 +143905,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/visibilityCriteria\",\n \"value\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"children\": [\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Philadelphia\"\n }\n },\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"department\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"HR\"\n }\n }\n ]\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -138977,12 +143922,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "47f0d9e7-5341-4744-a08c-57beb34badb6", + "id": "c89c30dd-5566-4685-91ea-13999deffca0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139017,7 +143962,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/visibilityCriteria\",\n \"value\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"children\": [\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"location\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"Philadelphia\"\n }\n },\n {\n \"operator\": \"EQUALS\",\n \"attribute\": \"department\",\n \"value\": {\n \"type\": \"STRING\",\n \"value\": \"HR\"\n }\n }\n ]\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -139034,7 +143979,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -139051,7 +143996,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": "ad77c167-6223-4fc8-b163-8fb742e6aa5c", + "id": "75a898f5-1f0a-47a2-9a1e-bdd7b4753ff1", "name": "List existing Service Desk Integrations", "request": { "name": "List existing Service Desk Integrations", @@ -139092,7 +144037,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -139101,7 +144046,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 2c91808b6ef1d43e016efba0ce470904" }, { "disabled": true, @@ -139110,7 +144055,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -139126,7 +144071,7 @@ }, "response": [ { - "id": "be687e5d-02fd-494d-9e98-f307d0ab5904", + "id": "86363340-339b-42e4-afe2-177728e8e8e9", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -139162,7 +144107,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -139171,7 +144116,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 2c91808b6ef1d43e016efba0ce470904" }, { "disabled": true, @@ -139180,7 +144125,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -139210,12 +144155,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"et1\": 92962858.70565832,\n \"veniam6\": -23653638,\n \"cillum_bf\": false\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"enimeb\": 41232020.5962649,\n \"Duis_5db\": 60919935,\n \"ea_a1b\": \"pariatur velit\",\n \"exercitation__\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n]", + "body": "[\n {\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n },\n {\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "81b894cf-14c3-4235-b02c-7b9428ca1b29", + "id": "72c602a7-9b7a-4a40-a6ef-3c533313cc00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139251,7 +144196,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -139260,7 +144205,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 2c91808b6ef1d43e016efba0ce470904" }, { "disabled": true, @@ -139269,7 +144214,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -139299,12 +144244,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6b86b6dd-963a-41e6-9467-821c123fd4e6", + "id": "1e6d5b8b-951b-4fdb-9b0d-8a3c7129914a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139340,7 +144285,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -139349,7 +144294,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 2c91808b6ef1d43e016efba0ce470904" }, { "disabled": true, @@ -139358,7 +144303,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -139388,12 +144333,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2c6c6dd6-eb84-49d5-b593-15063c9e401f", + "id": "2f0fbc9e-6b52-405c-837b-f01dbd67b52d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139429,7 +144374,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -139438,7 +144383,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 2c91808b6ef1d43e016efba0ce470904" }, { "disabled": true, @@ -139447,7 +144392,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -139477,12 +144422,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "604f1c21-1928-4dbe-9743-9df888f39e6d", + "id": "e305b4fc-d29d-42fc-bf92-513cd5e7b622", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -139518,7 +144463,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -139527,7 +144472,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 2c91808b6ef1d43e016efba0ce470904" }, { "disabled": true, @@ -139536,7 +144481,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -139566,12 +144511,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "699cd363-5499-46fb-97a4-dec1f7454b0b", + "id": "6b498cc9-585d-474c-9036-5b3afbd91862", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139607,7 +144552,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -139616,7 +144561,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 2c91808b6ef1d43e016efba0ce470904" }, { "disabled": true, @@ -139625,7 +144570,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -139655,12 +144600,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dfbbdabf-2b81-4da5-96c6-4072f242dc8b", + "id": "1812ec18-d810-4352-b117-164334f57d05", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139696,7 +144641,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -139705,7 +144650,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq 2c91808b6ef1d43e016efba0ce470904" }, { "disabled": true, @@ -139714,7 +144659,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -139744,7 +144689,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -139755,7 +144700,7 @@ } }, { - "id": "c6078c7e-4194-4b63-b2ea-201fe698899b", + "id": "c0d884d4-165a-4071-8383-be6bfedf4628", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -139786,7 +144731,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -139797,7 +144742,7 @@ }, "response": [ { - "id": "823673c6-73c8-44b5-b739-f895fb7f6bbf", + "id": "63a5e301-8fd3-4404-8a3c-5eba1fd3e92a", "name": "details of the created integration", "originalRequest": { "url": { @@ -139831,7 +144776,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -139848,12 +144793,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "body": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aa5536e7-38d8-4660-950d-7dc978c97ffe", + "id": "7009136f-d1f4-485e-9df7-607c64f632a4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139887,7 +144832,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -139904,12 +144849,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "afe5e708-24ce-40db-9513-875ccd8e735a", + "id": "10de10e6-507e-4f22-a9c0-795cb4fd45f7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139943,7 +144888,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -139960,12 +144905,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c24c571d-df8e-4760-bd95-9fa95ad24799", + "id": "f5cbce59-0c82-471d-9fe7-439212aa9ed0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139999,7 +144944,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -140016,12 +144961,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "37d34d08-764b-4250-a01f-374a2c82a5b3", + "id": "b5647501-7ae2-466c-aff5-346f8db0eb9c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140055,7 +145000,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -140072,12 +145017,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e33ac6a7-d440-4355-b44c-2bf7b53d1eb3", + "id": "2722bc8f-1be6-49cb-8b30-c42e3cbb4805", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140111,7 +145056,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -140128,12 +145073,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6f83fc7-73cf-4dcd-8a06-5327c0b62c53", + "id": "e40a91c4-c53f-4cb7-a584-32fc975df8f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140167,7 +145112,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -140184,7 +145129,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -140195,7 +145140,7 @@ } }, { - "id": "b21c312a-dcd2-44d5-9d55-62726a0f7879", + "id": "aab8cb3a-c677-440d-9176-c1ea7d32b37b", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -140215,7 +145160,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "anId", "key": "id", "disabled": true, "description": { @@ -140236,7 +145181,7 @@ }, "response": [ { - "id": "0e9380dc-1acc-452a-85bb-f2611ef0826f", + "id": "69c74a72-649b-4e1c-8f1e-3b0896e7df5b", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -140275,12 +145220,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "body": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4299aa69-8b84-43d5-aeef-f895c860463b", + "id": "8c7ac92c-8d22-44c1-a93f-64ce665faff8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140319,12 +145264,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "cdeae9ec-8795-44eb-9cc6-8ee28397f5d3", + "id": "40828181-d6d9-4d6c-8cf4-719262be2fc6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140363,12 +145308,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7c79d172-9e82-4892-aae4-bf6f2641d694", + "id": "da107f52-f347-4360-a1ad-1ad35d572e52", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140407,12 +145352,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "23507a7d-2f06-4808-b09c-658e7b8305a2", + "id": "510fd6e7-dbb8-4a0d-84c3-b271c4465f75", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140451,12 +145396,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3b490cb7-43b1-4b54-b3dd-46c6737a560c", + "id": "7b6f9a6d-e8cb-4f43-86db-843ac2fbd3ab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140495,12 +145440,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5746cc6f-bd82-43e2-8cea-e7d7e03176fb", + "id": "a8f75c54-7dbc-44b0-a053-da0250c96cda", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140539,7 +145484,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -140550,7 +145495,7 @@ } }, { - "id": "4708dcd9-4c6f-46b1-95d7-01ef1d60c6fa", + "id": "de5a6cd8-eefa-4d39-8424-1b8f1e253aa6", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -140570,7 +145515,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "anId", "key": "id", "disabled": true, "description": { @@ -140593,7 +145538,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -140604,7 +145549,7 @@ }, "response": [ { - "id": "698754ea-18aa-4082-afce-3b0a6a48d9f4", + "id": "8d37f3e7-a505-43a7-ba67-4f9c61854967", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -140639,7 +145584,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -140656,12 +145601,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "body": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6bb402a6-5c2d-4ef5-a43f-c858d38c66f7", + "id": "cb7d2196-a531-45c4-a2ab-899a777eb331", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140696,7 +145641,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -140713,12 +145658,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9766bbd2-9e69-4b33-85d8-6a747f323b1b", + "id": "d065eb57-445c-464c-8267-f1c82fb55991", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140753,7 +145698,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -140770,12 +145715,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "38be6aa5-525e-4226-b468-ac1db0606943", + "id": "9686654d-fd18-470e-959f-778d48f0c89e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140810,7 +145755,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -140827,12 +145772,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "00ec64dd-7e72-4ac9-a3de-c3aea2b65a69", + "id": "c96d12a3-c80f-4a61-ba29-62b47e170dea", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140867,7 +145812,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -140884,12 +145829,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "aafa0962-b6c4-4d40-ab5e-04f5fee3ca2a", + "id": "178f306b-2912-4ecb-8654-565e2a2be14b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140924,7 +145869,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -140941,12 +145886,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "46516eec-5170-4fb8-81c6-0913c35e1e93", + "id": "8545d85a-6ca2-4c89-9634-79b475ec6b31", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140981,7 +145926,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -140998,7 +145943,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -141009,7 +145954,7 @@ } }, { - "id": "bc156fe4-b02b-4700-a853-d23ebf500bff", + "id": "ba2b280b-77df-4201-ae8a-10530f800443", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -141029,7 +145974,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "anId", "key": "id", "disabled": true, "description": { @@ -141050,7 +145995,7 @@ }, "response": [ { - "id": "cc111f82-8eb5-4836-9a86-9cefbb9f4cf2", + "id": "0ce93bd4-a372-4ef4-b6fc-3e70f70e4160", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -141084,7 +146029,7 @@ "_postman_previewlanguage": "text" }, { - "id": "fde665bd-0339-4b51-85ff-3bf446b32469", + "id": "67f607b4-ae39-4181-8e11-822cc0c0494c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141123,12 +146068,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f402216c-8c35-478c-952f-7921dbf2eea2", + "id": "344312c5-556b-4836-b873-6fb17a9e67f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141167,12 +146112,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "94d6b34a-4f22-4fbc-a2df-05b8b60e67b4", + "id": "6e266b95-89b1-4e84-9330-d62d5621af33", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141211,12 +146156,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "26d09414-20f7-4702-bc22-6a621e521b94", + "id": "b17e5977-0f93-423f-b556-e568bdef1494", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141255,12 +146200,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0f6cace1-74e0-49af-895d-e601aa8d46c5", + "id": "c08232d1-7f66-4bf4-9e1a-d8f34e9ecd3c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141299,12 +146244,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "056728ca-e528-4ea3-9bbc-6c3d9e2b82ac", + "id": "b0b6e062-5759-4a66-a800-de6f4f3ff663", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141343,7 +146288,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -141354,7 +146299,7 @@ } }, { - "id": "c31d2d1f-0445-4390-8d23-d706ef1aa2a7", + "id": "ee05b735-73a3-4106-8a42-326b0dec7033", "name": "Service Desk Integration Update PATCH", "request": { "name": "Service Desk Integration Update PATCH", @@ -141374,7 +146319,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "anId", "key": "id", "disabled": true, "description": { @@ -141397,7 +146342,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/ownerRef\",\n \"value\": {\n \"id\": \"2c9180867d05b227017d09921a205b4d\",\n \"type\": \"IDENTITY\",\n \"name\": \"Angelo2 tester\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -141408,7 +146353,7 @@ }, "response": [ { - "id": "5ba7d9c1-b466-4cbc-a464-c230b2a7ed6b", + "id": "97260a69-0f23-4dee-834a-4c695f9a89cb", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -141443,7 +146388,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/ownerRef\",\n \"value\": {\n \"id\": \"2c9180867d05b227017d09921a205b4d\",\n \"type\": \"IDENTITY\",\n \"name\": \"Angelo2 tester\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -141460,12 +146405,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"culpa_9\": \"in \",\n \"ex_69f\": true\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "body": "{\n \"name\": \"Service Desk Integration Name\",\n \"description\": \"A very nice Service Desk integration\",\n \"type\": \"ServiceNowSDIM\",\n \"attributes\": {\n \"property\": \"value\",\n \"key\": \"value\"\n },\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"2c9180847a7fccdd017aa5896f9f4f6f\",\n \"name\": \"Training VA\"\n },\n \"cluster\": \"xyzzy999\",\n \"managedSources\": [\n \"2c9180835d191a86015d28455b4a2329\",\n \"2c5680835d191a85765d28455b4a9823\"\n ],\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 \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"048eb3d55c5a4758bd07dccb87741c78\",\n \"name\": \"Before Provisioning Airtable Rule\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ccc17e9-17d2-42af-84b0-077f49c47cc4", + "id": "987dd76f-ca1b-45c6-a704-daee2b6ab5b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141500,7 +146445,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/ownerRef\",\n \"value\": {\n \"id\": \"2c9180867d05b227017d09921a205b4d\",\n \"type\": \"IDENTITY\",\n \"name\": \"Angelo2 tester\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -141517,12 +146462,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "260406f7-238f-4b8c-a4a6-2eb94e3eeeab", + "id": "235e5279-6b62-4719-bee6-219cbcf72065", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141557,7 +146502,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/ownerRef\",\n \"value\": {\n \"id\": \"2c9180867d05b227017d09921a205b4d\",\n \"type\": \"IDENTITY\",\n \"name\": \"Angelo2 tester\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -141574,12 +146519,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fe9cde12-2e5b-4242-8b68-56680f4ef5a5", + "id": "18c2bd36-8339-4a9e-ac05-5ab1ff36a0fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141614,7 +146559,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/ownerRef\",\n \"value\": {\n \"id\": \"2c9180867d05b227017d09921a205b4d\",\n \"type\": \"IDENTITY\",\n \"name\": \"Angelo2 tester\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -141631,12 +146576,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6a78fe2a-b2a3-4c4a-ba5b-6393b5f6513a", + "id": "c2bfa671-369f-4efb-be3c-28a00799fdc3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141671,7 +146616,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/ownerRef\",\n \"value\": {\n \"id\": \"2c9180867d05b227017d09921a205b4d\",\n \"type\": \"IDENTITY\",\n \"name\": \"Angelo2 tester\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -141688,12 +146633,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "05f7bf3b-4e64-4c48-bb98-643635715d4d", + "id": "730d9668-297c-4f89-bbf3-abe6a4c76d4e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141728,7 +146673,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/ownerRef\",\n \"value\": {\n \"id\": \"2c9180867d05b227017d09921a205b4d\",\n \"type\": \"IDENTITY\",\n \"name\": \"Angelo2 tester\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -141745,12 +146690,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "64fca3eb-770e-464e-ba59-479597e24ee4", + "id": "022ee71d-ce3e-487d-8a63-352d690f739b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141785,7 +146730,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/ownerRef\",\n \"value\": {\n \"id\": \"2c9180867d05b227017d09921a205b4d\",\n \"type\": \"IDENTITY\",\n \"name\": \"Angelo2 tester\"\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -141802,7 +146747,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -141813,7 +146758,7 @@ } }, { - "id": "7383c8bb-0cc8-483b-be4d-2d0264049d55", + "id": "b4b59939-3684-47c0-894d-515bdd5efc7f", "name": "Service Desk Integration Types List.", "request": { "name": "Service Desk Integration Types List.", @@ -141843,7 +146788,7 @@ }, "response": [ { - "id": "96a02170-a8cc-4e68-ae5d-5cd3f64b2ff3", + "id": "de6acb49-ab31-430f-a1fe-55175fc237d7", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -141882,12 +146827,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"type\": \"\",\n \"scriptName\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"\",\n \"scriptName\": \"\",\n \"name\": \"\"\n }\n]", + "body": "[\n {\n \"type\": \"aType\",\n \"scriptName\": \"aScriptName\",\n \"name\": \"aName\"\n },\n {\n \"type\": \"aType\",\n \"scriptName\": \"aScriptName\",\n \"name\": \"aName\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36aa2190-83ac-4551-a98f-eba5681b96db", + "id": "fab88ba3-2430-4c07-99c4-eb4c87607e07", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141926,12 +146871,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5cc4c79b-d88f-4a74-9a28-ef2a8105dabb", + "id": "e37ce00c-79f2-4b1e-89d0-714d2c41d91e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141970,12 +146915,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "792b0dbc-3b35-4a7f-90dd-3fb287e582b2", + "id": "28d5bba5-5e31-46c3-b496-3630143819d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142014,12 +146959,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "04758ef4-cf29-4e19-a5ce-368eb152bf40", + "id": "c8d038a5-cabc-4bd6-a66a-b3bc405c76d9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142058,12 +147003,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "97389bec-ba08-4bc5-80c3-4770995b44dd", + "id": "9d6cb6b6-3b78-4f3f-9ace-a323283ca68d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142102,12 +147047,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6f76414-17f2-479f-87fe-07020dfc743f", + "id": "7179dced-7cff-4f8e-b82b-30676fd317b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142146,7 +147091,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -142157,7 +147102,7 @@ } }, { - "id": "773af021-f15a-4a30-a7fd-3fee9b0e6808", + "id": "086ce160-dc2e-436c-99c8-aa58d856f310", "name": "Service Desk integration template by scriptName.", "request": { "name": "Service Desk integration template by scriptName.", @@ -142178,7 +147123,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "aScriptName", "key": "scriptName", "disabled": true, "description": { @@ -142199,7 +147144,7 @@ }, "response": [ { - "id": "ff54f39a-0c0b-4798-9568-522364937fa7", + "id": "9fcec766-c2d7-44fd-9b04-104f6ba330e2", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -142239,12 +147184,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"non_2b4\": -49023069\n },\n \"name\": \"\",\n \"provisioningConfig\": {\n \"universalManager\": false,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": false,\n \"provisioningRequestExpiration\": \"\"\n },\n \"type\": \"Web Service SDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"attributes\": {\n \"consectetur_e\": 90720382.55378082\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": "fd36e706-d637-4169-8c14-5013f2f2b344", + "id": "92eafcd6-bc76-4d54-8f97-f7f310c0e456", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142284,12 +147229,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "70d2e679-f854-45b5-a9ef-5bcd79acbc82", + "id": "733b19ea-bfb8-4d52-b323-40c10441e1ff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142329,12 +147274,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9c2826ee-90d7-406f-ac93-4a8531db142d", + "id": "4f0cd638-52cc-4234-9352-26166a93267a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142374,12 +147319,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "758c360b-5098-4b63-ad22-b1a690952cda", + "id": "74b4ea69-193e-4ea5-9c17-e4032b56dc0c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142419,12 +147364,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2e78e4cc-75ee-4778-9575-4b6f105754a7", + "id": "ae93724f-2791-4f5c-b065-7c19e1c30d08", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142464,12 +147409,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "243ea24e-e262-452e-9360-30f6e30421c8", + "id": "3c892955-5586-4bf7-9c70-f2784b115e21", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142509,7 +147454,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -142520,7 +147465,7 @@ } }, { - "id": "75225e01-5c91-4a0e-89e9-9f880cf5d3c0", + "id": "678d169c-886a-4f3e-ad49-b58c6cdfa5ad", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -142550,7 +147495,7 @@ }, "response": [ { - "id": "e3b88140-875e-41db-a1bd-b991eebad64a", + "id": "8fd328e7-365a-4c03-9b22-687a9f07084c", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -142589,12 +147534,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"veniam elit sed\",\n \"provisioningMaxStatusCheckDays\": \"sint in Duis\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "96159317-9b35-4154-81b5-eb86747a8e16", + "id": "bd07ebff-2545-4d3b-80c2-904556b958c8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142633,12 +147578,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c75bb757-1eed-40a8-b19a-dbf59e20a8bc", + "id": "bc593197-f980-4cf0-bc56-17a3324c8100", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142677,12 +147622,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bcb42964-e622-4473-9e4d-075c81fc20f3", + "id": "c0e04629-a8d6-4ff6-9445-a426721c1453", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142721,12 +147666,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "dce6aa43-364f-4fd6-ae32-c7feadca3980", + "id": "aaeebba1-005f-4560-a3af-70fae2a482d3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142765,12 +147710,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "47ac1267-8e0f-454b-8b52-65fea825731d", + "id": "1cd40535-68f9-4f67-9669-1b6ea3a2b815", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142809,12 +147754,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e12fecf2-3db3-415e-aa16-ad3f1a0c2a8b", + "id": "38c57d06-d686-458e-9b81-6f2b0aee5a5f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142853,7 +147798,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -142864,7 +147809,7 @@ } }, { - "id": "05ce279f-ab6f-411d-8bf7-b53358211448", + "id": "8ad37149-9111-4191-b1a5-be3941eb93dd", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -142896,7 +147841,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"veniam elit sed\",\n \"provisioningMaxStatusCheckDays\": \"sint in Duis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -142907,7 +147852,7 @@ }, "response": [ { - "id": "7d989eaa-0ada-4139-811b-eadb6757ca4d", + "id": "3ba40704-3407-49d1-a8e4-9391996bba61", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -142942,7 +147887,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"veniam elit sed\",\n \"provisioningMaxStatusCheckDays\": \"sint in Duis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -142959,12 +147904,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"veniam elit sed\",\n \"provisioningMaxStatusCheckDays\": \"sint in Duis\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f5dac84-29a3-4bc4-875e-76fe9749fd4b", + "id": "743ce5e3-2ac0-4ebb-afd5-aef43e9627a8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142999,7 +147944,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"veniam elit sed\",\n \"provisioningMaxStatusCheckDays\": \"sint in Duis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -143016,12 +147961,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "04ca3810-3f47-4863-a77e-a772d800cee5", + "id": "5bae02a9-82c2-4c46-bb44-16c7dd51745d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143056,7 +148001,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"veniam elit sed\",\n \"provisioningMaxStatusCheckDays\": \"sint in Duis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -143073,12 +148018,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4dd26fea-3c4e-491d-ac16-dbce28923235", + "id": "c52663b4-c49e-4117-afdf-49c4739cfdbd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143113,7 +148058,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"veniam elit sed\",\n \"provisioningMaxStatusCheckDays\": \"sint in Duis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -143130,12 +148075,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "eab4ff10-3331-402d-ad5a-12a6715f0865", + "id": "b263887a-2f39-4cc9-8602-e61588ec0ef8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -143170,7 +148115,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"veniam elit sed\",\n \"provisioningMaxStatusCheckDays\": \"sint in Duis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -143187,12 +148132,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "311a0c82-2403-46d9-bd2a-00440f121594", + "id": "ea67ae2d-a08a-4556-ba50-94fe2f6938cf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143227,7 +148172,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"veniam elit sed\",\n \"provisioningMaxStatusCheckDays\": \"sint in Duis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -143244,12 +148189,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d3a69fb-3e9e-49be-91c7-0faae06ef6da", + "id": "4996a8d7-df56-4144-8531-35a71f9e0fc6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143284,7 +148229,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"veniam elit sed\",\n \"provisioningMaxStatusCheckDays\": \"sint in Duis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -143301,7 +148246,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -143318,7 +148263,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": "d2338f0d-58ca-4304-87c7-afd45f5603a3", + "id": "c5aacdfc-3969-4fb7-b0a5-8e3a32806118", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -143349,7 +148294,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"name\": \"Conflicting-Policy-Name\",\n \"description\": \"This policy ensures compliance of xyz\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -143360,8 +148305,8 @@ }, "response": [ { - "id": "2870321c-786f-4f0b-bce1-b020e817733f", - "name": "SOD policy created", + "id": "6f621019-98fc-4639-a56a-be9a868831be", + "name": "Conflicting Access Based Policy", "originalRequest": { "url": { "path": [ @@ -143394,7 +148339,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"name\": \"Conflicting-Policy-Name\",\n \"description\": \"This policy ensures compliance of xyz\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -143411,13 +148356,13 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Conflicting-Policy-Name\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This policy ensures compliance of xyz\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"policyQuery\": \"@access(id:2c9180866166b5b0016167c32ef31a66 OR id:2c9180866166b5b0016167c32ef31a67) AND @access(id:2c9180866166b5b0016167c32ef31a68 OR id:2c9180866166b5b0016167c32ef31a69)\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0af80c44-5d97-4083-931d-702cb4c10f77", - "name": "Client Error - Returned if the request body is invalid.", + "id": "d154d697-3e73-4d4b-9058-fb90a1b6b11b", + "name": "General Policy", "originalRequest": { "url": { "path": [ @@ -143450,7 +148395,63 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c918087682f9a86016839c05e8f1aff\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"New policy\",\n \"policyQuery\": \"policy query implementation\",\n \"compensatingControls\": \"Compensating controls\",\n \"correctionAdvice\": \"Correction advice\",\n \"tags\": [],\n \"state\": \"ENFORCED\",\n \"scheduled\": false,\n \"creatorId\": \"2c918087682f9a86016839c05e8f1aff\",\n \"modifierId\": null,\n \"violationOwnerAssignmentConfig\": null,\n \"name\": \"General-Policy-Name\"\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Created", + "code": 201, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"description\": \"Description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c918087682f9a86016839c05e8f1aff\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"New policy\",\n \"policyQuery\": \"policy query implementation\",\n \"compensatingControls\": \"Compensating controls\",\n \"correctionAdvice\": \"Correction advice\",\n \"tags\": [],\n \"state\": \"ENFORCED\",\n \"scheduled\": false,\n \"creatorId\": \"2c918087682f9a86016839c05e8f1aff\",\n \"modifierId\": null,\n \"violationOwnerAssignmentConfig\": null,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": null,\n \"id\": \"52c11db4-733e-4c31-949a-766c95ec95f1\",\n \"name\": \"General-Policy-Name\",\n \"created\": \"2020-05-12T19:47:38Z\",\n \"modified\": \"2020-05-12T19:47:38Z\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "bd5365b0-afa3-47c2-8c7c-f1cfa61d5697", + "name": "Conflicting Access Based Policy", + "originalRequest": { + "url": { + "path": [ + "sod-policies" + ], + "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\": \"Conflicting-Policy-Name\",\n \"description\": \"This policy ensures compliance of xyz\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -143467,13 +148468,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "92979210-99e1-4be8-9e6f-92c2439a6952", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "42ad0d6d-0e10-4e0d-b985-f817edef22dd", + "name": "Conflicting Access Based Policy", "originalRequest": { "url": { "path": [ @@ -143506,7 +148507,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"name\": \"Conflicting-Policy-Name\",\n \"description\": \"This policy ensures compliance of xyz\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -143523,13 +148524,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "faa719fb-d29d-4109-9962-49233dc79a7a", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "b097c371-5317-4c35-9a48-16d2446896ad", + "name": "An example of a 403 response object", "originalRequest": { "url": { "path": [ @@ -143562,7 +148563,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"name\": \"Conflicting-Policy-Name\",\n \"description\": \"This policy ensures compliance of xyz\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -143579,13 +148580,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1b42205f-054e-452a-9eb7-fec6bec8abf9", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "367f2c6c-42ce-48f9-a2a3-fcc7348b08c3", + "name": "Conflicting Access Based Policy", "originalRequest": { "url": { "path": [ @@ -143618,7 +148619,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"name\": \"Conflicting-Policy-Name\",\n \"description\": \"This policy ensures compliance of xyz\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -143635,13 +148636,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "67e02f25-7459-4011-88d2-c9ce6430a775", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "bc7f561c-c350-4d0e-b5b3-8cbb4dd2f61a", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -143674,7 +148675,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"name\": \"Conflicting-Policy-Name\",\n \"description\": \"This policy ensures compliance of xyz\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -143691,7 +148692,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -143702,7 +148703,7 @@ } }, { - "id": "c6e07ed2-f0c7-4bd2-8986-5b5874c08ea3", + "id": "015aeb0a-355d-4680-9e14-6df83d1c0cb5", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -143743,7 +148744,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -143752,7 +148753,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"bc693f07e7b645539626c25954c58554\"" } ], "variable": [] @@ -143768,7 +148769,7 @@ }, "response": [ { - "id": "9284ccec-386f-4ede-afc7-962e3c349964", + "id": "3e2cafc6-be7e-411b-827b-4aebbde62b49", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -143804,7 +148805,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -143813,7 +148814,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"bc693f07e7b645539626c25954c58554\"" } ], "variable": [] @@ -143843,12 +148844,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Conflicting-Policy-Name\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This policy ensures compliance of xyz\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"policyQuery\": \"@access(id:2c9180866166b5b0016167c32ef31a66 OR id:2c9180866166b5b0016167c32ef31a67) AND @access(id:2c9180866166b5b0016167c32ef31a68 OR id:2c9180866166b5b0016167c32ef31a69)\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n },\n {\n \"description\": \"Description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c918087682f9a86016839c05e8f1aff\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"New policy\",\n \"policyQuery\": \"policy query implementation\",\n \"compensatingControls\": \"Compensating controls\",\n \"correctionAdvice\": \"Correction advice\",\n \"tags\": [],\n \"state\": \"ENFORCED\",\n \"scheduled\": false,\n \"creatorId\": \"2c918087682f9a86016839c05e8f1aff\",\n \"modifierId\": null,\n \"violationOwnerAssignmentConfig\": null,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": null,\n \"id\": \"52c11db4-733e-4c31-949a-766c95ec95f1\",\n \"name\": \"General-Policy-Name\",\n \"created\": \"2020-05-12T19:47:38Z\",\n \"modified\": \"2020-05-12T19:47:38Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d8b4b024-b2f8-4178-a32a-2c24dd731a2e", + "id": "e047ec7c-3887-42da-9f24-7796cf61774a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143884,7 +148885,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -143893,7 +148894,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"bc693f07e7b645539626c25954c58554\"" } ], "variable": [] @@ -143923,12 +148924,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d8eb46a3-a101-48e9-a5d1-732d321f3d76", + "id": "00358a2a-89d4-4269-9b5b-8746b7da25ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143964,7 +148965,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -143973,7 +148974,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"bc693f07e7b645539626c25954c58554\"" } ], "variable": [] @@ -144003,12 +149004,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "66baa532-0871-44e9-8c96-cdb620673c8a", + "id": "79bf9871-8256-4048-8ed1-3c5b91919f77", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144044,7 +149045,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -144053,7 +149054,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"bc693f07e7b645539626c25954c58554\"" } ], "variable": [] @@ -144083,12 +149084,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6007d4b7-7699-4d25-9229-dc576068749d", + "id": "30f64ec4-c672-4a8e-9330-a07b4353aa0a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144124,7 +149125,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -144133,7 +149134,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"bc693f07e7b645539626c25954c58554\"" } ], "variable": [] @@ -144163,12 +149164,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a9b7d64-26f9-48e3-a748-661f7304bb78", + "id": "8c39d729-cf86-4105-89d7-f6e2e756f580", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144204,7 +149205,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -144213,7 +149214,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"bc693f07e7b645539626c25954c58554\"" } ], "variable": [] @@ -144243,7 +149244,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -144254,7 +149255,7 @@ } }, { - "id": "c5267aca-aa30-4de5-bc7c-ed2ab887f2ea", + "id": "d8ae5f3f-3366-4f9e-a53a-27ee4ad58f3f", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -144274,7 +149275,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -144295,8 +149296,8 @@ }, "response": [ { - "id": "953da776-8e3c-4787-97a9-6eda2933749f", - "name": "SOD policy ID.", + "id": "1ca544e5-3482-4439-9cd0-fcfb7be7e104", + "name": "Conflicting Access Based Policy", "originalRequest": { "url": { "path": [ @@ -144334,12 +149335,56 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Conflicting-Policy-Name\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"This policy ensures compliance of xyz\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"policyQuery\": \"@access(id:2c9180866166b5b0016167c32ef31a66 OR id:2c9180866166b5b0016167c32ef31a67) AND @access(id:2c9180866166b5b0016167c32ef31a68 OR id:2c9180866166b5b0016167c32ef31a69)\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "339bd375-d6fe-4a68-add2-a1d05cf254bc", + "id": "8660e1ac-0d7a-478f-a0c4-1f6eb587fb9d", + "name": "General Policy", + "originalRequest": { + "url": { + "path": [ + "sod-policies", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"description\": \"Description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c918087682f9a86016839c05e8f1aff\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"New policy\",\n \"policyQuery\": \"policy query implementation\",\n \"compensatingControls\": \"Compensating controls\",\n \"correctionAdvice\": \"Correction advice\",\n \"tags\": [],\n \"state\": \"ENFORCED\",\n \"scheduled\": false,\n \"creatorId\": \"2c918087682f9a86016839c05e8f1aff\",\n \"modifierId\": null,\n \"violationOwnerAssignmentConfig\": null,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": null,\n \"id\": \"52c11db4-733e-4c31-949a-766c95ec95f1\",\n \"name\": \"General-Policy-Name\",\n \"created\": \"2020-05-12T19:47:38Z\",\n \"modified\": \"2020-05-12T19:47:38Z\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "3d3c43d0-7a28-4793-8578-63699e1cdbc0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144378,12 +149423,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7172a55b-2b89-4be9-8472-ac1c56c9e805", + "id": "5e4a658b-3f84-4667-838a-adb28b316c4e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144422,12 +149467,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b180d69e-e287-40f2-877e-22ec9ae3c0bf", + "id": "eeb8289a-0973-4101-a39e-6971b67bdc96", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144466,12 +149511,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ce162c56-969a-47ff-9252-5cd5eea33cb7", + "id": "331d700e-cde4-4e4a-8e05-875a0c1029bb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144510,12 +149555,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e7fa99c8-aa2a-40f4-8995-0090e87d5f96", + "id": "9a346573-f0fe-4e9a-b2b1-ac64ff478409", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144554,12 +149599,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "94d14700-a638-45c5-b6ac-377075f6e77e", + "id": "7bb18243-816a-47e2-977f-2e7c77ac457e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144598,7 +149643,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -144609,7 +149654,7 @@ } }, { - "id": "dd96fb4c-be0a-4e94-a7dd-ec072324f75a", + "id": "bb5acc46-a3ad-4a48-a84d-fc9c5ee7a8ae", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -144629,7 +149674,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -144652,7 +149697,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Conflicting-Policy-Name\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Modified Description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -144663,8 +149708,8 @@ }, "response": [ { - "id": "4411524b-72aa-4d6b-be43-a98848154cf0", - "name": "SOD Policy by ID", + "id": "dd743c27-2fbd-4095-99c2-25f1f0a6d6a6", + "name": "Conflicting Access Based Policy", "originalRequest": { "url": { "path": [ @@ -144698,7 +149743,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Conflicting-Policy-Name\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Modified Description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -144715,13 +149760,13 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Conflicting-Policy-Name\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Modified description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"policyQuery\": \"@access(id:2c9180866166b5b0016167c32ef31a66 OR id:2c9180866166b5b0016167c32ef31a67) AND @access(id:2c9180866166b5b0016167c32ef31a68 OR id:2c9180866166b5b0016167c32ef31a69)\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7315437c-5782-4566-82b7-8cd07666c77d", - "name": "Client Error - Returned if the request body is invalid.", + "id": "8552b5d2-c1a1-464a-a107-0810cc1361b2", + "name": "General Policy", "originalRequest": { "url": { "path": [ @@ -144755,7 +149800,64 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Modified Description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c918087682f9a86016839c05e8f1aff\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"New policy\",\n \"policyQuery\": \"policy query implementation\",\n \"compensatingControls\": \"Compensating controls\",\n \"correctionAdvice\": \"Correction advice\",\n \"tags\": [],\n \"state\": \"ENFORCED\",\n \"scheduled\": false,\n \"creatorId\": \"2c918087682f9a86016839c05e8f1aff\",\n \"modifierId\": null,\n \"violationOwnerAssignmentConfig\": null,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": null,\n \"id\": \"52c11db4-733e-4c31-949a-766c95ec95f1\",\n \"name\": \"General-Policy-Name\",\n \"created\": \"2020-05-12T19:47:38Z\",\n \"modified\": \"2020-05-12T19:47:38Z\"\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"description\": \"Modified Description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c918087682f9a86016839c05e8f1aff\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"New policy\",\n \"policyQuery\": \"policy query implementation\",\n \"compensatingControls\": \"Compensating controls\",\n \"correctionAdvice\": \"Correction advice\",\n \"tags\": [],\n \"state\": \"ENFORCED\",\n \"scheduled\": false,\n \"creatorId\": \"2c918087682f9a86016839c05e8f1aff\",\n \"modifierId\": null,\n \"violationOwnerAssignmentConfig\": null,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": null,\n \"id\": \"52c11db4-733e-4c31-949a-766c95ec95f1\",\n \"name\": \"General-Policy-Name\",\n \"created\": \"2020-05-12T19:47:38Z\",\n \"modified\": \"2020-05-12T19:47:38Z\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "022ba3d7-6996-4bda-9047-9a9e910405f9", + "name": "Conflicting Access Based Policy", + "originalRequest": { + "url": { + "path": [ + "sod-policies", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Conflicting-Policy-Name\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Modified Description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -144772,13 +149874,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "913039d7-6291-4565-a4ee-9bad13ff2680", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "756504b5-4d02-46e2-8c79-0668e7c681bc", + "name": "Conflicting Access Based Policy", "originalRequest": { "url": { "path": [ @@ -144812,7 +149914,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Conflicting-Policy-Name\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Modified Description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -144829,13 +149931,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f573d2b4-7712-44d1-8ab2-00ef8e88ba49", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "bfdbed6e-78aa-4f5a-913f-439adabfb651", + "name": "An example of a 403 response object", "originalRequest": { "url": { "path": [ @@ -144869,7 +149971,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Conflicting-Policy-Name\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Modified Description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -144886,13 +149988,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ef035660-9027-40d8-ae64-452575fbc019", - "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "id": "44190c53-d52c-4533-9f4f-aff9299df61c", + "name": "An example of a 404 response object", "originalRequest": { "url": { "path": [ @@ -144926,7 +150028,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Conflicting-Policy-Name\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Modified Description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -144943,13 +150045,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "96d900fc-97fc-4b99-9b78-8a4171fe0f8f", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "03c463d2-77d2-4bcb-809d-4cca8bef8c46", + "name": "Conflicting Access Based Policy", "originalRequest": { "url": { "path": [ @@ -144983,7 +150085,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Conflicting-Policy-Name\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Modified Description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -145000,13 +150102,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "47be3c14-b58b-4c99-854e-e50dade5281f", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "912944fb-64c7-4648-95f9-bc578d1a92e7", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -145040,7 +150142,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Conflicting-Policy-Name\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Modified Description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a68\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a69\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -145057,7 +150159,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -145068,7 +150170,7 @@ } }, { - "id": "29033782-b8ae-43f9-8fdc-c7968f11c462", + "id": "d88dc56f-fa74-4caf-a186-040a3b7166c9", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -145098,7 +150200,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -145119,7 +150221,7 @@ }, "response": [ { - "id": "6d4c8fd2-486f-434b-ab18-ceb844271f6c", + "id": "47fd6f2f-59d1-4c7e-8e1a-38998a8ec597", "name": "No content.", "originalRequest": { "url": { @@ -145163,7 +150265,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a2fc6503-feeb-489d-937f-e49bfeb701ec", + "id": "a608a895-a40c-407f-bb39-3a8e3c885bf8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145212,12 +150314,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f4de3108-228b-479c-b2cc-23947ff41f17", + "id": "9d816f1f-9df0-43d2-aa3f-84536d6bbbaf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145266,12 +150368,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c9f7aba1-086f-4da6-8f80-2b97ab896d37", + "id": "b6fa395c-57d1-4551-8b67-c0e11b44c552", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145320,12 +150422,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7a1f9263-515c-4b43-8400-f3aab7f943ba", + "id": "78fe876a-2ab0-4ba8-afa8-f66c1658c47b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145374,12 +150476,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "61489761-46c7-423f-908c-2bef42e9c890", + "id": "4475327b-98da-4cbd-a745-9fcd98cb4254", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145428,12 +150530,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f3394f9b-3a49-4bcd-9367-ab2cee1d910f", + "id": "ca4583a9-b589-42d9-85d4-526c61a3d6ca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145482,7 +150584,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -145493,7 +150595,7 @@ } }, { - "id": "bbce1f33-766a-4fc4-baec-88d0645162fa", + "id": "d156909e-7f05-4c0b-a0e9-645a818cf343", "name": "Patch a SOD policy", "request": { "name": "Patch a SOD policy", @@ -145513,7 +150615,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "id", "disabled": true, "description": { @@ -145536,7 +150638,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Modified description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/leftCriteria/name\",\n \"value\": \"money-in-modified\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/rightCriteria\",\n \"value\": {\n \"name\": \"money-out-modified\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\"\n }\n ]\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145547,8 +150649,8 @@ }, "response": [ { - "id": "784100e6-5f43-4120-b337-b3bdbb834bbe", - "name": "Indicates the PATCH operation succeeded, and returns the SOD policy's new representation.", + "id": "62477460-cc53-4977-a474-77bfea56aa76", + "name": "Conflicting Access Based Policy", "originalRequest": { "url": { "path": [ @@ -145582,7 +150684,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Modified description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/leftCriteria/name\",\n \"value\": \"money-in-modified\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/rightCriteria\",\n \"value\": {\n \"name\": \"money-out-modified\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\"\n }\n ]\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145599,13 +150701,13 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Conflicting-Policy-Name\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Modified description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"XYZ policy\",\n \"policyQuery\": \"@access(id:2c9180866166b5b0016167c32ef31a66 OR id:2c9180866166b5b0016167c32ef31a67) AND @access(id:2c918087682f9a86016839c0509c1ab2)\",\n \"compensatingControls\": \"Have a manager review the transaction decisions for their \\\"out of compliance\\\" employee\",\n \"correctionAdvice\": \"Based on the role of the employee, managers should remove access that is not required for their job function.\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"string\"\n ],\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Violation Owner Name\"\n }\n },\n \"scheduled\": true,\n \"type\": \"CONFLICTING_ACCESS_BASED\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"money-in-modified\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c9180866166b5b0016167c32ef31a67\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"money-out-modified\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\"\n }\n ]\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36b8e89e-7c86-4695-8a63-5e92d0f9a8f4", - "name": "Client Error - Returned if the request body is invalid.", + "id": "9ba6b5be-ee5e-493f-a9e0-b3d1b558647c", + "name": "General Policy", "originalRequest": { "url": { "path": [ @@ -145639,7 +150741,64 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Modified description\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"description\": \"Modified description\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c918087682f9a86016839c05e8f1aff\",\n \"name\": \"Owner Name\"\n },\n \"externalPolicyReference\": \"New policy\",\n \"policyQuery\": \"policy query implementation\",\n \"compensatingControls\": \"Compensating controls\",\n \"correctionAdvice\": \"Correction advice\",\n \"tags\": [],\n \"state\": \"ENFORCED\",\n \"scheduled\": false,\n \"creatorId\": \"2c918087682f9a86016839c05e8f1aff\",\n \"modifierId\": null,\n \"violationOwnerAssignmentConfig\": null,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": null,\n \"id\": \"52c11db4-733e-4c31-949a-766c95ec95f1\",\n \"name\": \"General-Policy-Name\",\n \"created\": \"2020-05-12T19:47:38Z\",\n \"modified\": \"2020-05-12T19:47:38Z\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "cf626534-26a4-4194-8a6e-440f282d09d1", + "name": "Conflicting Access Based Policy", + "originalRequest": { + "url": { + "path": [ + "sod-policies", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Modified description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/leftCriteria/name\",\n \"value\": \"money-in-modified\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/rightCriteria\",\n \"value\": {\n \"name\": \"money-out-modified\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\"\n }\n ]\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145656,13 +150815,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "be104216-95be-44ce-bc08-da7c75481353", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "90b8a25d-1d1e-424f-a15d-b1d4c1aa5da3", + "name": "Conflicting Access Based Policy", "originalRequest": { "url": { "path": [ @@ -145696,7 +150855,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Modified description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/leftCriteria/name\",\n \"value\": \"money-in-modified\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/rightCriteria\",\n \"value\": {\n \"name\": \"money-out-modified\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\"\n }\n ]\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145713,13 +150872,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a7c86cd9-a775-49b4-8cd1-a17998245c8b", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "f45e7b69-4b9e-48b6-ab21-b2352ba3dc69", + "name": "An example of a 403 response object", "originalRequest": { "url": { "path": [ @@ -145753,7 +150912,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Modified description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/leftCriteria/name\",\n \"value\": \"money-in-modified\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/rightCriteria\",\n \"value\": {\n \"name\": \"money-out-modified\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\"\n }\n ]\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145770,13 +150929,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "788c9a98-53b9-4949-bbbf-4547fd01bba5", - "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "id": "531c7764-5d79-41c7-994f-00dda3cb1e1a", + "name": "An example of a 404 response object", "originalRequest": { "url": { "path": [ @@ -145810,7 +150969,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Modified description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/leftCriteria/name\",\n \"value\": \"money-in-modified\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/rightCriteria\",\n \"value\": {\n \"name\": \"money-out-modified\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\"\n }\n ]\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145827,13 +150986,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6a451430-52c3-4907-aa4f-e222a01c3124", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "9195a7ae-c2e3-44d6-965a-a55bec5c5eab", + "name": "Conflicting Access Based Policy", "originalRequest": { "url": { "path": [ @@ -145867,7 +151026,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Modified description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/leftCriteria/name\",\n \"value\": \"money-in-modified\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/rightCriteria\",\n \"value\": {\n \"name\": \"money-out-modified\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\"\n }\n ]\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145884,13 +151043,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26f6dfdf-91f9-4ef9-9eb3-2d101b02ac01", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "e9f76a46-2429-4013-8e7d-323b52fac0d2", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -145924,7 +151083,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Modified description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/leftCriteria/name\",\n \"value\": \"money-in-modified\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/conflictingAccessCriteria/rightCriteria\",\n \"value\": {\n \"name\": \"money-out-modified\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\"\n }\n ]\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145941,7 +151100,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -145952,7 +151111,7 @@ } }, { - "id": "bd4d4c3b-0293-429a-9c31-bdbfc170ba1d", + "id": "8dd5e043-1851-41a7-b2aa-05bc7a060a43", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -145973,7 +151132,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -145994,7 +151153,7 @@ }, "response": [ { - "id": "e27aa153-7227-4fff-9b85-44b94291baaa", + "id": "b0f6d7d5-8bf3-409f-9696-94b9f97a86d0", "name": "SOD policy ID.", "originalRequest": { "url": { @@ -146034,12 +151193,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "body": "{\n \"name\": \"SCH-1584312283015\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Schedule for policy xyz\",\n \"schedule\": {\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"9\",\n \"18\"\n ],\n \"interval\": 3\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"MON\",\n \"WED\",\n \"FRI\"\n ]\n },\n \"expiration\": \"2018-06-25T20:22:28.104Z\",\n \"timeZoneId\": \"America/Chicago\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n }\n ],\n \"emailEmptyResults\": false,\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8d67d23c-0699-4fdc-9566-c85d6613e8bb", + "id": "fe92db40-dcb9-45a3-b3ea-e6e16608665d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146079,12 +151238,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "99956188-632e-449b-bb3b-2f1b9bd3ece2", + "id": "29c3fd17-950a-41c5-ae7e-bd8f9a8b7b81", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146124,12 +151283,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "803915ef-78e7-41d0-a38e-9710f35bef2b", + "id": "48976d20-0c9e-40e0-86d7-ac4b740383db", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146169,12 +151328,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "aa291116-4f1b-46a4-bc13-7086d058fbd5", + "id": "913d7948-1411-43a9-b747-a9dc3325940e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146214,12 +151373,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "491345d4-3e47-4ae4-aa8c-e7a1d74308e4", + "id": "21c6e5b5-182f-4ebe-8953-69915b0f7e97", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146259,7 +151418,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -146270,7 +151429,7 @@ } }, { - "id": "85e34e4d-bba2-4266-bf9b-52e7680e6f0a", + "id": "c010bac6-abb3-4256-b2eb-9d8e1839c1a6", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -146291,7 +151450,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -146314,7 +151473,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "raw": "{\n \"name\": \"SCH-1584312283015\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Schedule for policy xyz\",\n \"schedule\": {\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"9\",\n \"18\"\n ],\n \"interval\": 3\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"MON\",\n \"WED\",\n \"FRI\"\n ]\n },\n \"expiration\": \"2018-06-25T20:22:28.104Z\",\n \"timeZoneId\": \"America/Chicago\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n }\n ],\n \"emailEmptyResults\": false,\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\"\n}", "options": { "raw": { "headerFamily": "json", @@ -146325,7 +151484,7 @@ }, "response": [ { - "id": "a697fb89-b331-4dc2-ba72-4cf7e03acf21", + "id": "3aa1ce18-e8ea-45e5-a2d4-18769f1e7682", "name": "SOD policy by ID.", "originalRequest": { "url": { @@ -146361,7 +151520,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "raw": "{\n \"name\": \"SCH-1584312283015\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Schedule for policy xyz\",\n \"schedule\": {\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"9\",\n \"18\"\n ],\n \"interval\": 3\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"MON\",\n \"WED\",\n \"FRI\"\n ]\n },\n \"expiration\": \"2018-06-25T20:22:28.104Z\",\n \"timeZoneId\": \"America/Chicago\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n }\n ],\n \"emailEmptyResults\": false,\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\"\n}", "options": { "raw": { "headerFamily": "json", @@ -146378,12 +151537,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "body": "{\n \"name\": \"SCH-1584312283015\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Schedule for policy xyz\",\n \"schedule\": {\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"9\",\n \"18\"\n ],\n \"interval\": 3\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"MON\",\n \"WED\",\n \"FRI\"\n ]\n },\n \"expiration\": \"2018-06-25T20:22:28.104Z\",\n \"timeZoneId\": \"America/Chicago\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n }\n ],\n \"emailEmptyResults\": false,\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "10eb5eb8-faf7-4b97-a0ce-0049688275b7", + "id": "91e0bf76-4ade-4498-8808-c6e662fcea49", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146419,7 +151578,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "raw": "{\n \"name\": \"SCH-1584312283015\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Schedule for policy xyz\",\n \"schedule\": {\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"9\",\n \"18\"\n ],\n \"interval\": 3\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"MON\",\n \"WED\",\n \"FRI\"\n ]\n },\n \"expiration\": \"2018-06-25T20:22:28.104Z\",\n \"timeZoneId\": \"America/Chicago\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n }\n ],\n \"emailEmptyResults\": false,\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\"\n}", "options": { "raw": { "headerFamily": "json", @@ -146436,12 +151595,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6c1ce4b7-b019-4b88-be16-dded346b58ad", + "id": "b549741b-aacc-47d8-a244-8a0fd3785c18", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146477,7 +151636,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "raw": "{\n \"name\": \"SCH-1584312283015\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Schedule for policy xyz\",\n \"schedule\": {\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"9\",\n \"18\"\n ],\n \"interval\": 3\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"MON\",\n \"WED\",\n \"FRI\"\n ]\n },\n \"expiration\": \"2018-06-25T20:22:28.104Z\",\n \"timeZoneId\": \"America/Chicago\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n }\n ],\n \"emailEmptyResults\": false,\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\"\n}", "options": { "raw": { "headerFamily": "json", @@ -146494,12 +151653,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f9ed43ae-0917-4106-92ec-fff42db15088", + "id": "b4a3c06c-4758-408d-aeab-3e5640d59d6b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146535,7 +151694,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "raw": "{\n \"name\": \"SCH-1584312283015\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Schedule for policy xyz\",\n \"schedule\": {\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"9\",\n \"18\"\n ],\n \"interval\": 3\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"MON\",\n \"WED\",\n \"FRI\"\n ]\n },\n \"expiration\": \"2018-06-25T20:22:28.104Z\",\n \"timeZoneId\": \"America/Chicago\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n }\n ],\n \"emailEmptyResults\": false,\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\"\n}", "options": { "raw": { "headerFamily": "json", @@ -146552,12 +151711,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "eeccdc7d-891f-44e0-a3ab-f6b72fb5659b", + "id": "59335522-5170-438a-86f8-b4f7a58d748c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146593,7 +151752,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "raw": "{\n \"name\": \"SCH-1584312283015\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Schedule for policy xyz\",\n \"schedule\": {\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"9\",\n \"18\"\n ],\n \"interval\": 3\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"MON\",\n \"WED\",\n \"FRI\"\n ]\n },\n \"expiration\": \"2018-06-25T20:22:28.104Z\",\n \"timeZoneId\": \"America/Chicago\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n }\n ],\n \"emailEmptyResults\": false,\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\"\n}", "options": { "raw": { "headerFamily": "json", @@ -146610,12 +151769,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4855eb3-a1ef-4a24-a752-499dfc38c145", + "id": "fb7956a4-58fa-4f39-8398-9a1cbb977e64", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146651,7 +151810,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "raw": "{\n \"name\": \"SCH-1584312283015\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"description\": \"Schedule for policy xyz\",\n \"schedule\": {\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"9\",\n \"18\"\n ],\n \"interval\": 3\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"MON\",\n \"WED\",\n \"FRI\"\n ]\n },\n \"expiration\": \"2018-06-25T20:22:28.104Z\",\n \"timeZoneId\": \"America/Chicago\"\n },\n \"recipients\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n }\n ],\n \"emailEmptyResults\": false,\n \"creatorId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"modifierId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\"\n}", "options": { "raw": { "headerFamily": "json", @@ -146668,7 +151827,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -146679,7 +151838,7 @@ } }, { - "id": "07cb054c-89eb-400b-9eba-2cf6b5f5eafa", + "id": "5ed42e45-a69b-4a11-80e2-d727807b827f", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -146700,7 +151859,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -146721,7 +151880,7 @@ }, "response": [ { - "id": "02c661e4-5ff7-4d4a-8a1a-52a7aef4b063", + "id": "935feabe-5e34-41a5-be14-dab574859784", "name": "No content.", "originalRequest": { "url": { @@ -146756,7 +151915,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f7e49225-bc90-47bf-87ae-fef5e13b1cee", + "id": "b2b397f2-2957-4cb5-93f9-6660246efb8b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146796,12 +151955,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9878e6b8-dce5-415e-9a76-126293bca0ae", + "id": "761df80e-09c6-4960-b5c1-a45d3c132f16", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146841,12 +152000,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3e795bbb-b184-4023-9b08-76db3bc2cb8c", + "id": "b7803578-f5a8-4f07-9f53-6a5e28c345ba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146886,12 +152045,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8af3a31c-aa45-43d0-8106-72981045cb9d", + "id": "d25d4310-33d8-4250-838f-b70c9f03813b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146931,12 +152090,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b1d23880-b9de-47ae-a421-dff578832b5c", + "id": "94971f42-b31c-41c6-9880-b049561bd0f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146976,12 +152135,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f30e3814-6d9b-4991-9897-f96e115fe320", + "id": "bc2f4fe4-67cf-47f3-a76e-43dbb1cd15fe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147021,7 +152180,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -147032,7 +152191,7 @@ } }, { - "id": "fe809298-e8f9-43c6-a546-d9795a462421", + "id": "caa0301d-6b5c-4e6d-b742-cac265971b47", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -147054,7 +152213,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -147075,7 +152234,7 @@ }, "response": [ { - "id": "b88d1812-ac2f-44b4-a576-7bd4501dabed", + "id": "2c6afd08-2f8f-4428-8a38-bd0943f96b5f", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -147116,12 +152275,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"WARNING\"\n}", + "body": "{\n \"status\": \"PENDING\",\n \"type\": \"REPORT_RESULT\",\n \"id\": \"2e8d8180-24bc-4d21-91c6-7affdb473b0d\",\n \"name\": \"policy-xyz\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d0f12e8-989d-43b9-94de-757b939d6f29", + "id": "33c833d6-fca4-428f-a5ea-8e9346f49ecb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147162,12 +152321,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "48a0d08d-938d-441f-9582-d7ba75b342a5", + "id": "5c710ee6-fac9-4092-8015-7ca66f1f0c8b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147208,12 +152367,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d4adc98b-114c-4054-9c9b-27e0aad9d423", + "id": "1fd32328-422f-4a82-838b-3985b2f10444", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147254,12 +152413,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b5046651-9372-44f5-a39e-6739cc79ce27", + "id": "5cd492af-1d20-46c8-8f6c-4974c2ed3904", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147300,12 +152459,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3c369adf-75b5-4a17-b269-8886d849ad2c", + "id": "d15d6f09-7581-401d-87f0-9cf54894d93c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147346,12 +152505,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b72c1e93-9a96-4b07-b9a9-78a6ea430afd", + "id": "3f6efef9-496b-4b6b-b775-ac5ab991db4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147392,7 +152551,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -147403,7 +152562,7 @@ } }, { - "id": "8eb67b21-1aca-4271-8978-dca8ab3cef11", + "id": "7e91d0f3-56e9-4a86-b0a6-9046074d9d15", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -147424,7 +152583,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -147445,7 +152604,7 @@ }, "response": [ { - "id": "62b3e062-5794-4350-8e93-81b567717992", + "id": "9f98e633-6f43-485a-9cb1-b3058a1f16d5", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -147485,12 +152644,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"WARNING\"\n}", + "body": "{\n \"status\": \"SUCCESS\",\n \"type\": \"REPORT_RESULT\",\n \"id\": \"2e8d8180-24bc-4d21-91c6-7affdb473b0d\",\n \"name\": \"policy-xyz\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fcf71070-16de-422f-a876-e215e5b51851", + "id": "37512492-079a-42c1-b53b-3c9a6cd7d1c4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147530,12 +152689,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2eb66617-b101-412a-863f-751ac45553a3", + "id": "3946bdc8-0ce5-4936-ad7f-8dd19239660a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147575,12 +152734,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87e4d7e7-7841-4fe3-8a2e-eadafb856214", + "id": "91e1c4f0-d20b-4f62-bd8f-31078ca9abe8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147620,12 +152779,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f4f33fff-7bcc-41d8-813b-47f0d590b321", + "id": "6945ec3e-8d4c-43b8-b126-75afd3d57934", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147665,12 +152824,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "40be22a9-3342-4dd7-8937-30b649e9ca73", + "id": "de4c138f-5552-4099-8e47-ba52fdb0b985", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147710,12 +152869,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e8d725cc-7af3-40fe-874e-6b1385d90e00", + "id": "b6853309-fcc5-459a-aa81-42937477bfcc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147755,7 +152914,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -147766,7 +152925,7 @@ } }, { - "id": "746101f6-1e70-4958-a9ce-4c42985c9905", + "id": "fb2e4530-b11a-4b10-b799-3c8ac46bf32b", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -147787,7 +152946,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2e8d8180-24bc-4d21-91c6-7affdb473b0d", "key": "reportResultId", "disabled": true, "description": { @@ -147808,7 +152967,7 @@ }, "response": [ { - "id": "0db4797f-58e8-4aa0-8f4d-38fd4f27d6d0", + "id": "26f1beb1-1c41-4406-833c-7569940b3c2a", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -147848,12 +153007,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"WARNING\"\n}", + "body": "{\n \"status\": \"SUCCESS\",\n \"type\": \"REPORT_RESULT\",\n \"id\": \"2e8d8180-24bc-4d21-91c6-7affdb473b0d\",\n \"name\": \"policy-xyz\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2bfd01da-f91c-4621-8b90-d41b7c7f3a31", + "id": "5ececfdc-5bd8-412b-bd28-2af023d48d5d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147893,12 +153052,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8393a6b2-70de-4c26-be81-9bb8a52840ae", + "id": "c5cf5019-59be-4368-b93a-687a63c8a19a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147938,12 +153097,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "18d421db-a0f0-4c08-a954-a1a088b38d5c", + "id": "574fa6b6-6053-4e07-9116-f56cbfede505", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147983,12 +153142,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "79edb6fc-2a7e-4cb7-b223-e9fd4e5f7276", + "id": "a9dbea90-f4be-41db-bf59-17de7d12df27", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148028,12 +153187,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e99d3947-de7b-46bc-9e5f-84faf8bebe5d", + "id": "fc35f1ed-ae2a-4d66-8940-527a27a757d3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148073,12 +153232,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7b56ccf5-1091-496c-a5ae-b854f7b328cd", + "id": "d81ab136-9404-4d1f-bbcc-914b9dad7fba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148118,7 +153277,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -148129,7 +153288,7 @@ } }, { - "id": "ec1be918-15f4-4625-bbc1-5e193fe0d14d", + "id": "1fb4573e-df9d-450e-a688-544dfed387b4", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -148161,7 +153320,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"filteredPolicyList\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"filteredPolicyList\": [\n \"b868cd40-ffa4-4337-9c07-1a51846cfa94\",\n \"63a07a7b-39a4-48aa-956d-50c827deba2a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -148172,7 +153331,7 @@ }, "response": [ { - "id": "75c5cf90-69ae-4c28-8617-57d9fb41a2d7", + "id": "548e8dee-f089-448f-96a7-e4fabd7b834a", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -148207,7 +153366,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"filteredPolicyList\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"filteredPolicyList\": [\n \"b868cd40-ffa4-4337-9c07-1a51846cfa94\",\n \"63a07a7b-39a4-48aa-956d-50c827deba2a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -148224,12 +153383,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"WARNING\"\n}", + "body": "{\n \"status\": \"PENDING\",\n \"type\": \"REPORT_RESULT\",\n \"id\": \"37b3b32a-f394-46f8-acad-b5223969fa68\",\n \"name\": \"Multi Query Report\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f4669ea3-57c2-47ae-beb5-65356e82a55f", + "id": "d161262c-ce56-4fdb-a77e-3187948afc4b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148264,7 +153423,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"filteredPolicyList\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"filteredPolicyList\": [\n \"b868cd40-ffa4-4337-9c07-1a51846cfa94\",\n \"63a07a7b-39a4-48aa-956d-50c827deba2a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -148281,12 +153440,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c6660e2a-5c85-4a7b-8eee-50e756f3bbd5", + "id": "73356258-5622-4514-8065-191c6f96b92a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148321,7 +153480,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"filteredPolicyList\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"filteredPolicyList\": [\n \"b868cd40-ffa4-4337-9c07-1a51846cfa94\",\n \"63a07a7b-39a4-48aa-956d-50c827deba2a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -148338,12 +153497,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8d345613-cd00-4357-940f-68907162d058", + "id": "fbfaabba-2d18-4614-8fe5-c809d7e090a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148378,7 +153537,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"filteredPolicyList\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"filteredPolicyList\": [\n \"b868cd40-ffa4-4337-9c07-1a51846cfa94\",\n \"63a07a7b-39a4-48aa-956d-50c827deba2a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -148395,12 +153554,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1621a516-ac8a-47a0-b845-5cf3b5042912", + "id": "232accdb-3fce-445a-9c85-ef7b356c2e3c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148435,7 +153594,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"filteredPolicyList\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"filteredPolicyList\": [\n \"b868cd40-ffa4-4337-9c07-1a51846cfa94\",\n \"63a07a7b-39a4-48aa-956d-50c827deba2a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -148452,12 +153611,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4363931b-d7e2-4478-ac96-e59f60864c3a", + "id": "5f049e39-f1d4-46a8-989c-556d61fd8b0d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148492,7 +153651,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"filteredPolicyList\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"filteredPolicyList\": [\n \"b868cd40-ffa4-4337-9c07-1a51846cfa94\",\n \"63a07a7b-39a4-48aa-956d-50c827deba2a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -148509,7 +153668,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -148520,7 +153679,7 @@ } }, { - "id": "81de7a7b-fc00-492c-b4fd-d8cdf7ecda10", + "id": "25ec5971-55fd-412d-94ec-1345e75c7a61", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -148549,7 +153708,7 @@ }, "response": [ { - "id": "5244f23a-1a8b-429f-a9a6-67cfac79f3ea", + "id": "9d23a2dd-32a5-4e79-bb62-6a8db22d5fb1", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -148587,12 +153746,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"WARNING\"\n}", + "body": "{\n \"status\": \"SUCCESS\",\n \"type\": \"REPORT_RESULT\",\n \"id\": \"37b3b32a-f394-46f8-acad-b5223969fa68\",\n \"name\": \"Multi Query Report\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "137e38e1-be0f-4a11-9d5c-e0e2c9285cb0", + "id": "ceb8cf6d-ff06-4ebe-aa50-451dd828ec17", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148630,12 +153789,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "06ac3053-6273-4180-9e27-3e0882ee7a86", + "id": "62e9b6f0-baf4-4582-a70c-120c5e758587", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148673,12 +153832,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "14e33169-a5e5-4c0b-8b71-09a0e65dc08a", + "id": "3c872fa1-6ea6-4edd-8888-2621f386d384", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148716,12 +153875,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "054d68b3-2e4d-49ed-9ed4-2f040724c2d1", + "id": "c7562346-28e9-4722-aeaf-352242f9a183", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148759,12 +153918,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7d4ad21e-a557-46e2-8035-f98ef351710d", + "id": "3af3fc32-5dae-456f-ab68-f69c39dbc128", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148802,7 +153961,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -148813,7 +153972,7 @@ } }, { - "id": "f3721ffb-56ff-4606-b88e-f8215d321b8e", + "id": "9bf76119-2093-47ae-a3fe-8e80bcb88d11", "name": "Download violation report", "request": { "name": "Download violation report", @@ -148834,7 +153993,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "reportResultId", "disabled": true, "description": { @@ -148855,7 +154014,7 @@ }, "response": [ { - "id": "19ad9776-6b16-4e4e-95ed-1e55ea92d42b", + "id": "19e6527e-a6c1-4ad2-8bcd-fe1e65873631", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -148895,12 +154054,12 @@ "value": "application/zip" } ], - "body": "", + "body": "velit aliquip", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "cfccc5c7-1094-4410-9d2f-8ba55db391b9", + "id": "c261b05d-ed1d-4bd3-8806-7f7b8052c186", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148940,12 +154099,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a3a2fa4f-ad94-4714-81dd-168646090d5f", + "id": "ace37df2-2082-4fa4-9772-d58dea56c622", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148985,12 +154144,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a97fe351-b8d8-427c-8855-232b4c74eedc", + "id": "9896cb5a-1e63-4619-9558-8cf3f2b6df11", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149030,12 +154189,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3ad27ac4-4182-47a3-b743-e8fcb5aee72e", + "id": "acd07411-7b77-4455-a79e-4ab28a5444b8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -149075,12 +154234,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9b874d5b-eb2a-4aa1-a276-a7a76974ce14", + "id": "f0517914-0d03-4e38-87dc-ce6dbebc17b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149120,12 +154279,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "177a4b4b-9ec4-41ab-8c86-458f72151995", + "id": "5415fad4-72f3-44ed-acd5-382edbba5743", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149165,7 +154324,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -149176,7 +154335,7 @@ } }, { - "id": "563efce5-d455-49da-8765-fdc3e29d9078", + "id": "65ee4ce0-9835-4528-8e86-34e89067cf95", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -149198,7 +154357,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "reportResultId", "disabled": true, "description": { @@ -149208,7 +154367,7 @@ }, { "type": "any", - "value": "", + "value": "custom-name", "key": "fileName", "disabled": true, "description": { @@ -149229,7 +154388,7 @@ }, "response": [ { - "id": "dc0de07c-acbb-4008-90f6-008783d954b0", + "id": "fb5475a2-8469-4b3d-8541-3ced6500b57e", "name": "Returns the zip file with given custom name that contains the violation report file.", "originalRequest": { "url": { @@ -149270,12 +154429,12 @@ "value": "application/zip" } ], - "body": "", + "body": "velit aliquip", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "b3473013-2068-46ea-8caf-077a4652b3fd", + "id": "9b39005e-caab-46b5-8791-ea45774ec77b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149316,12 +154475,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ed4e35ee-7eb0-42fb-ae85-954e5b69da38", + "id": "2238913d-dfc7-4f1a-8990-5ebb1e8a447d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149362,12 +154521,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4319b398-9196-4822-8333-43840c9e5540", + "id": "0fe841e2-8858-46d8-92d5-95fabde9905c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149408,12 +154567,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b99a4757-4e50-4db5-b7e5-732ea9dee953", + "id": "105fa50e-8cc7-498c-924e-294e0a31a80a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -149454,12 +154613,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "139ed2f5-0ec0-4761-83b0-1b8ae8a2049d", + "id": "69d8e45f-25e1-4200-beb8-fa454b6c6d5e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149500,12 +154659,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f706aa2b-a81c-46d9-b892-57fe8ba4912e", + "id": "638f8a75-b91a-467c-a392-726ff7360cf4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149546,7 +154705,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -149563,7 +154722,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": "687d396a-ec70-4616-ad1b-5bd3c65a7e50", + "id": "48365992-e813-425a-8ea2-7554af089c54", "name": "Predict SOD violations for identity.", "request": { "name": "Predict SOD violations for identity.", @@ -149595,7 +154754,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n}", + "raw": "{\n \"identityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c050861ab1\",\n \"name\": \"CN=Information Access,OU=test,OU=test-service,DC=TestAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\",\n \"name\": \"CN=Information Technology,OU=test,OU=test-service,DC=TestAD,DC=local\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -149606,7 +154765,7 @@ }, "response": [ { - "id": "bda53191-8e5a-4799-b6d6-0b816aa16669", + "id": "da843f40-6e5f-4e09-acfa-8a88e3653015", "name": "Violation Contexts", "originalRequest": { "url": { @@ -149641,7 +154800,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n}", + "raw": "{\n \"identityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c050861ab1\",\n \"name\": \"CN=Information Access,OU=test,OU=test-service,DC=TestAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\",\n \"name\": \"CN=Information Technology,OU=test,OU=test-service,DC=TestAD,DC=local\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -149658,12 +154817,12 @@ "value": "application/json" } ], - "body": "{\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\",\n \"existing\": \"\"\n },\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\",\n \"existing\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\",\n \"existing\": \"\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\",\n \"existing\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"existing\": \"\"\n },\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"existing\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"existing\": \"\"\n },\n {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"existing\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "body": "{\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"existing\": true\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"existing\": false\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"existing\": true\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"existing\": false\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"existing\": true\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"existing\": false\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"existing\": true\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"existing\": false\n }\n ]\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9e1cf847-caf6-4696-9ebd-af6addcf31a5", + "id": "f29346d8-881e-4a42-8ab0-15ab5b274ec6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149698,7 +154857,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n}", + "raw": "{\n \"identityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c050861ab1\",\n \"name\": \"CN=Information Access,OU=test,OU=test-service,DC=TestAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\",\n \"name\": \"CN=Information Technology,OU=test,OU=test-service,DC=TestAD,DC=local\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -149715,12 +154874,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5f5d5766-c5d0-4e4c-934a-5d2e55b5f575", + "id": "802aa214-44d4-4845-93b3-d9807fa218d9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149755,7 +154914,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n}", + "raw": "{\n \"identityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c050861ab1\",\n \"name\": \"CN=Information Access,OU=test,OU=test-service,DC=TestAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\",\n \"name\": \"CN=Information Technology,OU=test,OU=test-service,DC=TestAD,DC=local\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -149772,12 +154931,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a05ef724-6d65-41f0-a12e-c833d2d108fb", + "id": "cf6114fa-c164-4a76-928e-f8aa1990ede3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149812,7 +154971,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n}", + "raw": "{\n \"identityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c050861ab1\",\n \"name\": \"CN=Information Access,OU=test,OU=test-service,DC=TestAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\",\n \"name\": \"CN=Information Technology,OU=test,OU=test-service,DC=TestAD,DC=local\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -149829,12 +154988,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "32b2e84e-7701-413c-a773-24ae905a51ac", + "id": "730301b8-a3c8-48cb-b004-643a0024e54b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -149869,7 +155028,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n}", + "raw": "{\n \"identityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c050861ab1\",\n \"name\": \"CN=Information Access,OU=test,OU=test-service,DC=TestAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\",\n \"name\": \"CN=Information Technology,OU=test,OU=test-service,DC=TestAD,DC=local\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -149886,12 +155045,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2eb43a20-29ea-4508-8ac0-67642f3fe2bf", + "id": "de98c400-f03d-4a19-a38d-934a0c5119a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149926,7 +155085,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n}", + "raw": "{\n \"identityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c050861ab1\",\n \"name\": \"CN=Information Access,OU=test,OU=test-service,DC=TestAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\",\n \"name\": \"CN=Information Technology,OU=test,OU=test-service,DC=TestAD,DC=local\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -149943,12 +155102,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0d1ef9d1-70d2-4985-8033-459d624011aa", + "id": "6488d130-c801-4964-a405-4ae77ecb845d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149983,7 +155142,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n}", + "raw": "{\n \"identityId\": \"2c91808568c529c60168cca6f90c1313\",\n \"accessRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c050861ab1\",\n \"name\": \"CN=Information Access,OU=test,OU=test-service,DC=TestAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918087682f9a86016839c0509c1ab2\",\n \"name\": \"CN=Information Technology,OU=test,OU=test-service,DC=TestAD,DC=local\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -150000,7 +155159,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -150017,7 +155176,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": "50e37a3e-df50-40f5-9b0d-598955aac161", + "id": "2ad9d6ee-8efc-4133-9839-e7e3b5ca9dd2", "name": "Finds status of source usage", "request": { "name": "Finds status of source usage", @@ -150038,7 +155197,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -150059,7 +155218,7 @@ }, "response": [ { - "id": "5d8374f7-769f-4132-b9d5-20def08553b7", + "id": "29271829-ae2e-45fa-a03e-e6104fb1255d", "name": "Status of the source usage insights setup by IDN source ID.", "originalRequest": { "url": { @@ -150104,7 +155263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bda2e95-1f50-4b7c-a17a-488b1964f51b", + "id": "35700ab5-b74e-4b8b-9b88-6555086ff5de", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150144,12 +155303,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a0443c39-2d47-4e3f-9c46-6b010ab6b38a", + "id": "959f935d-c3da-4a4b-a23c-b6a367278515", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150189,12 +155348,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0f2911ec-b4b9-4704-8272-32c5b24c8747", + "id": "4a519a25-9024-41e6-88c9-9cf993fe2c4c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150234,12 +155393,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1ad6e9f8-12b8-4d5a-b6af-aafe2c2ec7be", + "id": "6ae4cce6-8eec-4671-88c0-3c58f6237bdd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150279,12 +155438,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "74bba2ab-54a3-4793-a93f-fd6ba55987ba", + "id": "12003aba-fb14-4803-8638-48d8f5fb8ec2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150324,7 +155483,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -150335,7 +155494,7 @@ } }, { - "id": "029fd530-ff88-4dba-8429-e02ee969fe71", + "id": "9ed70197-2a4f-4c97-8d8a-2e4182da64ef", "name": "Returns source usage insights", "request": { "name": "Returns source usage insights", @@ -150378,7 +155537,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -150387,13 +155546,13 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-date" } ], "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -150414,7 +155573,7 @@ }, "response": [ { - "id": "67ea37f1-6a1d-4e00-b129-5c94315d0cbc", + "id": "f3eaf451-0474-4365-af55-008ddcd18a83", "name": "Summary of source usage insights for past 12 months.", "originalRequest": { "url": { @@ -150452,7 +155611,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -150461,7 +155620,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-date" } ], "variable": [] @@ -150491,12 +155650,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"date\": \"\",\n \"count\": \"\"\n },\n {\n \"date\": \"\",\n \"count\": \"\"\n }\n]", + "body": "[\n {\n \"date\": \"2023-04-21\",\n \"count\": 10.45\n },\n {\n \"date\": \"2023-04-21\",\n \"count\": 10.45\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed047daa-ecbf-40e9-bbe7-3414ff80c7f8", + "id": "b84ff04f-c8e1-4c2e-8fd2-2f5b8eebf896", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150534,7 +155693,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -150543,7 +155702,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-date" } ], "variable": [] @@ -150573,12 +155732,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "907dd1fe-d1d5-4a0b-9284-120d75bb2677", + "id": "13df699d-65a8-4b56-b1d6-24f93991a299", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150616,7 +155775,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -150625,7 +155784,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-date" } ], "variable": [] @@ -150655,12 +155814,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "73f3b827-6971-4557-ac2e-4aac24821c31", + "id": "d25cb5fe-08c4-4ddf-ab56-5e14e4c71ea0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150698,7 +155857,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -150707,7 +155866,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-date" } ], "variable": [] @@ -150737,12 +155896,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "eb3744d2-0352-4be3-bd25-ed9f65dff2bc", + "id": "85ae4a3b-dd33-44f7-bd06-1a13695421c9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150780,7 +155939,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -150789,7 +155948,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-date" } ], "variable": [] @@ -150819,12 +155978,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dc97719a-0a90-47e3-924f-325e2fd4e5a8", + "id": "fddd25c1-cdb9-4d8c-912a-b8da9249a4e4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150862,7 +156021,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -150871,7 +156030,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-date" } ], "variable": [] @@ -150901,7 +156060,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -150918,7 +156077,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": "043ebbc2-9e1c-466b-a8d6-0809dce65fcd", + "id": "09cd151a-d95f-4dc8-ac3f-c208d0746e78", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -150959,7 +156118,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -150968,7 +156127,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Employees\"" }, { "disabled": true, @@ -150977,7 +156136,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -150986,7 +156145,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "name" } ], "variable": [] @@ -151002,7 +156161,7 @@ }, "response": [ { - "id": "ec15c2d9-19db-4471-a3a1-b9d3d665634c", + "id": "959c8f40-be85-4687-8423-3a4f9ba4f09f", "name": "List of Source objects", "originalRequest": { "url": { @@ -151038,7 +156197,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -151047,7 +156206,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Employees\"" }, { "disabled": true, @@ -151056,7 +156215,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -151065,7 +156224,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "name" } ], "variable": [] @@ -151095,12 +156254,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"DISCOVER_SCHEMA\",\n \"UNLOCK\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n },\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"UNSTRUCTURED_TARGETS\",\n \"UNLOCK\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n }\n]", + "body": "[\n {\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n },\n {\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cdf394b6-73b5-4ba1-84aa-51d01b1f1713", + "id": "5eb9dcf8-37fe-40e8-91f3-963ef350a067", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151136,7 +156295,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -151145,7 +156304,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Employees\"" }, { "disabled": true, @@ -151154,7 +156313,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -151163,7 +156322,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "name" } ], "variable": [] @@ -151193,12 +156352,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9da3c71a-a652-4a4e-9285-9574d5841c44", + "id": "d95f8452-babd-4f9f-ac55-59c149fe5ced", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151234,7 +156393,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -151243,7 +156402,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Employees\"" }, { "disabled": true, @@ -151252,7 +156411,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -151261,7 +156420,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "name" } ], "variable": [] @@ -151291,12 +156450,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a086aa5f-e0bf-44dc-a1e6-42f406bd5854", + "id": "9b79ac5f-1f47-43f8-8323-cf915fb99ecc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151332,7 +156491,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -151341,7 +156500,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Employees\"" }, { "disabled": true, @@ -151350,7 +156509,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -151359,7 +156518,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "name" } ], "variable": [] @@ -151389,12 +156548,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c76a0d64-a7be-46cf-bf74-fd4010959e8d", + "id": "cb7c319b-cef6-46c9-968c-857e119b4150", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151430,7 +156589,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -151439,7 +156598,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Employees\"" }, { "disabled": true, @@ -151448,7 +156607,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -151457,7 +156616,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "name" } ], "variable": [] @@ -151487,12 +156646,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "dd7223ff-72ae-4800-8c94-2d38e948420a", + "id": "fcd0da39-f317-49e5-904e-f1975497343c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151528,7 +156687,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -151537,7 +156696,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Employees\"" }, { "disabled": true, @@ -151546,7 +156705,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -151555,7 +156714,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "name" } ], "variable": [] @@ -151585,12 +156744,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bca08dcb-c2d6-4261-8aef-139bc5564183", + "id": "92bd4f82-d8b0-42a8-8bc5-391a277a237f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151626,7 +156785,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -151635,7 +156794,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Employees\"" }, { "disabled": true, @@ -151644,7 +156803,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" }, { "disabled": true, @@ -151653,7 +156812,7 @@ "type": "text/plain" }, "key": "for-subadmin", - "value": "" + "value": "name" } ], "variable": [] @@ -151683,7 +156842,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -151694,7 +156853,7 @@ } }, { - "id": "8e43d7f8-4306-4316-b5aa-f09b229ee5fa", + "id": "271a83f0-b3ee-43cb-bc73-e2757d8ec6a0", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -151717,7 +156876,7 @@ "type": "text/plain" }, "key": "provisionAsCsv", - "value": "" + "value": "false" } ], "variable": [] @@ -151735,7 +156894,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -151746,7 +156905,7 @@ }, "response": [ { - "id": "eff3bf50-fc41-4b59-8a90-5a0eb81e77f7", + "id": "6aa3a055-901e-4b72-a087-642f735ad823", "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": { @@ -151764,7 +156923,7 @@ "type": "text/plain" }, "key": "provisionAsCsv", - "value": "" + "value": "false" } ], "variable": [] @@ -151790,7 +156949,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -151807,12 +156966,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a899f0de-ea9f-4a53-8797-e1b1a494b1fe", + "id": "4840bf65-6690-4a2f-a200-13426229096f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151830,7 +156989,7 @@ "type": "text/plain" }, "key": "provisionAsCsv", - "value": "" + "value": "false" } ], "variable": [] @@ -151856,7 +157015,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -151873,12 +157032,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d74508fe-52fc-4b81-9b49-8e6281ed3037", + "id": "35e58a18-239f-42d9-a2dc-0d01771326e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151896,7 +157055,7 @@ "type": "text/plain" }, "key": "provisionAsCsv", - "value": "" + "value": "false" } ], "variable": [] @@ -151922,7 +157081,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -151939,12 +157098,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca2ae645-137c-4f39-9857-a503b0c8cb08", + "id": "b468a6e0-9d03-49cf-b721-4874a34b9879", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151962,7 +157121,7 @@ "type": "text/plain" }, "key": "provisionAsCsv", - "value": "" + "value": "false" } ], "variable": [] @@ -151988,7 +157147,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152005,12 +157164,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "33ad5285-8b51-4c05-b86a-cd513da70417", + "id": "1af6e97e-54d0-42c1-8e1f-10bdc6f1684b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152028,7 +157187,7 @@ "type": "text/plain" }, "key": "provisionAsCsv", - "value": "" + "value": "false" } ], "variable": [] @@ -152054,7 +157213,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152071,12 +157230,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2ee8c97a-0b31-4c9d-b507-88c808df5866", + "id": "6bf5426d-05a5-4dc8-899d-5856ea8a4713", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152094,7 +157253,7 @@ "type": "text/plain" }, "key": "provisionAsCsv", - "value": "" + "value": "false" } ], "variable": [] @@ -152120,7 +157279,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152137,7 +157296,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -152148,7 +157307,7 @@ } }, { - "id": "475b2f22-7fb9-467e-8aa7-6f98ca1413ec", + "id": "66ad534c-b496-4115-aa20-6e589771ea59", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -152168,7 +157327,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "id", "disabled": true, "description": { @@ -152189,7 +157348,7 @@ }, "response": [ { - "id": "e27588d3-cab3-4281-bbde-5a320e2b8e28", + "id": "0e43b0c1-5bb6-43ad-b799-1ed04daccd90", "name": "A Source object", "originalRequest": { "url": { @@ -152228,12 +157387,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f1345ef2-d951-43ae-983d-9e8047cbae0d", + "id": "64ef7e2f-20b2-4dc4-ac56-b86ba8e079b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152272,12 +157431,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "559d647d-8e94-4e75-9ab7-dd620f67edcd", + "id": "c5cba843-a6d0-4bc4-b46f-e48de7907657", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152316,12 +157475,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4d9f04bf-2e70-47b0-b687-20f92db85e5f", + "id": "b2bdf1e2-5edf-46fe-bd2c-f00fcec70ad5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152360,12 +157519,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "01e358cb-10f8-422e-9cb7-2876737b8d3a", + "id": "b2824f72-0658-4eab-a053-cac833cb51b5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -152404,12 +157563,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4b586166-4075-46cb-a13b-7e388cea1270", + "id": "1ade72a9-4775-472d-84a2-9eb4cb7b43c1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152448,12 +157607,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9dd2e1a9-75dd-4815-a152-33f934c3188e", + "id": "334090b5-1467-4219-94f0-73b46d838985", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152492,7 +157651,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -152503,7 +157662,7 @@ } }, { - "id": "c57926aa-fa86-4b6e-946c-2726a08968a0", + "id": "909ef45d-fd27-4cc2-8a2b-fb6fd132ba77", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -152523,7 +157682,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "id", "disabled": true, "description": { @@ -152546,7 +157705,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152557,7 +157716,7 @@ }, "response": [ { - "id": "ee8d51a4-6857-4f36-a65b-35ff61dc3179", + "id": "6d0db077-c1da-43a6-9f65-be708ab66600", "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": { @@ -152592,7 +157751,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152609,12 +157768,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2c5f5a6-b279-4c05-b65d-7677f5111aa0", + "id": "c3585173-3027-47a8-9a9f-54b297f8e22d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152649,7 +157808,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152666,12 +157825,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "de59fea6-7476-43ba-8df4-3dab72d653a1", + "id": "908d2343-224f-42c2-8d1a-48838d771de3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152706,7 +157865,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152723,12 +157882,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c5006677-7ba2-48c5-9d9f-d2d7fbc77f6c", + "id": "5a9b4567-2b52-422b-9c64-489a651ab419", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152763,7 +157922,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152780,12 +157939,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c10206fe-def3-4710-b599-4bac06d6baeb", + "id": "c59c85e9-d7a1-4868-aab2-153422d9e0dd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -152820,7 +157979,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152837,12 +157996,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "aa074b37-2f02-42b4-a549-242db323d438", + "id": "ef0cbb6c-2a34-450f-a63e-6d35881b0089", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152877,7 +158036,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152894,12 +158053,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e646cb1a-519f-4a8d-a5bb-44eef6f44529", + "id": "230030ec-854e-4361-bde9-cbf1aff2c561", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152934,7 +158093,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152951,7 +158110,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -152962,7 +158121,7 @@ } }, { - "id": "c96fa77e-3c94-41fe-9fe0-5ace02eabda7", + "id": "a751f6b1-f8d4-4366-ae46-58670f842911", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -152982,7 +158141,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "id", "disabled": true, "description": { @@ -153005,7 +158164,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"new description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -153016,8 +158175,8 @@ }, "response": [ { - "id": "dd608db7-5e08-4f0c-8ae4-8f38a63a6768", - "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.", + "id": "640c8e32-3936-4ead-a26c-75da469839cb", + "name": "Edit the source description", "originalRequest": { "url": { "path": [ @@ -153051,7 +158210,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"new description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -153068,13 +158227,13 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "37bfb6e6-5754-4944-aa25-63143777345c", - "name": "Client Error - Returned if the request body is invalid.", + "id": "9c36525a-28dc-424d-8782-557c56a8e745", + "name": "Edit the source cluster", "originalRequest": { "url": { "path": [ @@ -153108,7 +158267,292 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/cluster/id\",\n \"value\": \"2c918087813a902001813f3f85736b45\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "8b09fa7d-3f32-424c-9291-fe4f84f1deaf", + "name": "Edit source features", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/features\",\n \"value\": [\n \"PASSWORD\",\n \"PROVISIONING\",\n \"ENABLE\",\n \"AUTHENTICATE\"\n ]\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ccd26772-1bea-43a3-85e6-e0b0b1b848c3", + "name": "Change a source description and cluster in One Call", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"new description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/cluster/id\",\n \"value\": \"2c918087813a902001813f3f85736b45\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "9fbb7cc4-ad9d-4fe1-884f-3a1a76f445db", + "name": "Add a filter string to the connector", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/connectorAttributes/filterString\",\n \"value\": \"!( id.contains( \\\"m\\\" ) ) || !( id.contains( \\\"d\\\" ) )\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "836a3227-316f-40ee-a2cc-6459e5f98103", + "name": "Update connector attribute for specific operation type", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/connectorAttributes/connectionParameters/2/operationType\",\n \"value\": \"Group Aggregation-test\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "dfdae1be-c45c-41f5-abbe-beeecf619787", + "name": "Edit the source cluster", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/cluster/id\",\n \"value\": \"2c918087813a902001813f3f85736b45\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -153125,13 +158569,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "af9a70f7-62c9-4079-bd94-fe22d9f5fc08", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "b3837bc9-43e2-473e-9f24-4d8beaa55fad", + "name": "Edit source features", "originalRequest": { "url": { "path": [ @@ -153165,7 +158609,235 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/features\",\n \"value\": [\n \"PASSWORD\",\n \"PROVISIONING\",\n \"ENABLE\",\n \"AUTHENTICATE\"\n ]\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1a5cb927-01a1-4a80-a95e-ba157c86abf0", + "name": "Change a source description and cluster in One Call", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"new description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/cluster/id\",\n \"value\": \"2c918087813a902001813f3f85736b45\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "adbb3ab5-5f29-488e-8910-edf071a53f83", + "name": "Add a filter string to the connector", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/connectorAttributes/filterString\",\n \"value\": \"!( id.contains( \\\"m\\\" ) ) || !( id.contains( \\\"d\\\" ) )\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "01e2d197-3734-4b68-a97b-3fd8d0b137f5", + "name": "Update connector attribute for specific operation type", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/connectorAttributes/connectionParameters/2/operationType\",\n \"value\": \"Group Aggregation-test\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "992ef093-793d-4b45-a59e-2e7d8954aa45", + "name": "Edit source features", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/features\",\n \"value\": [\n \"PASSWORD\",\n \"PROVISIONING\",\n \"ENABLE\",\n \"AUTHENTICATE\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -153182,13 +158854,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3fc16b6f-dbc8-41c5-abd2-b6447fe12215", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "4b06f8c5-b9fc-4eae-8325-82d97aebab96", + "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { "path": [ @@ -153222,7 +158894,178 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"new description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/cluster/id\",\n \"value\": \"2c918087813a902001813f3f85736b45\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "9de0d33e-c1da-4794-9765-cc023be950f8", + "name": "Add a filter string to the connector", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/connectorAttributes/filterString\",\n \"value\": \"!( id.contains( \\\"m\\\" ) ) || !( id.contains( \\\"d\\\" ) )\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "cb061884-d60e-4025-8f26-6615cf6c713c", + "name": "Update connector attribute for specific operation type", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/connectorAttributes/connectionParameters/2/operationType\",\n \"value\": \"Group Aggregation-test\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "4ca448ce-de94-44f5-92f3-2b67142965c3", + "name": "An example of a 403 response object", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"new description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/cluster/id\",\n \"value\": \"2c918087813a902001813f3f85736b45\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -153239,13 +159082,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "06ea4318-6d05-4b6f-a6c5-0cc9be72074c", - "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "id": "4977beb3-715e-4d78-9ce0-42abc3085ad3", + "name": "Add a filter string to the connector", "originalRequest": { "url": { "path": [ @@ -153279,7 +159122,121 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/connectorAttributes/filterString\",\n \"value\": \"!( id.contains( \\\"m\\\" ) ) || !( id.contains( \\\"d\\\" ) )\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "91f45b05-de56-4f4a-9455-e532f4e0cdb5", + "name": "Update connector attribute for specific operation type", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/connectorAttributes/connectionParameters/2/operationType\",\n \"value\": \"Group Aggregation-test\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "b7caf926-cd2a-407c-a3e0-ccbf20563e72", + "name": "An example of a 404 response object", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/connectorAttributes/filterString\",\n \"value\": \"!( id.contains( \\\"m\\\" ) ) || !( id.contains( \\\"d\\\" ) )\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -153296,13 +159253,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8b53a3ac-ced9-4167-96d9-ad03242ae7b3", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "ee558658-3627-45ed-a48f-8875ed615a6a", + "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { "path": [ @@ -153336,7 +159293,64 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/connectorAttributes/connectionParameters/2/operationType\",\n \"value\": \"Group Aggregation-test\"\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Not Found", + "code": 404, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"404 Not found\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server did not find a current representation for the target resource.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "74830857-622b-4653-bced-cb4a48a716d7", + "name": "Update connector attribute for specific operation type", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/connectorAttributes/connectionParameters/2/operationType\",\n \"value\": \"Group Aggregation-test\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -153353,13 +159367,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "354b7c3b-043a-4668-ab94-352000d976b3", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "41e0e9a0-982e-4993-bdc0-e62544792e6e", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -153393,7 +159407,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"new description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -153410,7 +159424,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -153421,7 +159435,7 @@ } }, { - "id": "126ce0d9-e487-430a-a7ab-3c59838b8586", + "id": "849a6684-ecf5-4baa-b472-55a85bb32671", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -153441,7 +159455,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "id", "disabled": true, "description": { @@ -153462,7 +159476,7 @@ }, "response": [ { - "id": "8eec86ae-9249-4409-952a-9211faf23241", + "id": "2d463351-203a-4df9-bf0b-c38151dc407e", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -153501,12 +159515,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n}", + "body": "{\n \"type\": \"TASK_RESULT\",\n \"id\": \"2c91808779ecf55b0179f720942f181a\",\n \"name\": null\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "09165262-69e0-4a34-a098-2bbf39750933", + "id": "27a15cc2-0a04-4a07-ade5-1dfb0dde7f19", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153545,12 +159559,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c54a0eb6-47ba-4d2c-87b5-38f1a021b5c3", + "id": "c1adb118-d95e-4eca-b3a4-dc9691da7f1d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153589,12 +159603,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c0a0ddcb-50bf-4886-baf8-757793727b5d", + "id": "d2c968ce-fa61-4c1c-8296-87cd1db50e53", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153633,12 +159647,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6ce8497c-b0c0-43ea-89b4-1963792f91cb", + "id": "648fa223-e9c2-4b31-a94b-e1265b95d75d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153677,12 +159691,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b540a5ab-8d63-4c58-a7aa-579e5f94f167", + "id": "fb173ca0-026a-4050-bce9-ef4dc1ebb6d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153721,12 +159735,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d064085-e788-40e5-bf8d-5fd27d281d08", + "id": "b44a129c-ee7c-4525-98ae-3376e83ded63", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153765,7 +159779,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -153776,7 +159790,7 @@ } }, { - "id": "11d8d4c0-4dd1-44d1-a9a2-5b21e13416fb", + "id": "e3a738fc-320d-45fb-95ff-1495b18a4cb8", "name": "Attribute Sync Config", "request": { "name": "Attribute Sync Config", @@ -153797,7 +159811,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "id", "disabled": true, "description": { @@ -153818,7 +159832,7 @@ }, "response": [ { - "id": "9702f8ef-1efc-4cff-be97-871fecf23ca8", + "id": "433ac3b9-881d-41c3-ae4e-7e6b94b999d3", "name": "Attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -153858,12 +159872,12 @@ "value": "application/json" } ], - "body": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "body": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"attributes\": [\n {\n \"name\": \"email\",\n \"displayName\": \"Email\",\n \"enabled\": true,\n \"target\": \"mail\"\n },\n {\n \"name\": \"firstname\",\n \"displayName\": \"First Name\",\n \"enabled\": false,\n \"target\": \"givenName\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8d450472-d223-4c63-be23-e2d027b77248", + "id": "126f2889-839b-43ef-a758-7638f87384f8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153903,12 +159917,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b4e799b5-f73f-4b5f-9777-748d360b5a7f", + "id": "a8322fae-047c-4d63-82b9-8a421ab9aeba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153948,12 +159962,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "138c80d7-9c2b-439f-8a36-9a6b6ede2e27", + "id": "036b5e48-2780-41ef-b525-d50952a22c1b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153993,12 +160007,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a04bf95f-7631-462b-9387-f05dc892954b", + "id": "547803d7-65bf-443a-bcfe-13df15bdf3bb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -154038,12 +160052,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "459efe56-b709-443c-ab8c-3e4383cbacd3", + "id": "feeca9b6-aa6d-420e-966a-3ff057cdd549", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154083,12 +160097,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bdc2c875-f0fb-48cd-ac06-6a4eb5586f25", + "id": "6c8274fe-5623-45e8-8cbc-7a6240787733", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154128,7 +160142,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -154139,7 +160153,7 @@ } }, { - "id": "4ea15cb6-65fe-474f-a592-824c2828711f", + "id": "d5cf26fd-8dec-4cc7-bc19-0399386eb71f", "name": "Update Attribute Sync Config", "request": { "name": "Update Attribute Sync Config", @@ -154160,7 +160174,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "id", "disabled": true, "description": { @@ -154183,7 +160197,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"attributes\": [\n {\n \"name\": \"email\",\n \"displayName\": \"Email\",\n \"enabled\": true,\n \"target\": \"mail\"\n },\n {\n \"name\": \"firstname\",\n \"displayName\": \"First Name\",\n \"enabled\": false,\n \"target\": \"givenName\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154194,7 +160208,7 @@ }, "response": [ { - "id": "0f3f891a-a2f0-42ee-aa4e-e6746b6c6ab3", + "id": "3d999c68-c56b-4ea8-ae1d-7efaa40bf472", "name": "Updated attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -154230,7 +160244,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"attributes\": [\n {\n \"name\": \"email\",\n \"displayName\": \"Email\",\n \"enabled\": true,\n \"target\": \"mail\"\n },\n {\n \"name\": \"firstname\",\n \"displayName\": \"First Name\",\n \"enabled\": false,\n \"target\": \"givenName\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154247,12 +160261,12 @@ "value": "application/json" } ], - "body": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "body": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"attributes\": [\n {\n \"name\": \"email\",\n \"displayName\": \"Email\",\n \"enabled\": true,\n \"target\": \"mail\"\n },\n {\n \"name\": \"firstname\",\n \"displayName\": \"First Name\",\n \"enabled\": false,\n \"target\": \"givenName\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "89938e10-5cd6-4569-8fa9-0da5ea99bbaa", + "id": "de6c5eee-c1a7-4c89-ba89-7a7f70f04de0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154288,7 +160302,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"attributes\": [\n {\n \"name\": \"email\",\n \"displayName\": \"Email\",\n \"enabled\": true,\n \"target\": \"mail\"\n },\n {\n \"name\": \"firstname\",\n \"displayName\": \"First Name\",\n \"enabled\": false,\n \"target\": \"givenName\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154305,12 +160319,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e287dc37-b149-4e75-b786-920a8800b0f2", + "id": "da347f46-326f-45cc-9b12-be0460c9a8a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154346,7 +160360,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"attributes\": [\n {\n \"name\": \"email\",\n \"displayName\": \"Email\",\n \"enabled\": true,\n \"target\": \"mail\"\n },\n {\n \"name\": \"firstname\",\n \"displayName\": \"First Name\",\n \"enabled\": false,\n \"target\": \"givenName\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154363,12 +160377,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f187c294-aeda-40d8-a255-93fe514b0142", + "id": "95c3a018-7ac5-4301-9c07-6306997f2fe3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154404,7 +160418,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"attributes\": [\n {\n \"name\": \"email\",\n \"displayName\": \"Email\",\n \"enabled\": true,\n \"target\": \"mail\"\n },\n {\n \"name\": \"firstname\",\n \"displayName\": \"First Name\",\n \"enabled\": false,\n \"target\": \"givenName\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154421,12 +160435,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f92818cc-234b-400c-adfa-500fd550da5f", + "id": "cbf4a17a-5c02-4215-b788-a27b1f15f7a5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -154462,7 +160476,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"attributes\": [\n {\n \"name\": \"email\",\n \"displayName\": \"Email\",\n \"enabled\": true,\n \"target\": \"mail\"\n },\n {\n \"name\": \"firstname\",\n \"displayName\": \"First Name\",\n \"enabled\": false,\n \"target\": \"givenName\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154479,12 +160493,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ebeb2001-01dc-4ab3-bd26-a9dc0e2827cf", + "id": "68c33034-839d-43e2-8c8c-08d34a0e4ee1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154520,7 +160534,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"attributes\": [\n {\n \"name\": \"email\",\n \"displayName\": \"Email\",\n \"enabled\": true,\n \"target\": \"mail\"\n },\n {\n \"name\": \"firstname\",\n \"displayName\": \"First Name\",\n \"enabled\": false,\n \"target\": \"givenName\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154537,12 +160551,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2083b343-215f-40a4-aa23-9adbe6f1176c", + "id": "36cee189-2a41-4063-830c-8bca0e172a90", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154578,7 +160592,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"attributes\": [\n {\n \"name\": \"email\",\n \"displayName\": \"Email\",\n \"enabled\": true,\n \"target\": \"mail\"\n },\n {\n \"name\": \"firstname\",\n \"displayName\": \"First Name\",\n \"enabled\": false,\n \"target\": \"givenName\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154595,7 +160609,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -154606,7 +160620,7 @@ } }, { - "id": "bb9b3a95-32fd-41c5-9f48-5acb4310da0d", + "id": "2d0256e6-eeed-4a14-b7e7-ed05466dde20", "name": "Check connection for source connector.", "request": { "name": "Check connection for source connector.", @@ -154628,7 +160642,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "cef3ee201db947c5912551015ba0c679", "key": "sourceId", "disabled": true, "description": { @@ -154649,7 +160663,7 @@ }, "response": [ { - "id": "ea8dda3f-08d3-44c7-8b93-c75504c49361", + "id": "8d8a9495-5235-4721-a82b-9307a67281bc", "name": "The result of checking connection to the source connector with response from it.", "originalRequest": { "url": { @@ -154690,12 +160704,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"FAILURE\",\n \"elapsedMillis\": \"\",\n \"details\": {}\n}", + "body": "{\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"ODS-AD-Test [source-999999]\",\n \"status\": \"SUCCESS\",\n \"elapsedMillis\": 1000,\n \"details\": {\n \"useTLSForIQService\": false,\n \"IQService\": {\n \"TLS Port\": 0,\n \".NET CLR Version\": \"4.0.30319.42000\",\n \"SecondaryServiceStatus\": \"Running\",\n \"Port\": 5050,\n \"Host\": \"AUTOMATION-AD\",\n \"Name\": \"IQService\",\n \"IQServiceStatus\": \"Running\",\n \"SecondaryService\": \"IQService-Instance1-Secondary\",\n \"Version\": \"IQService Sep-2020\",\n \"secondaryPort\": 5051,\n \"OS Architecture\": \"AMD64\",\n \"Operating System\": \"Microsoft Windows Server 2012 R2 Standard\",\n \"highestDotNetVersion\": \"4.8 or later\",\n \"Build Time\": \"09/22/2020 06:34 AM -0500\"\n },\n \"IQServiceClientAuthEnabled\": false,\n \"requestProcessedOn\": \"1/19/2021 1:47:14 PM\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8ee6c938-b5f6-43bf-8f51-ffc5e700cfef", + "id": "b1514a04-a95b-4a08-9d96-95f29fa335ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154736,12 +160750,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "26175604-7b2e-4fd2-8c5a-c8d9ad7a7009", + "id": "0ba48600-12b9-4259-b961-ef610b179b71", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154782,12 +160796,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "62d8beeb-60a9-4e8c-9999-08dfb4942b8f", + "id": "1e3683a2-b38c-4203-b8f2-c9465ba01abc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154828,12 +160842,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1324c117-d7ee-4786-8848-9110018810a6", + "id": "bc238c31-b624-4cd6-970e-a69f6a989c85", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -154874,12 +160888,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ea478b7f-ff7c-4d53-85a7-37fcac84ab27", + "id": "eed1420e-334c-4571-922f-bb14c0ed7e21", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154920,12 +160934,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b6f2da70-e519-4867-9184-418153fb03ea", + "id": "49e966eb-1abb-4f74-a663-9681cc3ecabc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154966,7 +160980,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -154977,7 +160991,7 @@ } }, { - "id": "02d0b707-a3bd-4bdd-98ff-14887eceebe0", + "id": "98402bbc-b13b-430c-bfd2-4e54a053e61f", "name": "Peek source connector's resource objects", "request": { "name": "Peek source connector's resource objects", @@ -154999,7 +161013,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "cef3ee201db947c5912551015ba0c679", "key": "sourceId", "disabled": true, "description": { @@ -155022,7 +161036,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectType\": \"account\",\n \"maxCount\": 25\n}", + "raw": "{\n \"objectType\": \"resource\",\n \"maxCount\": 50\n}", "options": { "raw": { "headerFamily": "json", @@ -155033,7 +161047,7 @@ }, "response": [ { - "id": "33eb1bbc-4a2a-4512-bed2-6407a804dee8", + "id": "ecdd32a7-5cfd-4a8c-b58c-5450bcd32d23", "name": "List of resource objects that was fetched from the source connector.", "originalRequest": { "url": { @@ -155070,7 +161084,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectType\": \"account\",\n \"maxCount\": 25\n}", + "raw": "{\n \"objectType\": \"resource\",\n \"maxCount\": 50\n}", "options": { "raw": { "headerFamily": "json", @@ -155087,12 +161101,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"objectCount\": \"\",\n \"elapsedMillis\": \"\",\n \"resourceObjects\": [\n {\n \"instance\": \"\",\n \"identity\": \"\",\n \"uuid\": \"\",\n \"previousIdentity\": \"\",\n \"name\": \"\",\n \"objectType\": \"\",\n \"incomplete\": \"\",\n \"incremental\": \"\",\n \"delete\": \"\",\n \"remove\": \"\",\n \"missing\": [\n \"\",\n \"\"\n ],\n \"attributes\": {},\n \"finalUpdate\": \"\"\n },\n {\n \"instance\": \"\",\n \"identity\": \"\",\n \"uuid\": \"\",\n \"previousIdentity\": \"\",\n \"name\": \"\",\n \"objectType\": \"\",\n \"incomplete\": \"\",\n \"incremental\": \"\",\n \"delete\": \"\",\n \"remove\": \"\",\n \"missing\": [\n \"\",\n \"\"\n ],\n \"attributes\": {},\n \"finalUpdate\": \"\"\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\": \"aliqua qui occaecat dolore\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"incididunt consectetur occ\",\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\": \"cillum dolor ad\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"Lorem cillum n\",\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": "c76896b1-6a20-48b0-b37b-47a6c3824dac", + "id": "b4e3dfcf-4a6b-4572-9500-906f17b57f05", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155129,7 +161143,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectType\": \"account\",\n \"maxCount\": 25\n}", + "raw": "{\n \"objectType\": \"resource\",\n \"maxCount\": 50\n}", "options": { "raw": { "headerFamily": "json", @@ -155146,12 +161160,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "61198f48-b075-4b5a-817f-2a6dce988e02", + "id": "f7c15ea3-19a8-41c3-b3eb-d414e89e2015", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155188,7 +161202,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectType\": \"account\",\n \"maxCount\": 25\n}", + "raw": "{\n \"objectType\": \"resource\",\n \"maxCount\": 50\n}", "options": { "raw": { "headerFamily": "json", @@ -155205,12 +161219,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e740a64-15a6-40b1-b11f-99c82014cd9e", + "id": "e234928f-c576-47ca-8fb5-b1772eab53a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155247,7 +161261,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectType\": \"account\",\n \"maxCount\": 25\n}", + "raw": "{\n \"objectType\": \"resource\",\n \"maxCount\": 50\n}", "options": { "raw": { "headerFamily": "json", @@ -155264,12 +161278,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c4f0929b-e600-4d4b-88c7-1887a582fbdf", + "id": "a2059ce8-04ef-4214-a1ba-33fba3f376af", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -155306,7 +161320,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectType\": \"account\",\n \"maxCount\": 25\n}", + "raw": "{\n \"objectType\": \"resource\",\n \"maxCount\": 50\n}", "options": { "raw": { "headerFamily": "json", @@ -155323,12 +161337,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "640a7c05-8070-43de-9602-e48913ed3122", + "id": "867355ac-c72c-4452-ac8c-98b7ae6fad3f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155365,7 +161379,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectType\": \"account\",\n \"maxCount\": 25\n}", + "raw": "{\n \"objectType\": \"resource\",\n \"maxCount\": 50\n}", "options": { "raw": { "headerFamily": "json", @@ -155382,12 +161396,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b77491f8-c872-4d68-ac3e-24cfb9512b14", + "id": "b976d752-17ba-49bc-a85a-d71170b03860", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155424,7 +161438,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectType\": \"account\",\n \"maxCount\": 25\n}", + "raw": "{\n \"objectType\": \"resource\",\n \"maxCount\": 50\n}", "options": { "raw": { "headerFamily": "json", @@ -155441,7 +161455,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -155452,7 +161466,7 @@ } }, { - "id": "d898e2e3-50c2-4d8b-b88a-eae0ff6b8e53", + "id": "d0ba3c33-854c-4320-af0f-1c99ae3d55c0", "name": "Ping cluster for source connector", "request": { "name": "Ping cluster for source connector", @@ -155474,7 +161488,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "cef3ee201db947c5912551015ba0c679", "key": "sourceId", "disabled": true, "description": { @@ -155495,7 +161509,7 @@ }, "response": [ { - "id": "4a08f964-9dbf-43f6-b248-b7e94b218592", + "id": "afed6517-0490-4c55-bab9-556e449c5871", "name": "The result of pinging connection with the source connector.", "originalRequest": { "url": { @@ -155536,12 +161550,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"FAILURE\",\n \"elapsedMillis\": \"\",\n \"details\": {}\n}", + "body": "{\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"ODS-AD-Test [source-999999]\",\n \"status\": \"SUCCESS\",\n \"elapsedMillis\": 1000,\n \"details\": {\n \"useTLSForIQService\": false,\n \"IQService\": {\n \"TLS Port\": 0,\n \".NET CLR Version\": \"4.0.30319.42000\",\n \"SecondaryServiceStatus\": \"Running\",\n \"Port\": 5050,\n \"Host\": \"AUTOMATION-AD\",\n \"Name\": \"IQService\",\n \"IQServiceStatus\": \"Running\",\n \"SecondaryService\": \"IQService-Instance1-Secondary\",\n \"Version\": \"IQService Sep-2020\",\n \"secondaryPort\": 5051,\n \"OS Architecture\": \"AMD64\",\n \"Operating System\": \"Microsoft Windows Server 2012 R2 Standard\",\n \"highestDotNetVersion\": \"4.8 or later\",\n \"Build Time\": \"09/22/2020 06:34 AM -0500\"\n },\n \"IQServiceClientAuthEnabled\": false,\n \"requestProcessedOn\": \"1/19/2021 1:47:14 PM\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4586aaf6-6aa7-4182-9fe9-0fcf3d5470c9", + "id": "eeae0e20-c639-425e-abc0-cdde37fdf754", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155582,12 +161596,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "45cef1aa-3b55-43ca-b165-e9c99b7f9fc4", + "id": "474a10e4-7d29-4a41-9669-9bab3c1d43c9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155628,12 +161642,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fed648f3-2dc9-43ca-b656-9ce5cd1521d1", + "id": "34b8895f-dd4e-4bc0-b25a-7e526c05ebec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155674,12 +161688,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "88fd207c-4338-41c5-a4de-b7053a3b6645", + "id": "ebab0e41-06ac-4171-b975-30e25abc7037", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -155720,12 +161734,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "955b5f2c-8b99-4654-87e7-7c93f838adfc", + "id": "a1fb907b-ff88-4fea-a56d-511478853520", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155766,12 +161780,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8ca25f65-766a-4a55-b907-4c8cfe4b7caa", + "id": "8e029050-abef-4a96-885d-566638518744", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155812,7 +161826,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -155823,7 +161837,7 @@ } }, { - "id": "55ec505a-11b1-4dde-b12d-f7e1b3e2c384", + "id": "87360e13-c5e4-465a-ab05-8c9ad643586d", "name": "Test configuration for source connector", "request": { "name": "Test configuration for source connector", @@ -155845,7 +161859,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "cef3ee201db947c5912551015ba0c679", "key": "sourceId", "disabled": true, "description": { @@ -155866,7 +161880,7 @@ }, "response": [ { - "id": "901f268a-710d-40c6-b498-b6e2fa2d9cdc", + "id": "c7fc8b81-fcd3-41fe-9d63-8723e516af05", "name": "The result of testing source connector configuration with response from it.", "originalRequest": { "url": { @@ -155907,12 +161921,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"FAILURE\",\n \"elapsedMillis\": \"\",\n \"details\": {}\n}", + "body": "{\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"ODS-AD-Test [source-999999]\",\n \"status\": \"SUCCESS\",\n \"elapsedMillis\": 1000,\n \"details\": {\n \"useTLSForIQService\": false,\n \"IQService\": {\n \"TLS Port\": 0,\n \".NET CLR Version\": \"4.0.30319.42000\",\n \"SecondaryServiceStatus\": \"Running\",\n \"Port\": 5050,\n \"Host\": \"AUTOMATION-AD\",\n \"Name\": \"IQService\",\n \"IQServiceStatus\": \"Running\",\n \"SecondaryService\": \"IQService-Instance1-Secondary\",\n \"Version\": \"IQService Sep-2020\",\n \"secondaryPort\": 5051,\n \"OS Architecture\": \"AMD64\",\n \"Operating System\": \"Microsoft Windows Server 2012 R2 Standard\",\n \"highestDotNetVersion\": \"4.8 or later\",\n \"Build Time\": \"09/22/2020 06:34 AM -0500\"\n },\n \"IQServiceClientAuthEnabled\": false,\n \"requestProcessedOn\": \"1/19/2021 1:47:14 PM\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6dfdcf8d-c85e-4c11-849e-ae194f0a9c1d", + "id": "f36a3baf-f922-4003-8328-d7b5a5443cda", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155953,12 +161967,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e6720ca5-00c8-4cf0-882e-22b89840f139", + "id": "26a18cf5-24ed-408f-b18b-8bd676463d9b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155999,12 +162013,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a5a86840-722d-44a4-a040-46ea9ad3f857", + "id": "f6e67883-b347-47e5-8b3a-4246890ebcb6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156045,12 +162059,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "127665de-892a-4001-8a64-b2da072f894a", + "id": "fa774908-89b0-4a3e-b938-fc8f383385d6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -156091,12 +162105,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c876b206-11f6-4027-8c30-b4cb088c57c6", + "id": "6bdbb867-2052-4aa4-ae3d-30423a6253ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156137,12 +162151,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15bdfc53-718b-4515-921c-57894927f4f0", + "id": "d45119fb-3b9e-447e-8f18-19a60ec7a1f9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156183,7 +162197,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -156194,7 +162208,7 @@ } }, { - "id": "3e3d4dc5-754a-4f7d-ac39-578859ca01b6", + "id": "37a11077-6ae2-46ed-a277-e80568fcb2e3", "name": "Gets source config with language translations", "request": { "name": "Gets source config with language translations", @@ -156220,13 +162234,13 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "es" } ], "variable": [ { "type": "any", - "value": "", + "value": "velit aliquip", "key": "id", "disabled": true, "description": { @@ -156247,7 +162261,7 @@ }, "response": [ { - "id": "e33dca87-4ee9-4b06-af33-caf4765c1578", + "id": "bbb76c32-28af-45b2-9f77-097294ffec86", "name": "A Connector Detail object", "originalRequest": { "url": { @@ -156268,7 +162282,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "es" } ], "variable": [] @@ -156298,12 +162312,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"sourceConfigXml\": \"\",\n \"sourceConfig\": \"\",\n \"directConnect\": \"\",\n \"fileUpload\": \"\",\n \"uploadedFiles\": \"\",\n \"connectorMetadata\": {}\n}", + "body": "{\n \"name\": \"JDBC\",\n \"sourceConfigXml\": \"
\\n\\t
\",\n \"sourceConfig\": \"enim nostrud\",\n \"directConnect\": true,\n \"fileUpload\": false,\n \"uploadedFiles\": \"reprehenderit pariatur anim\",\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5db51bf-a2bd-44e1-90a3-e5142df625c6", + "id": "4fbcf978-4a18-47fe-9654-5f9782423403", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156324,7 +162338,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "es" } ], "variable": [] @@ -156354,12 +162368,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "64be0aa7-63ac-425c-866f-d5c1f294e47f", + "id": "66b950b9-f537-48a3-b85a-bffbb2eed0a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156380,7 +162394,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "es" } ], "variable": [] @@ -156410,12 +162424,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bc3ccb25-3211-4464-a8bd-adb48f80f937", + "id": "135777fc-f4f8-4c68-8ed7-dc6ab94a7652", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -156436,7 +162450,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "es" } ], "variable": [] @@ -156466,12 +162480,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "188d93fa-6246-4231-a7e2-da04f6487f4b", + "id": "3baa60f1-eb42-45ef-b1aa-ea17a402227f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156492,7 +162506,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "es" } ], "variable": [] @@ -156522,12 +162536,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7247f4b2-1ee5-4a82-86c2-133dbe030d13", + "id": "834f4441-2799-454a-a257-8b5cf26c644b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156548,7 +162562,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "es" } ], "variable": [] @@ -156578,7 +162592,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -156589,7 +162603,7 @@ } }, { - "id": "ec39ca84-059d-4009-8ed4-6f62131fca93", + "id": "99c6601c-1688-46ac-85c4-3f03ad2836f8", "name": "Native Change Detection Configuration", "request": { "name": "Native Change Detection Configuration", @@ -156619,7 +162633,7 @@ "type": "text/plain" }, "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "id" } ] @@ -156635,7 +162649,7 @@ }, "response": [ { - "id": "53489c5f-c7d4-43f8-a90b-db159ff5c402", + "id": "07be26a9-8fdd-493e-8d8c-0bb364767aba", "name": "Native change detection configuration for a source", "originalRequest": { "url": { @@ -156675,12 +162689,12 @@ "value": "application/json" } ], - "body": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_CREATED\",\n \"ACCOUNT_UPDATED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"enabled\": true,\n \"operations\": [\n \"ACCOUNT_UPDATED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"memberOf\",\n \"memberOfSharedMailbox\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"lastName\",\n \"phoneNumber\",\n \"objectType\",\n \"servicePrincipalName\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f53b12bd-c29d-4655-a2e3-7dd0d629122c", + "id": "611e8992-aa66-41d6-99d4-245da329c958", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156720,12 +162734,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c9b64400-38c6-40f9-bfe4-7df368175285", + "id": "a2e67fce-006d-49af-9e22-25402b8cabab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156765,12 +162779,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4dedc924-8c77-4e49-b407-c43afcdf23fb", + "id": "af5bb1f3-5a8c-4cb4-91e4-27cfc9dc0860", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156810,12 +162824,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "153c9d6d-92b7-43fe-9e33-60926d3ab9dd", + "id": "2aec9af9-d787-4de9-b47e-2ea4803c05d0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -156855,12 +162869,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a4f25528-28a1-424f-9a21-4e829d674672", + "id": "b5e2b95f-87db-4644-9ec1-67678ec8166e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156900,12 +162914,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "142567c8-15cb-4037-8ef6-26805e5971d1", + "id": "632f7e1b-7b67-452c-b0fa-7b1ecc827090", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156945,7 +162959,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -156956,7 +162970,7 @@ } }, { - "id": "64e74a11-639f-4123-8eaf-897b4714061e", + "id": "a55259d3-32df-4f0e-aca2-76a8b31dd4bd", "name": "Update Native Change Detection Configuration", "request": { "name": "Update Native Change Detection Configuration", @@ -156986,7 +163000,7 @@ "type": "text/plain" }, "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "id" } ] @@ -157004,7 +163018,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_CREATED\",\n \"ACCOUNT_UPDATED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"enabled\": true,\n \"operations\": [\n \"ACCOUNT_UPDATED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"memberOf\",\n \"memberOfSharedMailbox\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"lastName\",\n \"phoneNumber\",\n \"objectType\",\n \"servicePrincipalName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -157015,7 +163029,7 @@ }, "response": [ { - "id": "85146b9f-4997-4301-b575-4b661a8948c6", + "id": "fe9ff7fc-f73a-4e84-a07c-2d99865d5120", "name": "Updated native change detection configuration for a source", "originalRequest": { "url": { @@ -157051,7 +163065,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_CREATED\",\n \"ACCOUNT_UPDATED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"enabled\": true,\n \"operations\": [\n \"ACCOUNT_UPDATED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"memberOf\",\n \"memberOfSharedMailbox\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"lastName\",\n \"phoneNumber\",\n \"objectType\",\n \"servicePrincipalName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -157068,12 +163082,12 @@ "value": "application/json" } ], - "body": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_CREATED\",\n \"ACCOUNT_UPDATED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"enabled\": true,\n \"operations\": [\n \"ACCOUNT_UPDATED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"memberOf\",\n \"memberOfSharedMailbox\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"lastName\",\n \"phoneNumber\",\n \"objectType\",\n \"servicePrincipalName\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "00085f84-a7a9-4ee3-82d3-b9ffa32f5fdb", + "id": "16429d52-9feb-4d8e-ab8a-3f0f3133737f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157109,7 +163123,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_CREATED\",\n \"ACCOUNT_UPDATED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"enabled\": true,\n \"operations\": [\n \"ACCOUNT_UPDATED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"memberOf\",\n \"memberOfSharedMailbox\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"lastName\",\n \"phoneNumber\",\n \"objectType\",\n \"servicePrincipalName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -157126,12 +163140,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "228d23f3-de3c-4e2f-837c-718aaf716102", + "id": "4226fefc-0862-451a-936c-8fc513161a4f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157167,7 +163181,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_CREATED\",\n \"ACCOUNT_UPDATED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"enabled\": true,\n \"operations\": [\n \"ACCOUNT_UPDATED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"memberOf\",\n \"memberOfSharedMailbox\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"lastName\",\n \"phoneNumber\",\n \"objectType\",\n \"servicePrincipalName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -157184,12 +163198,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "96bada8a-b874-4328-ae0e-1cd410cbc71c", + "id": "c18ef634-5149-4c2e-801e-799f2e2881ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157225,7 +163239,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_CREATED\",\n \"ACCOUNT_UPDATED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"enabled\": true,\n \"operations\": [\n \"ACCOUNT_UPDATED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"memberOf\",\n \"memberOfSharedMailbox\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"lastName\",\n \"phoneNumber\",\n \"objectType\",\n \"servicePrincipalName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -157242,12 +163256,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "63fdeb7d-6f0f-4b6e-ad31-2e1de4618167", + "id": "c9a25922-5b5d-4948-a531-7149506c981a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -157283,7 +163297,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_CREATED\",\n \"ACCOUNT_UPDATED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"enabled\": true,\n \"operations\": [\n \"ACCOUNT_UPDATED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"memberOf\",\n \"memberOfSharedMailbox\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"lastName\",\n \"phoneNumber\",\n \"objectType\",\n \"servicePrincipalName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -157300,12 +163314,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "19fdc800-1d04-4655-9d13-646532d62c6d", + "id": "2bcf8bf0-ff25-4055-98b6-ceb48df3f4e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157341,7 +163355,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_CREATED\",\n \"ACCOUNT_UPDATED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"enabled\": true,\n \"operations\": [\n \"ACCOUNT_UPDATED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"memberOf\",\n \"memberOfSharedMailbox\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"lastName\",\n \"phoneNumber\",\n \"objectType\",\n \"servicePrincipalName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -157358,12 +163372,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d00c6dd2-08f7-4133-960e-f6c2a042fd53", + "id": "7dede4e7-6f89-48d0-876e-3153becc9908", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157399,7 +163413,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_CREATED\",\n \"ACCOUNT_UPDATED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"enabled\": true,\n \"operations\": [\n \"ACCOUNT_UPDATED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"memberOf\",\n \"memberOfSharedMailbox\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"lastName\",\n \"phoneNumber\",\n \"objectType\",\n \"servicePrincipalName\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -157416,7 +163430,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -157427,7 +163441,7 @@ } }, { - "id": "7667533f-59df-47bf-ac63-a4842fbe216d", + "id": "5130f905-2f72-415f-adb2-ab2cb79ef32b", "name": "Delete Native Change Detection Configuration", "request": { "name": "Delete Native Change Detection Configuration", @@ -157457,7 +163471,7 @@ "type": "text/plain" }, "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "id" } ] @@ -157473,7 +163487,7 @@ }, "response": [ { - "id": "41026527-dbf3-4ebf-a6c9-61ebe33914aa", + "id": "b29188c3-b595-4594-b205-95ae0049355d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -157508,7 +163522,7 @@ "_postman_previewlanguage": "text" }, { - "id": "264aa4a0-117d-4f8a-a26a-9f8db3179eec", + "id": "63799a15-16b7-4e15-9514-a69fea4cc26a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157548,12 +163562,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c41014ed-a6da-4017-a15c-55a18fd2ca16", + "id": "9624c8de-4323-4c92-b185-bc92119bc4b8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157593,12 +163607,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ddc78a05-2ab2-4c24-9220-9f8ebb79f7b2", + "id": "ad515b5a-4a52-49e3-a4c0-77a24efc4bba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157638,12 +163652,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "88f84874-9b46-4ccf-846e-34cdf99e1d7d", + "id": "4b8a9f35-6459-44a7-a4f7-bfbbf78a4964", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -157683,12 +163697,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2403d553-943d-49ba-9169-f4ea376ad13c", + "id": "1575e2c2-2d49-4974-a308-289952410548", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157728,12 +163742,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "031e795c-4a66-4d12-b4b9-e175a3658bff", + "id": "74c5bcce-9952-469a-a13e-f66d5430f40a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157773,7 +163787,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -157784,7 +163798,7 @@ } }, { - "id": "a3f48d9c-2e69-4f08-8a6f-153e6d502588", + "id": "80d5a325-23bb-4aa1-bc22-0d18b2d819c1", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -157805,7 +163819,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -157826,7 +163840,7 @@ }, "response": [ { - "id": "ff9b8e48-f10a-484c-ac20-fd4067276ce1", + "id": "16d3a6f7-0973-415b-ab7c-fb4070485e98", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -157866,12 +163880,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UPDATE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "body": "[\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85a88052-5b83-48ef-8d4a-d3e2f601a687", + "id": "54604cd9-8f1d-4163-973f-f962ec07aa70", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157911,12 +163925,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f076c0e6-d084-4727-b0c3-6af4851163b7", + "id": "dc727bc9-7019-47a2-9e57-37146eb5957a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157956,12 +163970,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1b0822ea-d8e0-4d25-8f97-ad89d03e36a4", + "id": "2d0cf5db-65b7-461a-a688-b85061c81bcf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158001,12 +164015,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1fea1a50-244a-4c53-aa60-f539921995eb", + "id": "7b5b6ed9-d382-44d6-8624-54496c9a7e05", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158046,12 +164060,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fca91216-97d7-474e-8980-19ddf7720611", + "id": "672d6498-912a-49ab-80b1-86e191e9443c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158091,12 +164105,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8874bcd7-3298-423f-9b26-c66048535e31", + "id": "41ab9028-a083-45f7-a612-cc9196a58649", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158136,7 +164150,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -158147,7 +164161,7 @@ } }, { - "id": "d6f1ad2a-7e5e-4f09-867b-b95611a0a178", + "id": "069c7829-da92-460d-a034-62edcb094ed4", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -158168,7 +164182,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -158191,7 +164205,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"Account\",\n \"description\": \"Account Provisioning Policy\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"displayName\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"displayName\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"distinguishedName\",\n \"transform\": {\n \"type\": \"usernameGenerator\",\n \"attributes\": {\n \"sourceCheck\": true,\n \"patterns\": [\n \"CN=$fi $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fti $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn$ln${uniqueCounter},OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\"\n ],\n \"fn\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"ln\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"lastname\"\n }\n },\n \"fi\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 1\n }\n },\n \"fti\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 2\n }\n }\n }\n },\n \"attributes\": {\n \"cloudMaxUniqueChecks\": \"5\",\n \"cloudMaxSize\": \"100\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"description\",\n \"transform\": {\n \"type\": \"static\",\n \"attributes\": {\n \"value\": \"\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -158202,7 +164216,7 @@ }, "response": [ { - "id": "d3b7214b-5e37-44a1-a256-8950a9d5aa47", + "id": "cc86e44c-eeb3-447b-83f6-02e14bf1edc6", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -158238,7 +164252,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"Account\",\n \"description\": \"Account Provisioning Policy\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"displayName\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"displayName\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"distinguishedName\",\n \"transform\": {\n \"type\": \"usernameGenerator\",\n \"attributes\": {\n \"sourceCheck\": true,\n \"patterns\": [\n \"CN=$fi $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fti $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn$ln${uniqueCounter},OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\"\n ],\n \"fn\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"ln\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"lastname\"\n }\n },\n \"fi\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 1\n }\n },\n \"fti\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 2\n }\n }\n }\n },\n \"attributes\": {\n \"cloudMaxUniqueChecks\": \"5\",\n \"cloudMaxSize\": \"100\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"description\",\n \"transform\": {\n \"type\": \"static\",\n \"attributes\": {\n \"value\": \"\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -158255,12 +164269,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "body": "{\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7fab192b-596f-4c92-bb99-892b136c71c3", + "id": "f2e4a1c1-38f8-4fb4-9f45-787e4c61d371", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158296,7 +164310,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"Account\",\n \"description\": \"Account Provisioning Policy\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"displayName\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"displayName\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"distinguishedName\",\n \"transform\": {\n \"type\": \"usernameGenerator\",\n \"attributes\": {\n \"sourceCheck\": true,\n \"patterns\": [\n \"CN=$fi $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fti $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn$ln${uniqueCounter},OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\"\n ],\n \"fn\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"ln\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"lastname\"\n }\n },\n \"fi\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 1\n }\n },\n \"fti\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 2\n }\n }\n }\n },\n \"attributes\": {\n \"cloudMaxUniqueChecks\": \"5\",\n \"cloudMaxSize\": \"100\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"description\",\n \"transform\": {\n \"type\": \"static\",\n \"attributes\": {\n \"value\": \"\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -158313,12 +164327,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4a48db44-c17b-4e1b-be97-fb4617a36ec0", + "id": "359db108-9fa3-44f9-92d4-224072457583", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158354,7 +164368,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"Account\",\n \"description\": \"Account Provisioning Policy\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"displayName\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"displayName\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"distinguishedName\",\n \"transform\": {\n \"type\": \"usernameGenerator\",\n \"attributes\": {\n \"sourceCheck\": true,\n \"patterns\": [\n \"CN=$fi $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fti $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn$ln${uniqueCounter},OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\"\n ],\n \"fn\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"ln\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"lastname\"\n }\n },\n \"fi\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 1\n }\n },\n \"fti\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 2\n }\n }\n }\n },\n \"attributes\": {\n \"cloudMaxUniqueChecks\": \"5\",\n \"cloudMaxSize\": \"100\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"description\",\n \"transform\": {\n \"type\": \"static\",\n \"attributes\": {\n \"value\": \"\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -158371,12 +164385,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e17463b-21a6-4c09-9125-f3a329e290da", + "id": "6e236b77-03ff-4958-bcce-dba8008927d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158412,7 +164426,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"Account\",\n \"description\": \"Account Provisioning Policy\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"displayName\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"displayName\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"distinguishedName\",\n \"transform\": {\n \"type\": \"usernameGenerator\",\n \"attributes\": {\n \"sourceCheck\": true,\n \"patterns\": [\n \"CN=$fi $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fti $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn$ln${uniqueCounter},OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\"\n ],\n \"fn\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"ln\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"lastname\"\n }\n },\n \"fi\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 1\n }\n },\n \"fti\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 2\n }\n }\n }\n },\n \"attributes\": {\n \"cloudMaxUniqueChecks\": \"5\",\n \"cloudMaxSize\": \"100\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"description\",\n \"transform\": {\n \"type\": \"static\",\n \"attributes\": {\n \"value\": \"\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -158429,12 +164443,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bfed6f4e-0870-42b0-ad69-a8563fdbcf7e", + "id": "3567c42e-d778-40e8-b4c6-f9934b9f83f0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158470,7 +164484,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"Account\",\n \"description\": \"Account Provisioning Policy\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"displayName\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"displayName\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"distinguishedName\",\n \"transform\": {\n \"type\": \"usernameGenerator\",\n \"attributes\": {\n \"sourceCheck\": true,\n \"patterns\": [\n \"CN=$fi $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fti $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn$ln${uniqueCounter},OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\"\n ],\n \"fn\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"ln\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"lastname\"\n }\n },\n \"fi\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 1\n }\n },\n \"fti\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 2\n }\n }\n }\n },\n \"attributes\": {\n \"cloudMaxUniqueChecks\": \"5\",\n \"cloudMaxSize\": \"100\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"description\",\n \"transform\": {\n \"type\": \"static\",\n \"attributes\": {\n \"value\": \"\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -158487,12 +164501,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8af82a34-1ff2-48cb-ae36-0d9e79793b15", + "id": "b271e35e-9a15-494c-b653-57813a288e08", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158528,7 +164542,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"Account\",\n \"description\": \"Account Provisioning Policy\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"displayName\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"displayName\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"distinguishedName\",\n \"transform\": {\n \"type\": \"usernameGenerator\",\n \"attributes\": {\n \"sourceCheck\": true,\n \"patterns\": [\n \"CN=$fi $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fti $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn$ln${uniqueCounter},OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\"\n ],\n \"fn\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"ln\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"lastname\"\n }\n },\n \"fi\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 1\n }\n },\n \"fti\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 2\n }\n }\n }\n },\n \"attributes\": {\n \"cloudMaxUniqueChecks\": \"5\",\n \"cloudMaxSize\": \"100\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"description\",\n \"transform\": {\n \"type\": \"static\",\n \"attributes\": {\n \"value\": \"\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -158545,12 +164559,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "946ec7fd-01dd-4a45-8a26-dbd6e2725f0b", + "id": "115c96b7-9de3-4889-ad28-aa4f1ee32df4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158586,7 +164600,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"Account\",\n \"description\": \"Account Provisioning Policy\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"displayName\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"displayName\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"distinguishedName\",\n \"transform\": {\n \"type\": \"usernameGenerator\",\n \"attributes\": {\n \"sourceCheck\": true,\n \"patterns\": [\n \"CN=$fi $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fti $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn $ln,OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\",\n \"CN=$fn$ln${uniqueCounter},OU=zzUsers,OU=Demo,DC=seri,DC=sailpointdemo,DC=com\"\n ],\n \"fn\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"ln\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"lastname\"\n }\n },\n \"fi\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 1\n }\n },\n \"fti\": {\n \"type\": \"substring\",\n \"attributes\": {\n \"input\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"firstname\"\n }\n },\n \"begin\": 0,\n \"end\": 2\n }\n }\n }\n },\n \"attributes\": {\n \"cloudMaxUniqueChecks\": \"5\",\n \"cloudMaxSize\": \"100\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"description\",\n \"transform\": {\n \"type\": \"static\",\n \"attributes\": {\n \"value\": \"\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -158603,7 +164617,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -158614,7 +164628,7 @@ } }, { - "id": "114ef65f-3fa2-4cae-9267-8a95e3ec39de", + "id": "940e48f5-fa24-433d-9e9d-b25e5c16e918", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -158636,7 +164650,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -158646,7 +164660,7 @@ }, { "type": "any", - "value": "DISABLE", + "value": "CREATE", "key": "usageType", "disabled": true, "description": { @@ -158667,7 +164681,7 @@ }, "response": [ { - "id": "3c5b907d-8dad-4a09-8667-b268763aaf03", + "id": "793aa9bc-bd09-4b1e-89ff-bbe757d73eef", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -158708,12 +164722,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "body": "{\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f83ef71d-5358-47c3-b34a-743584e75322", + "id": "0cebf154-a3cd-4105-974c-7d380a0f4ccf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158754,12 +164768,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b33208cb-d90e-42ec-9894-c439a187dd96", + "id": "8e8a5271-aeaa-4165-a705-6629a7688a7e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158800,12 +164814,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "70096b91-5d6b-4af5-9752-31604854dd83", + "id": "6a25c8bf-5f9f-455f-8207-642e8d056921", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158846,12 +164860,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "375dfe78-9317-426d-9fe6-4f498a696e8b", + "id": "7ec64605-a15e-4ed6-8179-5577e8fda50e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158892,12 +164906,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "55787eca-a8c8-47c3-981e-7dfbc678dc05", + "id": "d720f483-f449-45ab-8f54-92c4a850593f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158938,12 +164952,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "29793384-abf0-44ba-a8ad-1b9ed7acedb7", + "id": "7e6fedc3-b5fd-43b3-9fe4-0b71da52138c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158984,7 +164998,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -158995,7 +165009,7 @@ } }, { - "id": "049344cb-73a1-48f3-8a11-73d1537771e8", + "id": "31c30e49-aa08-4122-90db-3e77cdb6c42e", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -159017,7 +165031,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -159027,7 +165041,7 @@ }, { "type": "any", - "value": "DISABLE", + "value": "CREATE", "key": "usageType", "disabled": true, "description": { @@ -159050,7 +165064,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -159061,7 +165075,7 @@ }, "response": [ { - "id": "f9a02151-c1ec-4b67-bd6c-7948e83563d4", + "id": "5e2f7c1f-5965-42f8-ac02-386d70fefe96", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -159098,7 +165112,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -159115,12 +165129,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "body": "{\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "31b75bea-6b46-4a97-8c9f-4ee9c4c39f46", + "id": "23f8320f-4a0f-49f2-865b-ca1ff4518642", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159157,7 +165171,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -159174,12 +165188,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "89e658b9-acff-4aa1-9ef4-1f9939d714b7", + "id": "24f6dfef-585b-498f-a565-c21ce14cd6e3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159216,7 +165230,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -159233,12 +165247,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "603f4f36-c586-449a-8942-7cd62af7ba60", + "id": "5f3de186-e40a-41c6-b22f-1c725226f06e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159275,7 +165289,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -159292,12 +165306,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f031ffee-8610-4405-98e5-15532ccdafae", + "id": "59280a3d-163d-4710-ab79-037fec00e89b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -159334,7 +165348,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -159351,12 +165365,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8326b99b-905d-4d69-9ca9-b976913445d1", + "id": "49cf5c7d-a40c-4872-be45-9300003e7912", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159393,7 +165407,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -159410,12 +165424,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e9ef2822-fc28-4e55-a581-48cc487498f9", + "id": "8e83d322-ded4-45e4-8364-5a4762406d9c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159452,7 +165466,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "raw": "{\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -159469,7 +165483,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -159480,7 +165494,7 @@ } }, { - "id": "eb34983c-9ce7-4459-b967-12e6afbdaa67", + "id": "86ef8c84-f821-49a4-9431-632904856c19", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -159502,7 +165516,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -159512,7 +165526,7 @@ }, { "type": "any", - "value": "DISABLE", + "value": "CREATE", "key": "usageType", "disabled": true, "description": { @@ -159535,7 +165549,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/fields/0\",\n \"value\": {\n \"name\": \"email\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"email\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -159546,7 +165560,7 @@ }, "response": [ { - "id": "3b830df0-19b9-494f-86ef-549950d9f08d", + "id": "a3585c94-f42e-460e-936d-fe32988df4bb", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -159583,7 +165597,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/fields/0\",\n \"value\": {\n \"name\": \"email\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"email\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -159600,12 +165614,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"EDIT_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n}", + "body": "{\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "46c42a9e-2770-4e17-b9cf-eb2864f01b5c", + "id": "4de252e1-6056-461f-89c5-863d3509634d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159642,7 +165656,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/fields/0\",\n \"value\": {\n \"name\": \"email\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"email\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -159659,12 +165673,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c7a0b6ec-46d4-4ee1-a13a-90e57720fcf8", + "id": "f239c3ec-3758-4690-98a9-79b8529d13c5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159701,7 +165715,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/fields/0\",\n \"value\": {\n \"name\": \"email\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"email\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -159718,12 +165732,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "05dc2143-c78a-4cc3-a41a-f132d3e6b860", + "id": "b054f52d-d4df-4134-b919-f7fb61deb90c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159760,7 +165774,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/fields/0\",\n \"value\": {\n \"name\": \"email\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"email\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -159777,12 +165791,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "700a4038-2db7-471e-bf12-f6eb9d44b6ad", + "id": "89ae9480-9281-4e7e-bfb6-f123ce351de6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -159819,7 +165833,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/fields/0\",\n \"value\": {\n \"name\": \"email\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"email\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -159836,12 +165850,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "36d76c8f-b69e-4028-b2f9-0be67d5d6b9a", + "id": "1be1f716-98b9-48f7-9760-fb2197f155ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159878,7 +165892,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/fields/0\",\n \"value\": {\n \"name\": \"email\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"email\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -159895,12 +165909,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "317fa8a3-9cb3-467a-9250-c4ff4af7fd90", + "id": "9a15ef9c-a84a-49a6-816c-5c1c59c172dc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159937,7 +165951,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"/fields/0\",\n \"value\": {\n \"name\": \"email\",\n \"transform\": {\n \"type\": \"identityAttribute\",\n \"attributes\": {\n \"name\": \"email\"\n }\n },\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -159954,7 +165968,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -159965,7 +165979,7 @@ } }, { - "id": "cd8ffbb6-f8b1-4952-87de-fb45190bd129", + "id": "891057e9-4cfe-45ab-8af6-dd76119b7ff6", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -159987,7 +166001,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -159997,7 +166011,7 @@ }, { "type": "any", - "value": "DISABLE", + "value": "CREATE", "key": "usageType", "disabled": true, "description": { @@ -160018,7 +166032,7 @@ }, "response": [ { - "id": "217197a5-7e93-4bcb-b05a-9893949b63a7", + "id": "a57d8096-a384-4ecf-87b4-01e1c74f8d5d", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -160054,7 +166068,7 @@ "_postman_previewlanguage": "text" }, { - "id": "00846201-a738-42db-a696-c95754f30d4a", + "id": "5ba88546-562d-4df9-9575-fd6232731518", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160095,12 +166109,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b0172fd7-5e09-460e-96e9-2bb6a6bb9556", + "id": "aefc2f8f-fd7a-4611-a764-579dea8402b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160141,12 +166155,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1f19ee56-5602-4e6d-a58d-77c32f9a4265", + "id": "e12f943e-24fe-4e0f-b9c5-bdedb5759f05", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160187,12 +166201,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fdfd013f-69d4-4a44-8346-45e79bc6eb18", + "id": "b6cd6d4b-3526-4b48-b8e8-e2e3d6dc2386", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160233,12 +166247,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8b80a8fd-e3f1-413e-88eb-0aa52c9900d8", + "id": "5bce0f57-c45b-4839-8369-527876415c62", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160279,12 +166293,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15005e57-b6c1-4437-ab5f-77e8b19ddfb7", + "id": "1babb24e-e114-4fc9-ad50-19f0824a6d82", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160325,7 +166339,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -160336,7 +166350,7 @@ } }, { - "id": "5f09adec-dd92-44a8-9ca9-6a6eb9f4fabb", + "id": "957e3c9b-d153-4a5d-8e2e-3e1941000662", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -160358,7 +166372,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -160381,7 +166395,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UPDATE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160392,7 +166406,7 @@ }, "response": [ { - "id": "72382f16-02e9-4555-a1a8-3d27abd993a2", + "id": "6ef99fe1-42fb-470d-ad21-9eb6850a8f36", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -160429,7 +166443,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UPDATE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160446,12 +166460,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UPDATE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "body": "[\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "193c381e-8c78-4eae-83ce-b0268d886acd", + "id": "a4d4fe28-99e4-4fba-816d-43ee2f9ed57b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160488,7 +166502,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UPDATE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160505,12 +166519,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "eaecaab1-50d4-411b-bc46-323b9224b894", + "id": "a61cda0c-0f9c-40c7-b373-7281c883d08c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160547,7 +166561,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UPDATE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160564,12 +166578,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "029a37b8-eccf-4aef-8819-556f52bbc3fb", + "id": "b819a04a-4b00-4149-9b68-dc867feba963", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160606,7 +166620,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UPDATE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160623,12 +166637,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f6f6ccb8-f422-41da-a32b-a77b7a9fc9c2", + "id": "f02d90dd-833a-4a6c-ad81-cfab255cb533", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160665,7 +166679,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UPDATE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160682,12 +166696,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9a84f0fb-351a-4292-995b-9a646195b44c", + "id": "78dd72f1-11fb-452b-afde-fa383d85ec6f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160724,7 +166738,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UPDATE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160741,12 +166755,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dcf7a04c-d428-47f7-b5fe-a41ff971d70e", + "id": "c3762685-a895-4ad7-88a9-7154af748768", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160783,7 +166797,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UPDATE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE_GROUP\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"example provisioning policy for inactive identities\",\n \"description\": \"this provisioning policy creates access based on an identity going inactive\",\n \"usageType\": \"CREATE\",\n \"fields\": [\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"userName\",\n \"transform\": {\n \"type\": \"rule\",\n \"attributes\": {\n \"name\": \"Create Unique LDAP Attribute\"\n }\n },\n \"attributes\": {\n \"template\": \"${firstname}.${lastname}${uniqueCounter}\",\n \"cloudMaxUniqueChecks\": \"50\",\n \"cloudMaxSize\": \"20\",\n \"cloudRequired\": \"true\"\n },\n \"isRequired\": false,\n \"type\": \"string\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160800,7 +166814,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -160811,7 +166825,7 @@ } }, { - "id": "33936458-8ad2-474d-9e0a-e7b431afde33", + "id": "e866f39d-b654-4982-8be5-b8c602c5a241", "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.", @@ -160833,13 +166847,13 @@ "type": "text/plain" }, "key": "include-types", - "value": "" + "value": "group" } ], "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -160860,7 +166874,7 @@ }, "response": [ { - "id": "4ffe4f88-5ca0-457b-88e3-cca9637ed2e9", + "id": "97a5d22a-4825-4255-b897-85e9bf8d208c", "name": "The Schemas were successfully retrieved.", "originalRequest": { "url": { @@ -160880,7 +166894,7 @@ "type": "text/plain" }, "key": "include-types", - "value": "" + "value": "group" } ], "variable": [] @@ -160910,12 +166924,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PROXY\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"BOOLEAN\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_DIRECT_PERMISSIONS_PROVISIONING\",\n \"SHAREPOINT_TARGET\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"BOOLEAN\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n },\n {\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a9247f1b-42e9-488d-a1d1-ee1b5ff6748d", + "id": "36c4cbc3-56e1-470e-9152-e31c462d23e1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160935,7 +166949,7 @@ "type": "text/plain" }, "key": "include-types", - "value": "" + "value": "group" } ], "variable": [] @@ -160965,12 +166979,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e706b182-bedc-4d8b-8edf-324787042d60", + "id": "e1f4c3c4-ec70-4f98-b046-74f7ea889bc9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160990,7 +167004,7 @@ "type": "text/plain" }, "key": "include-types", - "value": "" + "value": "group" } ], "variable": [] @@ -161020,12 +167034,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "725a99b9-c63d-4d58-89c5-119cedaf3d0a", + "id": "7c57ddc4-3b44-4513-a359-185c2fb5e960", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161045,7 +167059,7 @@ "type": "text/plain" }, "key": "include-types", - "value": "" + "value": "group" } ], "variable": [] @@ -161075,12 +167089,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3a473a2f-5338-457f-aefa-0064ee53f3a1", + "id": "e492456a-48f5-4677-9f28-9d00b9c9ca04", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161100,7 +167114,7 @@ "type": "text/plain" }, "key": "include-types", - "value": "" + "value": "group" } ], "variable": [] @@ -161130,12 +167144,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1db64671-de4f-407a-aa58-51408264da07", + "id": "55217c0a-a7fe-4774-bac3-20ee0445f46e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161155,7 +167169,7 @@ "type": "text/plain" }, "key": "include-types", - "value": "" + "value": "group" } ], "variable": [] @@ -161185,7 +167199,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -161196,7 +167210,7 @@ } }, { - "id": "298da112-607a-428f-bfe9-7c2cd40992ee", + "id": "1ff1497c-f826-416b-a960-d7b8237fdc7d", "name": "Creates a new Schema on the specified Source in IdentityNow.", "request": { "name": "Creates a new Schema on the specified Source in IdentityNow.", @@ -161214,7 +167228,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -161237,7 +167251,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -161248,7 +167262,7 @@ }, "response": [ { - "id": "7fef1ed1-f9a0-453d-9240-9e30faae047b", + "id": "b74111a6-8e47-4923-8b7a-8b43196879df", "name": "The Schema was successfully created on the specified Source.", "originalRequest": { "url": { @@ -161284,7 +167298,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -161301,12 +167315,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a4c2c392-906a-49a3-819d-8018d2021604", + "id": "e484efec-a635-417a-8e2f-f9e1d716a38a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161342,7 +167356,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -161359,12 +167373,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3e3f6061-2850-49a7-a9bb-3b838568a66a", + "id": "5f4fc0ac-ece4-47fc-be48-314e840bf918", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161400,7 +167414,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -161417,12 +167431,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d8e8f61a-c50f-4da7-9888-a0d927a0d171", + "id": "f2736aa3-633d-49fd-9a9c-a5d18d51130c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161458,7 +167472,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -161475,12 +167489,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b6acd8b0-5326-492d-8a15-9741fc49e313", + "id": "cba18a55-7573-45f1-84ba-fea7ca469a88", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161516,7 +167530,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -161533,12 +167547,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "08d11ea1-8eec-488e-846d-8b8e8291dfd8", + "id": "21773148-2bbc-4af7-9670-a962311e609e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161574,7 +167588,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -161591,7 +167605,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -161602,7 +167616,7 @@ } }, { - "id": "13eab2be-09ff-4129-8b19-be31f4147f2d", + "id": "9fd48a46-7302-42ed-b62f-5dac26da4f72", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -161624,7 +167638,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -161634,7 +167648,7 @@ }, { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "schemaId", "disabled": true, "description": { @@ -161655,7 +167669,7 @@ }, "response": [ { - "id": "dced876a-7ad2-4a91-a136-a739b4106c57", + "id": "00838cd4-9ab4-483f-ab9c-d80497a3aa21", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -161696,12 +167710,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3651f0db-6ce8-44b9-833a-bdf16d51b70b", + "id": "4849f9d4-45b0-4443-a3ee-b9aea5f1294a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161742,12 +167756,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1140549c-b3c7-403a-9ce8-7afc2665238f", + "id": "e6629915-7626-4d82-948c-15447e1bc963", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161788,12 +167802,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b890b33-6a7f-4ef4-9ba5-9969b9338143", + "id": "ed9d0df0-ee33-4f3a-afd8-382d89410bc1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161834,12 +167848,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0a3be5f4-be80-4d0d-a2bb-3bd8b184438e", + "id": "38337264-e746-4335-8117-a4052e3f527d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161880,12 +167894,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "82b00315-3eb6-4a6c-a67c-4411d6f122a6", + "id": "ce2287e9-4966-4961-ae0c-c51b9a09eaeb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161926,12 +167940,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6659781e-e7e9-4cc6-9b2e-2ac35e73808c", + "id": "940e6376-fdc0-47ac-af7e-500960f1d7a1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161972,7 +167986,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -161983,7 +167997,7 @@ } }, { - "id": "c6fbd737-d205-4dec-b1cb-611d7ebdc417", + "id": "35e1d21a-0598-4958-8eab-3ee32271c3ca", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -162005,7 +168019,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -162015,7 +168029,7 @@ }, { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "schemaId", "disabled": true, "description": { @@ -162038,7 +168052,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -162049,7 +168063,7 @@ }, "response": [ { - "id": "4e7306c9-dac7-4a7b-b4d8-5aae290eecc4", + "id": "266473e5-6619-4697-a8f1-a1b128e0a5c4", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -162086,7 +168100,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -162103,12 +168117,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7c3a82b9-52a3-431c-a4b8-8798a7f7dd76", + "id": "288de0df-802d-4d38-997a-5552c6bacb5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162145,7 +168159,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -162162,12 +168176,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5d22261a-b522-48ac-9fee-147a3dd23ab2", + "id": "d114ad73-be71-4434-90d9-6e192874a4f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162204,7 +168218,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -162221,12 +168235,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "047e8597-13f4-4b44-a0d9-d038a3df8189", + "id": "93e48b19-903c-40fe-a242-a31bfb0c0792", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162263,7 +168277,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -162280,12 +168294,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "05fce243-5722-4bcb-97bb-616e9aa09fe0", + "id": "1481504b-a51d-43f5-bd31-6895988a8d48", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -162322,7 +168336,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -162339,12 +168353,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d22caa3b-2f75-462d-8088-9d4df3825e4a", + "id": "a0fdef8e-f882-4a95-98c7-7bd1895a5256", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162381,7 +168395,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -162398,12 +168412,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1bb96d11-183c-4a3f-a81e-9030a69e2a9f", + "id": "aed6ba10-695b-4868-9873-888be0709dc0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162440,7 +168454,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -162457,7 +168471,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -162468,7 +168482,7 @@ } }, { - "id": "56b51428-1607-4f2e-b92d-49194fd40d76", + "id": "ac333791-15db-4ae9-83cc-0d07fb74f327", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -162490,7 +168504,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -162500,7 +168514,7 @@ }, { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "schemaId", "disabled": true, "description": { @@ -162523,7 +168537,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/displayAttribute\",\n \"value\": {\n \"new-display-attribute\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -162534,7 +168548,7 @@ }, "response": [ { - "id": "47c3ffee-d9b4-4da3-96f2-0c755a26d8a4", + "id": "36446654-e069-4bd6-8a95-bce0739da564", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -162571,7 +168585,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/displayAttribute\",\n \"value\": {\n \"new-display-attribute\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -162588,12 +168602,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7d28f65b-44da-4fe3-aad9-1595736e2ef6", + "id": "066443df-283a-4ccd-895b-c16a49cdac59", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162630,7 +168644,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/displayAttribute\",\n \"value\": {\n \"new-display-attribute\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -162647,12 +168661,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b81186e8-8065-4968-b53f-91337946d1d9", + "id": "93c9bb92-6489-497d-98c9-99aa76eb8268", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162689,7 +168703,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/displayAttribute\",\n \"value\": {\n \"new-display-attribute\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -162706,12 +168720,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eb359c25-0616-4296-a54e-2bacba760728", + "id": "2e0acc8f-5ab2-45e0-b82e-503ae5875707", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162748,7 +168762,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/displayAttribute\",\n \"value\": {\n \"new-display-attribute\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -162765,12 +168779,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f84f174a-0318-4a42-a8b2-1099da28e475", + "id": "e1e50693-f697-4386-b1d3-23254bf46154", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -162807,7 +168821,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/displayAttribute\",\n \"value\": {\n \"new-display-attribute\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -162824,12 +168838,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9ce08389-66d5-4e20-872d-e8c831d7173d", + "id": "19d649a2-b3ea-497e-99f4-bacb1cc2cbe5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162866,7 +168880,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/displayAttribute\",\n \"value\": {\n \"new-display-attribute\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -162883,12 +168897,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "adef4d46-a3e4-4b78-9a97-750b7e48a25d", + "id": "e9711048-cea0-44ff-b011-f94f84777ed2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162925,7 +168939,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/displayAttribute\",\n \"value\": {\n \"new-display-attribute\": null\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -162942,7 +168956,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -162953,7 +168967,7 @@ } }, { - "id": "3605d27b-3263-4706-840c-9c0d34e397e6", + "id": "3312071e-7ac0-41fe-9226-9ff878af1f7f", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -162972,7 +168986,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "sourceId", "disabled": true, "description": { @@ -162982,7 +168996,7 @@ }, { "type": "any", - "value": "", + "value": "2c9180835d191a86015d28455b4a2329", "key": "schemaId", "disabled": true, "description": { @@ -163003,7 +169017,7 @@ }, "response": [ { - "id": "3d00a062-ef2b-4b1c-be66-a396e744a6d6", + "id": "c8387c4b-d22b-478b-887c-0fe6ea26384f", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -163039,7 +169053,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c487f1f9-9253-4361-b451-04cad9cff6b7", + "id": "00c0e5e9-1fe3-437e-bcce-796edf2d9d6c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163080,12 +169094,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a2ab208a-9cb6-4d47-ba99-4330845d3f4d", + "id": "33a77bb8-0460-4533-a7e4-594ea15e635c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163126,12 +169140,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7219b611-f530-40f4-a8ec-21e6549ab7b0", + "id": "5fc5a0a5-6875-4100-8692-4aa7ed4ce5a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163172,12 +169186,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8812e9bb-00ea-4c17-837c-117309fd6eb0", + "id": "6fe671b8-c0ee-4426-89e6-0ad2bd54a6f7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163218,12 +169232,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8342037e-b9ad-4736-9aa4-e25a080d32ef", + "id": "cbf98da3-c061-4ae2-8426-ad20dab1f202", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163264,12 +169278,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d8fd5894-5af1-4c9e-abb3-5a40eaa973b2", + "id": "3c4d2769-bd94-4459-b375-f237101e6259", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163310,7 +169324,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -163321,7 +169335,7 @@ } }, { - "id": "d3031ba7-7f06-4acd-9743-2d2491a642f3", + "id": "7aaf9990-09df-4f16-8369-1a92a883058c", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -163340,7 +169354,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -163361,7 +169375,7 @@ }, "response": [ { - "id": "b369f266-93d2-4851-8d74-ab82aef0955f", + "id": "54bce15d-01ff-4f18-bd73-00dc66c8c04f", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -163402,12 +169416,12 @@ "value": "text/csv" } ], - "body": "{\n \"example\": \"id,name,givenName,familyName,e-mail,location,manager,groups,startDate,endDate\"\n}", + "body": "id,name,givenName,familyName,e-mail,location,manager,groups,startDate,endDate", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "bdc25c31-88eb-4985-80ed-21a629dd0f30", + "id": "9b785765-7591-4f8e-95ff-16902df4b9f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163448,12 +169462,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fa877d3c-ab41-406e-9e8d-c87ab8134f74", + "id": "d46957b3-f664-4a5e-a237-e9304979bf85", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163494,12 +169508,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f627b892-2962-43d0-b4ab-fecdb0a01f53", + "id": "f9f3a61d-8920-42f9-b27d-fb97d3d3757c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163540,12 +169554,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "65aa7809-0bc6-451b-9450-7cca538ec0db", + "id": "a7aed507-9f6e-4866-97e9-6d52b534f1d8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163586,12 +169600,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8b91db7d-8b46-430c-8873-cc1cbcd0d3f1", + "id": "a668094c-2379-4dc5-a9ca-2ab4b212d06a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163632,12 +169646,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d2139931-277b-48d1-978c-cf999f11c390", + "id": "04f4c80c-7c5c-4b46-9e04-9420b3c6783a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163678,7 +169692,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -163689,7 +169703,7 @@ } }, { - "id": "be07ab0e-d093-47b8-adb6-4e80cf5b1722", + "id": "ea0597f9-b4aa-437c-9bc4-84e91e2d1072", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -163711,7 +169725,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -163741,7 +169755,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -163749,7 +169763,7 @@ }, "response": [ { - "id": "f9d45254-b659-4578-9adc-456305e92a92", + "id": "8202d39b-89e7-42d7-9c0e-a088bf370fad", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -163793,7 +169807,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -163807,12 +169821,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d0ec0d68-42b2-4c35-a526-80455fbc473d", + "id": "e97abd9d-2427-48fe-805a-780c9d0a27d7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163856,7 +169870,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -163870,12 +169884,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e310ec96-9f7d-4bed-8cfd-f9a97127cd3e", + "id": "571d8a72-ab93-48fe-8dc9-31a5349d8a6f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163919,7 +169933,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -163933,12 +169947,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c396bb9f-6998-4956-896a-99c9351b07bc", + "id": "4509b967-c462-45c3-8ca6-ae8454f27576", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163982,7 +169996,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -163996,12 +170010,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "92027e63-7f89-4ceb-b24c-da927f56ee81", + "id": "5ebbd797-1f53-41b0-bd0c-34fd457c37df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164045,7 +170059,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -164059,12 +170073,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "86ddbe77-0beb-404b-a6ea-6d23b1daaca0", + "id": "16781cc3-d887-4ca5-8a7a-289aee8b7581", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164108,7 +170122,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -164122,7 +170136,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -164133,7 +170147,7 @@ } }, { - "id": "2ca0919a-bd89-45aa-9fbb-f2fb59b9308e", + "id": "c33a2c9e-606b-4d0d-afd1-4d38454cf1bf", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -164156,13 +170170,13 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -164183,7 +170197,7 @@ }, "response": [ { - "id": "66d2796e-5cfc-4c1d-bd24-4c0131c9d93a", + "id": "15309d3f-a6e8-497a-ad8c-9a788e16e613", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -164204,7 +170218,7 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [] @@ -164234,12 +170248,12 @@ "value": "text/csv" } ], - "body": "{\n \"example\": \"id,name,displayName,created,description,modified,entitlements,groups,permissions\"\n}", + "body": "id,name,displayName,created,description,modified,entitlements,groups,permissions", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "bf0fdeac-9657-40ae-8a8f-37881b7f06c2", + "id": "417e9fde-a50c-4964-909f-9713608693f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164260,7 +170274,7 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [] @@ -164290,12 +170304,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ec0cb346-b7ce-4fbe-b10e-e4cc986c983a", + "id": "3f658bbc-ca38-410b-b31d-13767514378d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164316,7 +170330,7 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [] @@ -164346,12 +170360,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f5c9674e-0b25-4cae-a372-a2241b0acf9d", + "id": "188013c4-e7f7-4399-bf17-8bed2b9fdf07", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164372,7 +170386,7 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [] @@ -164402,12 +170416,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b412c287-f40a-4261-a15b-def46eed8b93", + "id": "cf949882-cbd0-46a6-b47d-edeead164fbd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164428,7 +170442,7 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [] @@ -164458,12 +170472,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9eb5016a-6f9e-487f-ac6c-6766759bee4c", + "id": "12a75b1e-26a8-471a-86d6-3a28707432c8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164484,7 +170498,7 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [] @@ -164514,12 +170528,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6bcfce24-c11d-4d88-9d5f-298e9727a578", + "id": "98e94f08-0afe-4e8b-8fa7-2cbe138ec236", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164540,7 +170554,7 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [] @@ -164570,7 +170584,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -164581,7 +170595,7 @@ } }, { - "id": "6b7469bb-9862-467b-8fbe-2a528af1e0e3", + "id": "b1de724a-e628-424e-9f45-c05670c58fda", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -164607,13 +170621,13 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "id", "disabled": true, "description": { @@ -164643,7 +170657,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -164651,7 +170665,7 @@ }, "response": [ { - "id": "f01d72a6-69a2-42c5-97f4-9f548baf03ba", + "id": "ca333d11-f638-4fe9-aa08-f5c240930158", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -164672,7 +170686,7 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [] @@ -164705,7 +170719,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -164719,12 +170733,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_RANDOM_ACCESS\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"id\": \"2c9180835d191a86015d28455b4a2329\",\n \"name\": \"account\",\n \"nativeObjectType\": \"User\",\n \"identityAttribute\": \"sAMAccountName\",\n \"displayAttribute\": \"distinguishedName\",\n \"hierarchyAttribute\": \"memberOf\",\n \"includePermissions\": false,\n \"features\": [\n \"PROVISIONING\",\n \"NO_PERMISSIONS_PROVISIONING\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"configuration\": {\n \"groupMemberAttribute\": \"member\"\n },\n \"attributes\": [\n {\n \"name\": \"sAMAccountName\",\n \"type\": \"STRING\",\n \"isMultiValued\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"memberOf\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n },\n \"description\": \"Group membership\",\n \"isMultiValued\": true,\n \"isEntitlement\": true,\n \"isGroup\": true\n }\n ],\n \"created\": \"2019-12-24T22:32:58.104Z\",\n \"modified\": \"2019-12-31T20:22:28.104Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8e51c6ca-4eca-45bd-ae74-ed7825b6ac6c", + "id": "9b3c4748-de5f-4e5f-962e-d733e7061760", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164745,7 +170759,7 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [] @@ -164778,7 +170792,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -164792,12 +170806,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ed35772d-a77b-4a62-8f19-220f08634ee0", + "id": "acb3e6c9-0154-4aa5-a32b-03dbdb7c6f4c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164818,7 +170832,7 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [] @@ -164851,7 +170865,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -164865,12 +170879,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2bb33aa2-22eb-438e-bc1f-b53211b946ad", + "id": "1d2309a0-d8cc-44b7-8dda-806c14f45eff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164891,7 +170905,7 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [] @@ -164924,7 +170938,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -164938,12 +170952,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f3e164f2-fbb3-495f-b718-ec70c95d71b9", + "id": "a6654c31-759c-403f-8415-87b81c155a95", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164964,7 +170978,7 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [] @@ -164997,7 +171011,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -165011,12 +171025,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4154b992-fa6b-43b6-bdd2-33eacc24a489", + "id": "e07561f8-247d-4881-b6f0-351e172d6e13", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165037,7 +171051,7 @@ "type": "text/plain" }, "key": "schemaName", - "value": "" + "value": "?schemaName=group" } ], "variable": [] @@ -165070,7 +171084,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -165084,7 +171098,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -165095,7 +171109,7 @@ } }, { - "id": "99844d3b-17c2-4a8a-9a0d-77cc0eb9eb9c", + "id": "5fe7af68-d722-4536-a569-3a527b3167d1", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -165116,7 +171130,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "8c190e6787aa4ed9a90bd9d5344523fb", "key": "sourceId", "disabled": true, "description": { @@ -165146,7 +171160,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -165154,7 +171168,7 @@ }, "response": [ { - "id": "56e03dfb-dbf8-4194-b2a3-5f59cbefd601", + "id": "9c1477ea-e8db-451f-b5e1-c95db6e97e88", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -165197,7 +171211,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -165211,12 +171225,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"PASSWORD\",\n \"PASSWORD\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"name\": \"My Source\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"MyName\"\n },\n \"connector\": \"active-directory\",\n \"id\": \"2c91808568c529c60168cca6f90c1324\",\n \"description\": \"This is the corporate directory.\",\n \"cluster\": {\n \"name\": \"Corporate Cluster\",\n \"id\": \"2c9180866166b5b0016167c32ef31a66\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"2c9180855d191c59015d28583727245a\",\n \"name\": \"Directory [source-62867] Account Correlation\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"manager\",\n \"identityAttribute\": \"manager\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"2c918085708c274401708c2a8a760001\",\n \"name\": \"Example Rule\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"account\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"name\": \"group\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Corporate Password Policy\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"name\": \"Vendor Password Policy\"\n }\n ],\n \"features\": [\n \"SYNC_PROVISIONING\",\n \"MANAGER_LOOKUP\",\n \"SEARCH\",\n \"PROVISIONING\",\n \"AUTHENTICATE\",\n \"GROUP_PROVISIONING\",\n \"PASSWORD\"\n ],\n \"type\": \"OpenLDAP - Direct\",\n \"connectorClass\": \"sailpoint.connector.LDAPConnector\",\n \"connectorAttributes\": {\n \"healthCheckTimeout\": 30,\n \"authSearchAttributes\": [\n \"cn\",\n \"uid\",\n \"mail\"\n ]\n },\n \"deleteThreshold\": 10,\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"2c91808568c529c60168cca6f90c2222\",\n \"name\": \"My Management Workgroup\"\n },\n \"healthy\": true,\n \"status\": \"SOURCE_STATE_HEALTHY\",\n \"since\": \"2021-09-28T15:48:29.3801666300Z\",\n \"connectorId\": \"active-directory\",\n \"connectorName\": \"Active Directory\",\n \"connectionType\": \"file\",\n \"connectorImplementationId\": \"delimited-file\",\n \"created\": \"2022-02-08T14:50:03.827Z\",\n \"modified\": \"2024-01-23T18:08:50.897Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a408ce06-bbe3-4f3a-b635-6865083936f4", + "id": "3c81d689-6c16-46d5-9d92-7715ce5f50f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165259,7 +171273,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -165273,12 +171287,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "252527cb-4334-43d8-b861-b1dc4bf47f14", + "id": "069362be-43f1-40f9-b2f5-51778b740a84", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165321,7 +171335,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -165335,12 +171349,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d318853e-6e30-4189-b5dd-3b0ba85f0862", + "id": "24cec3d7-658e-4265-80bf-bc4a0583f262", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165383,7 +171397,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -165397,12 +171411,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3a17e672-81ee-47f1-9c77-d482a43001c1", + "id": "463d4daa-3aca-4446-970e-03c29b6c91c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165445,7 +171459,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -165459,12 +171473,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c7d4614d-7475-40df-9d14-5725a41e0145", + "id": "3cca0009-407a-47dc-9cc0-f8d7f5220528", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165507,7 +171521,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "dolor mollit labore", "type": "text" } ] @@ -165521,7 +171535,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -165532,7 +171546,7 @@ } }, { - "id": "951649c3-dd6d-414e-bdfa-32fcd04b03d1", + "id": "f2cffbec-a341-4a66-ac58-9a5adf15bffb", "name": "Synchronize single source attributes.", "request": { "name": "Synchronize single source attributes.", @@ -165553,7 +171567,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "velit aliquip", "key": "id", "disabled": true, "description": { @@ -165574,7 +171588,7 @@ }, "response": [ { - "id": "193793c1-2411-430e-801e-e0121135356f", + "id": "47985990-0b28-4b2d-b196-791a41c250a4", "name": "A Source Sync job", "originalRequest": { "url": { @@ -165614,12 +171628,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"status\": \"ERROR\",\n \"payload\": {\n \"type\": \"\",\n \"dataJson\": \"\"\n }\n}", + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"status\": \"IN_PROGRESS\",\n \"payload\": {\n \"type\": \"SYNCHRONIZE_SOURCE_ATTRIBUTES\",\n \"dataJson\": \"{\\\"sourceId\\\":\\\"2c918083746f642c01746f990884012a\\\"}\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "213de7ac-efe1-4ab4-bf6f-acb6050555b0", + "id": "60e7b6ab-76c0-4e85-9009-c3fd26b8d9e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165659,12 +171673,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5478192e-606c-436e-ab77-09c4b0a76a16", + "id": "dc2a1061-4bb4-4c06-8de2-197bcb41374a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165704,12 +171718,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6bb445a9-db4e-4475-947b-389f3cab281b", + "id": "a020f5bb-a8a7-4292-b006-f2d1c90e701f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165749,12 +171763,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0ef1d888-cffc-4559-9ceb-815ca9692b81", + "id": "7580ac2b-bdb7-42c7-af0e-632e504f024b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165794,12 +171808,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1c1d87f4-da2c-4428-87b3-f986091597e7", + "id": "42f7734c-d52d-48dc-80e1-0b5bcdf51295", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165839,12 +171853,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "da282f7b-d392-44f2-b001-24b078ed4ab0", + "id": "d44b3e07-4108-4c0a-8482-747108ded720", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165884,7 +171898,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -165895,7 +171909,7 @@ } }, { - "id": "362e491f-e01d-4107-8999-eb771787e47b", + "id": "cecc9d14-cd0d-4d40-86d2-1fe7a49c6892", "name": "Get Source Entitlement Request Configuration", "request": { "name": "Get Source Entitlement Request Configuration", @@ -165931,8 +171945,8 @@ }, "response": [ { - "id": "dd01fbe0-cf63-4125-beca-a4b2e85e551d", - "name": "Source Entitlement Request Configuration Details.", + "id": "0eec8034-bf96-4593-844f-bbed2e0fec2d", + "name": "Get default config", "originalRequest": { "url": { "path": [ @@ -165971,12 +171985,102 @@ "value": "application/json" } ], - "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "84f1b8fd-e96a-422a-bdc2-4320e7a0e158", + "id": "92eb8127-ea81-425b-8993-72cfeb198a09", + "name": "Get config with one approval", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id", + "entitlement-request-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverId\": null,\n \"approverType\": \"SOURCE_OWNER\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "5b204faa-df66-4d19-ba13-9ff1ca1fbc02", + "name": "Get config with multiple approvals", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id", + "entitlement-request-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverId\": null,\n \"approverType\": \"ENTITLEMENT_OWNER\"\n },\n {\n \"approverId\": null,\n \"approverType\": \"SOURCE_OWNER\"\n },\n {\n \"approverId\": \"95e538a3-30c1-433a-af05-4bed973bbc22\",\n \"approverType\": \"GOVERNANCE_GROUP\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "c0911a30-a38a-4e4d-ace6-727de2eb1d6e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166016,12 +172120,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1f34e584-93f2-4c3f-81d7-3ce4a6de3f26", + "id": "dfe54f5c-9f0a-42b4-89c9-37d5ca9c5ce1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166061,12 +172165,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "772d1720-3626-4f8c-8836-b1ea239f4001", + "id": "7580fa2e-9e53-4576-86ec-08f700b131f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166106,12 +172210,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f1398642-7a66-4385-9d69-d0a73b124911", + "id": "914b3044-3a11-4824-b45b-9a4439c6fd77", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166151,12 +172255,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ae9beeb6-9ff7-4d70-91a2-b0f78d050ecb", + "id": "3cc100ef-6f16-4ad7-8ad3-573536a41bce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166196,7 +172300,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -166207,7 +172311,7 @@ } }, { - "id": "5b1bf8a9-4851-459d-9372-154929d520c3", + "id": "cc70ff1f-ca28-4d52-ac82-cd38463f0796", "name": "Update Source Entitlement Request Configuration", "request": { "name": "Update Source Entitlement Request Configuration", @@ -166245,7 +172349,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": []\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166256,8 +172360,8 @@ }, "response": [ { - "id": "f40cc7cf-7e43-4b1d-a2e8-b8d0fe89fd7c", - "name": "Source Entitlement Request Configuration Details.", + "id": "feacb05f-f6a7-4733-b273-d94e00aa986a", + "name": "Set config with no approvals", "originalRequest": { "url": { "path": [ @@ -166292,7 +172396,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": []\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166309,13 +172413,13 @@ "value": "application/json" } ], - "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "65a32593-91f7-4124-956d-e6e903ef26db", - "name": "Client Error - Returned if the request body is invalid.", + "id": "03642078-06ee-465c-b139-7a0eac0607dc", + "name": "Set config with one approval", "originalRequest": { "url": { "path": [ @@ -166350,7 +172454,123 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1fba68b8-a260-4fb1-bd36-d06e5a43dba4", + "name": "Set config with multiple approvals", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id", + "entitlement-request-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"95e538a3-30c1-433a-af05-4bed973bbc22\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"e3eab852-8315-467f-9de7-70eda97f63c8\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "d2dc6f32-f275-4019-9323-733f89d91b6d", + "name": "Set config with one approval", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id", + "entitlement-request-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166367,13 +172587,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8dd9856b-27bc-4244-a6c4-84815736c2d6", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "b62e4ab9-a772-4bd4-90d9-40282e843a33", + "name": "Set config with multiple approvals", "originalRequest": { "url": { "path": [ @@ -166408,7 +172628,65 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"95e538a3-30c1-433a-af05-4bed973bbc22\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "db6f571c-8efc-408f-9d15-3599c443a038", + "name": "Set config with multiple approvals", + "originalRequest": { + "url": { + "path": [ + "sources", + ":id", + "entitlement-request-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"95e538a3-30c1-433a-af05-4bed973bbc22\"\n }\n ],\n \"requestCommentRequired\": true,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166425,13 +172703,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f7a86636-e070-4a2f-a76b-07df372b8f72", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "15d371bc-882b-4d9e-9c45-148b68b296d8", + "name": "An example of a 403 response object", "originalRequest": { "url": { "path": [ @@ -166466,7 +172744,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": []\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166483,13 +172761,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6a45217c-e2a4-4172-afb8-7c4cdc627350", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "860984c8-9d32-4517-b0dc-db97676df26c", + "name": "Set config with no approvals", "originalRequest": { "url": { "path": [ @@ -166524,7 +172802,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": []\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166541,13 +172819,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a62b070b-87a1-4863-853e-7a9bde352323", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "7c547b8e-6b7c-42c5-a646-38ea8c23568c", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -166582,7 +172860,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": []\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166599,7 +172877,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -166616,7 +172894,7 @@ "description": "Import and export configuration for some objects between tenants.", "item": [ { - "id": "c67d2991-c009-4a9b-9e9e-5769437e8c85", + "id": "f260bc1c-f415-4ed3-ae47-86f6d754251d", "name": "Initiates configuration objects export job", "request": { "name": "Initiates configuration objects export job", @@ -166648,7 +172926,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"laboris minim pr\",\n \"excludeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_REQUEST_CONFIG\"\n ],\n \"includeTypes\": [\n \"PASSWORD_POLICY\",\n \"FORM_DEFINITION\"\n ],\n \"objectOptions\": {\n \"magna16\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"consectetur_5db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Export all available objects\",\n \"excludeTypes\": [],\n \"includeTypes\": [\n \"ACCESS_PROFILE\",\n \"ACCESS_REQUEST_CONFIG\",\n \"ATTR_SYNC_SOURCE_CONFIG\",\n \"AUTH_ORG\",\n \"CAMPAIGN_FILTER\",\n \"FORM_DEFINITION\",\n \"GOVERNANCE_GROUP\",\n \"IDENTITY_OBJECT_CONFIG\",\n \"IDENTITY_PROFILE\",\n \"LIFECYCLE_STATE\",\n \"NOTIFICATION_TEMPLATE\",\n \"PASSWORD_POLICY\",\n \"PASSWORD_SYNC_GROUP\",\n \"PUBLIC_IDENTITIES_CONFIG\",\n \"ROLE\",\n \"RULE\",\n \"SEGMENT\",\n \"SERVICE_DESK_INTEGRATION\",\n \"SOD_POLICY\",\n \"SOURCE\",\n \"TAG\",\n \"TRANSFORM\",\n \"TRIGGER_SUBSCRIPTION\",\n \"WORKFLOW\"\n ],\n \"objectOptions\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -166659,8 +172937,8 @@ }, "response": [ { - "id": "f8d8996c-c86c-41f0-a0c3-36a0171813f1", - "name": "Export job accepted and queued for processing.", + "id": "18047da8-0685-4e04-859d-53792b9cd8db", + "name": "Export all objects available", "originalRequest": { "url": { "path": [ @@ -166694,7 +172972,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"laboris minim pr\",\n \"excludeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_REQUEST_CONFIG\"\n ],\n \"includeTypes\": [\n \"PASSWORD_POLICY\",\n \"FORM_DEFINITION\"\n ],\n \"objectOptions\": {\n \"magna16\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"consectetur_5db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Export all available objects\",\n \"excludeTypes\": [],\n \"includeTypes\": [\n \"ACCESS_PROFILE\",\n \"ACCESS_REQUEST_CONFIG\",\n \"ATTR_SYNC_SOURCE_CONFIG\",\n \"AUTH_ORG\",\n \"CAMPAIGN_FILTER\",\n \"FORM_DEFINITION\",\n \"GOVERNANCE_GROUP\",\n \"IDENTITY_OBJECT_CONFIG\",\n \"IDENTITY_PROFILE\",\n \"LIFECYCLE_STATE\",\n \"NOTIFICATION_TEMPLATE\",\n \"PASSWORD_POLICY\",\n \"PASSWORD_SYNC_GROUP\",\n \"PUBLIC_IDENTITIES_CONFIG\",\n \"ROLE\",\n \"RULE\",\n \"SEGMENT\",\n \"SERVICE_DESK_INTEGRATION\",\n \"SOD_POLICY\",\n \"SOURCE\",\n \"TAG\",\n \"TRANSFORM\",\n \"TRIGGER_SUBSCRIPTION\",\n \"WORKFLOW\"\n ],\n \"objectOptions\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -166711,13 +172989,13 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"jobId\": \"\",\n \"modified\": \"\",\n \"status\": \"NOT_STARTED\",\n \"type\": \"IMPORT\"\n}", + "body": "{\n \"created\": \"2021-05-11T22:23:16Z\",\n \"description\": \"ETS configuration objects from Acme-Solar sandbox\",\n \"expiration\": \"2021-05-11T22:23:16Z\",\n \"jobId\": \"3469b87d-48ca-439a-868f-2160001da8c1\",\n \"modified\": \"2021-05-11T22:23:16Z\",\n \"status\": \"COMPLETE\",\n \"type\": \"IMPORT\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56bb6d2c-c56e-4101-8092-7d8289c5a299", - "name": "Client Error - Returned if the request body is invalid.\n", + "id": "a3c2966a-9dd1-4761-a50f-218283205f8f", + "name": "Export sources by ID", "originalRequest": { "url": { "path": [ @@ -166751,7 +173029,178 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"laboris minim pr\",\n \"excludeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_REQUEST_CONFIG\"\n ],\n \"includeTypes\": [\n \"PASSWORD_POLICY\",\n \"FORM_DEFINITION\"\n ],\n \"objectOptions\": {\n \"magna16\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"consectetur_5db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Export sources by ID\",\n \"excludeTypes\": [],\n \"includeTypes\": [\n \"SOURCE\"\n ],\n \"objectOptions\": {\n \"SOURCE\": {\n \"includedIds\": [\n \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\",\n \"be9p119e-90e1-49pk-ac9f-fa576e96c9e4\"\n ],\n \"includedNames\": []\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Accepted", + "code": 202, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"created\": \"2021-05-11T22:23:16Z\",\n \"description\": \"ETS configuration objects from Acme-Solar sandbox\",\n \"expiration\": \"2021-05-11T22:23:16Z\",\n \"jobId\": \"3469b87d-48ca-439a-868f-2160001da8c1\",\n \"modified\": \"2021-05-11T22:23:16Z\",\n \"status\": \"COMPLETE\",\n \"type\": \"IMPORT\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "c74eacf7-3af1-4888-809b-6d2470d59bb5", + "name": "Export transforms by name", + "originalRequest": { + "url": { + "path": [ + "sp-config", + "export" + ], + "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 \"description\": \"Export transforms by name\",\n \"excludeTypes\": [],\n \"includeTypes\": [\n \"TRANSFORM\"\n ],\n \"objectOptions\": {\n \"TRANSFORM\": {\n \"includedIds\": [],\n \"includedNames\": [\n \"Remove Diacritical Marks\",\n \"Common - Location Lookup\"\n ]\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Accepted", + "code": 202, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"created\": \"2021-05-11T22:23:16Z\",\n \"description\": \"ETS configuration objects from Acme-Solar sandbox\",\n \"expiration\": \"2021-05-11T22:23:16Z\",\n \"jobId\": \"3469b87d-48ca-439a-868f-2160001da8c1\",\n \"modified\": \"2021-05-11T22:23:16Z\",\n \"status\": \"COMPLETE\",\n \"type\": \"IMPORT\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "b00fbeb0-b820-4116-82d1-ea1c84a51c13", + "name": "Export trigger subscriptions triggers and transforms with custom options", + "originalRequest": { + "url": { + "path": [ + "sp-config", + "export" + ], + "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 \"description\": \"Export trigger subscriptions and transforms with custom filter options\",\n \"excludeTypes\": [],\n \"includeTypes\": [\n \"TRANSFORM\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"TRANSFORM\": {\n \"includedIds\": [],\n \"includedNames\": [\n \"Remove Diacritical Marks\",\n \"Common - Location Lookup\"\n ]\n },\n \"TRIGGER_SUBSCRIPTION\": {\n \"includedIds\": [\n \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\",\n \"be9p119e-90e1-49pk-ac9f-fa576e96c9e4\"\n ],\n \"includedNames\": [\n \"NGROK Test: fire and forget\",\n \"Manager Certification\"\n ]\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Accepted", + "code": 202, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"created\": \"2021-05-11T22:23:16Z\",\n \"description\": \"ETS configuration objects from Acme-Solar sandbox\",\n \"expiration\": \"2021-05-11T22:23:16Z\",\n \"jobId\": \"3469b87d-48ca-439a-868f-2160001da8c1\",\n \"modified\": \"2021-05-11T22:23:16Z\",\n \"status\": \"COMPLETE\",\n \"type\": \"IMPORT\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "e33b1275-ab27-4873-896d-b4e886147664", + "name": "Export sources by ID", + "originalRequest": { + "url": { + "path": [ + "sp-config", + "export" + ], + "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 \"description\": \"Export sources by ID\",\n \"excludeTypes\": [],\n \"includeTypes\": [\n \"SOURCE\"\n ],\n \"objectOptions\": {\n \"SOURCE\": {\n \"includedIds\": [\n \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\",\n \"be9p119e-90e1-49pk-ac9f-fa576e96c9e4\"\n ],\n \"includedNames\": []\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166768,13 +173217,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c6d6d9e0-2507-41da-a3a4-fc761ec044d3", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "59fa615b-e323-4e91-98e2-04d80cdeba91", + "name": "Export transforms by name", "originalRequest": { "url": { "path": [ @@ -166808,7 +173257,121 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"laboris minim pr\",\n \"excludeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_REQUEST_CONFIG\"\n ],\n \"includeTypes\": [\n \"PASSWORD_POLICY\",\n \"FORM_DEFINITION\"\n ],\n \"objectOptions\": {\n \"magna16\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"consectetur_5db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Export transforms by name\",\n \"excludeTypes\": [],\n \"includeTypes\": [\n \"TRANSFORM\"\n ],\n \"objectOptions\": {\n \"TRANSFORM\": {\n \"includedIds\": [],\n \"includedNames\": [\n \"Remove Diacritical Marks\",\n \"Common - Location Lookup\"\n ]\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "7b4acb82-493d-423a-b82e-3e42eebeb209", + "name": "Export trigger subscriptions triggers and transforms with custom options", + "originalRequest": { + "url": { + "path": [ + "sp-config", + "export" + ], + "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 \"description\": \"Export trigger subscriptions and transforms with custom filter options\",\n \"excludeTypes\": [],\n \"includeTypes\": [\n \"TRANSFORM\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"TRANSFORM\": {\n \"includedIds\": [],\n \"includedNames\": [\n \"Remove Diacritical Marks\",\n \"Common - Location Lookup\"\n ]\n },\n \"TRIGGER_SUBSCRIPTION\": {\n \"includedIds\": [\n \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\",\n \"be9p119e-90e1-49pk-ac9f-fa576e96c9e4\"\n ],\n \"includedNames\": [\n \"NGROK Test: fire and forget\",\n \"Manager Certification\"\n ]\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "87e4e32b-1536-4810-8d7d-880e98edbf8b", + "name": "Export transforms by name", + "originalRequest": { + "url": { + "path": [ + "sp-config", + "export" + ], + "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 \"description\": \"Export transforms by name\",\n \"excludeTypes\": [],\n \"includeTypes\": [\n \"TRANSFORM\"\n ],\n \"objectOptions\": {\n \"TRANSFORM\": {\n \"includedIds\": [],\n \"includedNames\": [\n \"Remove Diacritical Marks\",\n \"Common - Location Lookup\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166825,13 +173388,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "62bb6fdd-7c87-4ee0-9d1c-333a6ab81105", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "144f3e07-f8fd-435e-981c-468882607c8e", + "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { "path": [ @@ -166865,7 +173428,64 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"laboris minim pr\",\n \"excludeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_REQUEST_CONFIG\"\n ],\n \"includeTypes\": [\n \"PASSWORD_POLICY\",\n \"FORM_DEFINITION\"\n ],\n \"objectOptions\": {\n \"magna16\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"consectetur_5db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Export trigger subscriptions and transforms with custom filter options\",\n \"excludeTypes\": [],\n \"includeTypes\": [\n \"TRANSFORM\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"TRANSFORM\": {\n \"includedIds\": [],\n \"includedNames\": [\n \"Remove Diacritical Marks\",\n \"Common - Location Lookup\"\n ]\n },\n \"TRIGGER_SUBSCRIPTION\": {\n \"includedIds\": [\n \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\",\n \"be9p119e-90e1-49pk-ac9f-fa576e96c9e4\"\n ],\n \"includedNames\": [\n \"NGROK Test: fire and forget\",\n \"Manager Certification\"\n ]\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "10da3229-5b08-4bb4-b59b-b023a8320ef8", + "name": "An example of a 403 response object", + "originalRequest": { + "url": { + "path": [ + "sp-config", + "export" + ], + "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 \"description\": \"Export trigger subscriptions and transforms with custom filter options\",\n \"excludeTypes\": [],\n \"includeTypes\": [\n \"TRANSFORM\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"TRANSFORM\": {\n \"includedIds\": [],\n \"includedNames\": [\n \"Remove Diacritical Marks\",\n \"Common - Location Lookup\"\n ]\n },\n \"TRIGGER_SUBSCRIPTION\": {\n \"includedIds\": [\n \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\",\n \"be9p119e-90e1-49pk-ac9f-fa576e96c9e4\"\n ],\n \"includedNames\": [\n \"NGROK Test: fire and forget\",\n \"Manager Certification\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166882,13 +173502,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5b81fbbe-b009-4748-bb6a-454341a39819", - "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "id": "d28c8400-a350-4d37-9930-affab868d00e", + "name": "An example of a 404 response object", "originalRequest": { "url": { "path": [ @@ -166922,7 +173542,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"laboris minim pr\",\n \"excludeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_REQUEST_CONFIG\"\n ],\n \"includeTypes\": [\n \"PASSWORD_POLICY\",\n \"FORM_DEFINITION\"\n ],\n \"objectOptions\": {\n \"magna16\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"consectetur_5db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Export all available objects\",\n \"excludeTypes\": [],\n \"includeTypes\": [\n \"ACCESS_PROFILE\",\n \"ACCESS_REQUEST_CONFIG\",\n \"ATTR_SYNC_SOURCE_CONFIG\",\n \"AUTH_ORG\",\n \"CAMPAIGN_FILTER\",\n \"FORM_DEFINITION\",\n \"GOVERNANCE_GROUP\",\n \"IDENTITY_OBJECT_CONFIG\",\n \"IDENTITY_PROFILE\",\n \"LIFECYCLE_STATE\",\n \"NOTIFICATION_TEMPLATE\",\n \"PASSWORD_POLICY\",\n \"PASSWORD_SYNC_GROUP\",\n \"PUBLIC_IDENTITIES_CONFIG\",\n \"ROLE\",\n \"RULE\",\n \"SEGMENT\",\n \"SERVICE_DESK_INTEGRATION\",\n \"SOD_POLICY\",\n \"SOURCE\",\n \"TAG\",\n \"TRANSFORM\",\n \"TRIGGER_SUBSCRIPTION\",\n \"WORKFLOW\"\n ],\n \"objectOptions\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -166939,13 +173559,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "65325cf7-6b12-4158-8111-b8a88ebe8e4c", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "0d672a92-4520-4d52-bb44-fe45eb2e8b69", + "name": "Export all objects available", "originalRequest": { "url": { "path": [ @@ -166979,7 +173599,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"laboris minim pr\",\n \"excludeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_REQUEST_CONFIG\"\n ],\n \"includeTypes\": [\n \"PASSWORD_POLICY\",\n \"FORM_DEFINITION\"\n ],\n \"objectOptions\": {\n \"magna16\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"consectetur_5db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Export all available objects\",\n \"excludeTypes\": [],\n \"includeTypes\": [\n \"ACCESS_PROFILE\",\n \"ACCESS_REQUEST_CONFIG\",\n \"ATTR_SYNC_SOURCE_CONFIG\",\n \"AUTH_ORG\",\n \"CAMPAIGN_FILTER\",\n \"FORM_DEFINITION\",\n \"GOVERNANCE_GROUP\",\n \"IDENTITY_OBJECT_CONFIG\",\n \"IDENTITY_PROFILE\",\n \"LIFECYCLE_STATE\",\n \"NOTIFICATION_TEMPLATE\",\n \"PASSWORD_POLICY\",\n \"PASSWORD_SYNC_GROUP\",\n \"PUBLIC_IDENTITIES_CONFIG\",\n \"ROLE\",\n \"RULE\",\n \"SEGMENT\",\n \"SERVICE_DESK_INTEGRATION\",\n \"SOD_POLICY\",\n \"SOURCE\",\n \"TAG\",\n \"TRANSFORM\",\n \"TRIGGER_SUBSCRIPTION\",\n \"WORKFLOW\"\n ],\n \"objectOptions\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -166996,13 +173616,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f83e2047-5152-4e4b-8f2f-2cee0665e444", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "74011dbe-f106-44f3-bb1c-bca3b4bfd5af", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -167036,7 +173656,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"laboris minim pr\",\n \"excludeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_REQUEST_CONFIG\"\n ],\n \"includeTypes\": [\n \"PASSWORD_POLICY\",\n \"FORM_DEFINITION\"\n ],\n \"objectOptions\": {\n \"magna16\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"consectetur_5db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Export all available objects\",\n \"excludeTypes\": [],\n \"includeTypes\": [\n \"ACCESS_PROFILE\",\n \"ACCESS_REQUEST_CONFIG\",\n \"ATTR_SYNC_SOURCE_CONFIG\",\n \"AUTH_ORG\",\n \"CAMPAIGN_FILTER\",\n \"FORM_DEFINITION\",\n \"GOVERNANCE_GROUP\",\n \"IDENTITY_OBJECT_CONFIG\",\n \"IDENTITY_PROFILE\",\n \"LIFECYCLE_STATE\",\n \"NOTIFICATION_TEMPLATE\",\n \"PASSWORD_POLICY\",\n \"PASSWORD_SYNC_GROUP\",\n \"PUBLIC_IDENTITIES_CONFIG\",\n \"ROLE\",\n \"RULE\",\n \"SEGMENT\",\n \"SERVICE_DESK_INTEGRATION\",\n \"SOD_POLICY\",\n \"SOURCE\",\n \"TAG\",\n \"TRANSFORM\",\n \"TRIGGER_SUBSCRIPTION\",\n \"WORKFLOW\"\n ],\n \"objectOptions\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -167053,7 +173673,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -167064,7 +173684,7 @@ } }, { - "id": "6f9e4541-19cd-44f0-9873-cdbadbe4f37d", + "id": "e4b7071b-730c-4c55-9240-0f5db37a0f78", "name": "Get export job status", "request": { "name": "Get export job status", @@ -167085,7 +173705,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -167106,7 +173726,7 @@ }, "response": [ { - "id": "5d352f99-925f-4837-b834-0e7aac055eb4", + "id": "cc0488b2-7b5b-4d0c-b1c6-47338845401a", "name": "Export job status successfully returned.", "originalRequest": { "url": { @@ -167146,12 +173766,12 @@ "value": "application/json" } ], - "body": "{\n \"completed\": \"\",\n \"created\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"jobId\": \"\",\n \"modified\": \"\",\n \"status\": \"FAILED\",\n \"type\": \"IMPORT\"\n}", + "body": "{\n \"jobId\": \"1e824aa0-4c6e-4f14-95e9-e7dc5234aa51\",\n \"status\": \"COMPLETE\",\n \"type\": \"EXPORT\",\n \"message\": null,\n \"description\": \"Export Job 1 Test\",\n \"expiration\": \"2021-05-20T15:04:24Z\",\n \"created\": \"2021-05-13T15:04:24.112Z\",\n \"modified\": \"2021-05-13T15:04:27.363Z\",\n \"completed\": \"2021-05-13T15:04:27.358Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "282a8ce9-ca9c-4749-875e-5c6c6a85b8d7", + "id": "dc707f07-8303-4d3f-b794-fc079258ece0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167191,12 +173811,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9f1082ae-f20a-4c7e-94d1-7428ca63398b", + "id": "4016770e-bc23-4ed3-ad6b-acdece01c7e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167236,12 +173856,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f8f7a023-adff-4d8d-b8f9-d40ba8c7b345", + "id": "e8406b38-f6a8-4b33-a896-101312e399c0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167281,12 +173901,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0d8f2db3-0437-4067-b48f-ca9e7ad2e586", + "id": "9540825a-c2b6-4803-9a11-98eee09517f2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -167326,12 +173946,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7052bc42-527f-4ff3-b37a-73d786f32198", + "id": "71949ff8-02f2-423d-b10c-d107e7790d0a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167371,12 +173991,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "188224a3-d54d-4b43-a377-a8161c9f13d8", + "id": "202be4aa-412b-4651-bdef-9c08feda0fa5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167416,7 +174036,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -167427,7 +174047,7 @@ } }, { - "id": "8b5b2ffb-029c-4cb0-b6aa-9460102288df", + "id": "a14e77d2-a17c-422d-89e3-7a765b08cfdd", "name": "Download export job result.", "request": { "name": "Download export job result.", @@ -167449,7 +174069,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -167470,7 +174090,7 @@ }, "response": [ { - "id": "2f6dd046-e6b3-4db7-b7b7-8be9ead16b32", + "id": "1fb61613-c582-45b1-8f90-8ea5d94ee273", "name": "Exported JSON objects.", "originalRequest": { "url": { @@ -167511,12 +174131,12 @@ "value": "application/json" } ], - "body": "{\n \"version\": \"\",\n \"timestamp\": \"\",\n \"tenant\": \"\",\n \"description\": \"\",\n \"options\": {\n \"excludeTypes\": [\n \"SOURCE\",\n \"SERVICE_DESK_INTEGRATION\"\n ],\n \"includeTypes\": [\n \"SEGMENT\",\n \"PASSWORD_SYNC_GROUP\"\n ],\n \"objectOptions\": {\n \"eiusmod0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"do_ccd\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"culpa8f6\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"do_f9\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n },\n \"objects\": [\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"AUTH_ORG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"officia_c0c\": -82527512.36656749\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"laborum_da\": 39957791.35971102,\n \"amet_6b\": false,\n \"pariaturb\": \"quis dolor ipsum\"\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 \"esse_62_\": \"enim ut\",\n \"euf_\": 68240178.69556344\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"officia9_\": -12935192.755002141\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3bdd5826-0ffc-4771-9f68-7762708ddec7", + "id": "3cb41c27-75e4-4c66-9fe5-5eef1d3e1e76", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167557,12 +174177,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b24b93bd-7663-4124-9f94-4d84b0f3a6fa", + "id": "a6b5893b-df69-4614-9787-80de98bfb31e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167603,12 +174223,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7a978b54-8191-42eb-b3bd-853ef2c4c536", + "id": "8ade565a-0308-4e10-ba78-ad986fc02dbd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167649,12 +174269,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a123b23f-2e2c-4386-8cc1-757f690478e0", + "id": "daaec532-cc02-421c-a9c7-7e50668b6c19", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -167695,12 +174315,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bfa0f382-77e6-4ee5-8b2d-0062fff66de3", + "id": "992c93f2-a8d8-425f-b124-2882b1c61ccf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167741,12 +174361,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f8bcd896-cf7e-4c2c-a352-41b825929c76", + "id": "a706d386-a62e-4ba1-b1ec-3437d853004f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167787,7 +174407,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -167798,7 +174418,7 @@ } }, { - "id": "01585a15-770a-4e7c-b03e-2ed56af74f3d", + "id": "db997c65-5814-4ac1-a24f-fd63437d5462", "name": "Initiates configuration objects import job", "request": { "name": "Initiates configuration objects import job", @@ -167822,7 +174442,7 @@ "type": "text/plain" }, "key": "preview", - "value": "false" + "value": "true" } ], "variable": [] @@ -167847,7 +174467,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "Excepteur laboris labore eu amet", "type": "text" }, { @@ -167864,7 +174484,7 @@ }, "response": [ { - "id": "20a8c30d-ee6b-47ae-a9ed-085236f5dafa", + "id": "33d30311-f887-47e4-9efa-a183e765fee4", "name": "Import job accepted and queued for processing.", "originalRequest": { "url": { @@ -167883,7 +174503,7 @@ "type": "text/plain" }, "key": "preview", - "value": "false" + "value": "true" } ], "variable": [] @@ -167916,7 +174536,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "Excepteur laboris labore eu amet", "type": "text" }, { @@ -167939,12 +174559,12 @@ "value": "application/json" } ], - "body": "{\n \"jobId\": \"\",\n \"status\": \"CANCELLED\",\n \"type\": \"IMPORT\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"jobId\": \"3469b87d-48ca-439a-868f-2160001da8c1\",\n \"status\": \"COMPLETE\",\n \"type\": \"IMPORT\",\n \"expiration\": \"2021-05-11T22:23:16Z\",\n \"created\": \"2021-05-11T22:23:16Z\",\n \"modified\": \"2021-05-11T22:23:16Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa2a3e7e-9f9b-4b4e-8acc-1f2cfdc25e9e", + "id": "b13ae3e5-a1ab-4831-af15-aea4383ea51c", "name": "Client Error - Returned if the request body is invalid.\n", "originalRequest": { "url": { @@ -167963,7 +174583,7 @@ "type": "text/plain" }, "key": "preview", - "value": "false" + "value": "true" } ], "variable": [] @@ -167996,7 +174616,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "Excepteur laboris labore eu amet", "type": "text" }, { @@ -168019,12 +174639,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d679694b-1525-43a5-9b65-e76662656d9f", + "id": "37063664-dab7-4ae2-b2e6-270bb558c9b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168043,7 +174663,7 @@ "type": "text/plain" }, "key": "preview", - "value": "false" + "value": "true" } ], "variable": [] @@ -168076,7 +174696,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "Excepteur laboris labore eu amet", "type": "text" }, { @@ -168099,12 +174719,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bbc455f8-1da1-4b4a-8297-4f57783ed85a", + "id": "775a9ef9-1e20-4861-8764-a00036da5ad9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168123,7 +174743,7 @@ "type": "text/plain" }, "key": "preview", - "value": "false" + "value": "true" } ], "variable": [] @@ -168156,7 +174776,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "Excepteur laboris labore eu amet", "type": "text" }, { @@ -168179,12 +174799,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "57a25473-2b93-4830-b441-ef88b38a2a19", + "id": "8aed028c-9ec3-4616-a573-6a0f23853947", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168203,7 +174823,7 @@ "type": "text/plain" }, "key": "preview", - "value": "false" + "value": "true" } ], "variable": [] @@ -168236,7 +174856,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "Excepteur laboris labore eu amet", "type": "text" }, { @@ -168259,12 +174879,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0723b757-056f-4bd5-9a06-541e26b13d64", + "id": "59ed6d20-dbf5-42fa-b6f6-d61475837d9a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168283,7 +174903,7 @@ "type": "text/plain" }, "key": "preview", - "value": "false" + "value": "true" } ], "variable": [] @@ -168316,7 +174936,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "Excepteur laboris labore eu amet", "type": "text" }, { @@ -168339,12 +174959,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4bbe1af7-9446-4866-a43d-84623395323e", + "id": "a5fce812-693c-4eb8-9f20-904c5b1405ab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168363,7 +174983,7 @@ "type": "text/plain" }, "key": "preview", - "value": "false" + "value": "true" } ], "variable": [] @@ -168396,7 +175016,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "Excepteur laboris labore eu amet", "type": "text" }, { @@ -168419,7 +175039,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -168430,7 +175050,7 @@ } }, { - "id": "b6b1ac52-caa9-449c-b8ac-34b669f9ebf6", + "id": "3405be2b-78bd-4c40-bdf8-e5664eaa8a0d", "name": "Get import job status", "request": { "name": "Get import job status", @@ -168451,7 +175071,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -168472,7 +175092,7 @@ }, "response": [ { - "id": "8e5bfd61-a8a5-4309-b34d-1668de109bbe", + "id": "169ae5f3-c217-469d-a8f1-a415a9c9afc6", "name": "Import job status successfully returned.", "originalRequest": { "url": { @@ -168512,12 +175132,12 @@ "value": "application/json" } ], - "body": "{\n \"completed\": \"\",\n \"created\": \"\",\n \"expiration\": \"\",\n \"jobId\": \"\",\n \"message\": \"\",\n \"modified\": \"\",\n \"status\": \"IN_PROGRESS\",\n \"type\": \"EXPORT\"\n}", + "body": "{\n \"jobId\": \"4fb10503-1c49-4603-8f8d-886e1f6aa47b\",\n \"status\": \"COMPLETE\",\n \"type\": \"IMPORT\",\n \"message\": \"Download import results for details.\",\n \"description\": null,\n \"expiration\": \"2021-05-20T16:42:39Z\",\n \"created\": \"2021-05-13T16:42:39.333Z\",\n \"modified\": \"2021-05-13T16:42:40.71Z\",\n \"completed\": \"2021-05-13T16:42:40.705Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "81a227fa-96e7-4cb4-824b-33514fa9d4d1", + "id": "c64e762c-7c58-4822-83dc-278848c07e99", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168557,12 +175177,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fb878c0c-26c9-45b2-b54d-e79e1bc0007e", + "id": "141093e9-b2b7-4c9f-8131-a1056e240314", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168602,12 +175222,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa9b7390-dffb-4a2a-91ba-b5e10c716cd8", + "id": "7cba9e4b-c8c0-4b06-b9f9-2fb7335b9f45", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168647,12 +175267,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e5ece952-0870-4948-9cd3-59d7adc07fd8", + "id": "cb10d4ba-1af3-48d2-8b9d-d3838a25f700", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168692,12 +175312,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d9d352ab-ad4c-4a9a-9162-4780bc161f7a", + "id": "251ddaa7-9d86-4854-9061-e702dc41edd7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168737,12 +175357,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e882f9ad-ea51-4da5-85fc-879a4c0f4e1c", + "id": "5f77b1ec-edba-45ba-b80a-a43df776a380", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168782,7 +175402,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -168793,7 +175413,7 @@ } }, { - "id": "2aac6fb0-9ef1-49d4-a8f2-3c0f048cc5a9", + "id": "8338bd56-3fb7-4bbf-8f1d-90a2f4a3125b", "name": "Download import job result", "request": { "name": "Download import job result", @@ -168815,7 +175435,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -168836,7 +175456,7 @@ }, "response": [ { - "id": "1467604b-4f89-4614-839e-4bb6d60ac70a", + "id": "6f64db56-c1ff-4214-b413-2d3888e2b3ed", "name": "Import results JSON object, containing detailed results of the import operation.", "originalRequest": { "url": { @@ -168877,12 +175497,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": {\n \"velit_c69\": {\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"fugiat_8_0\": {},\n \"eiusmod7a\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"magna_b\": {},\n \"sit_2\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"irure_379\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"elit_519\": {},\n \"in_6\": {},\n \"dolor_3\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"aute_9\": {},\n \"sint_c_\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"idb\": {},\n \"laborumc3\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"TRANSFORM\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"id_4\": {\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"aliquip_70\": {},\n \"enim_29\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"ut8\": {},\n \"aliquace\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"laborisd8\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"exercitationc\": {},\n \"nulla_d0\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"sunt_2\": {},\n \"esse_2\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"officia_4fa\": {},\n \"elit_62\": {},\n \"cupidatat_16\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n },\n \"exportJobId\": \"\"\n}", + "body": "{\n \"results\": {\n \"occaecat5\": {\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 \"pariatur9cf\": {}\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 \"quis_d00\": {}\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 \"sunt44f\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"aliquip_214\": {},\n \"proident7ec\": {},\n \"sunt3\": {},\n \"nostrud_764\": {}\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 \"cupidatat9e\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"do_07_\": {}\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": "81405929-6939-433c-9701-d99e88642767", + "id": "31b594fe-f3d9-4eb6-afda-ae97f851627c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168923,12 +175543,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "58a0ce7f-c2e1-4d39-bda1-4766480f3245", + "id": "8a9ade5c-501d-4df8-a6a3-635e2ac34262", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168969,12 +175589,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cac0a901-8134-4c90-bdbf-03bc3295b9ae", + "id": "491df2ed-925d-4376-b573-e5e5a5e38ca2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169015,12 +175635,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "86ab3840-3103-4600-8ad2-4dd8b5cfcdef", + "id": "8fa1698e-3f4c-40fa-a804-d5f76121879e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -169061,12 +175681,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "24fb4def-0a17-466a-87cf-e7828cc0809d", + "id": "ceb462db-1759-48ab-b979-5027a324a771", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169107,12 +175727,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "46ffc291-e195-47cb-abb7-ce45e75d17d7", + "id": "f16b7d8e-4c4c-4997-b9b9-930dbcef774d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169153,7 +175773,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -169164,7 +175784,7 @@ } }, { - "id": "0bc6bc26-aaf1-4e12-8f91-4a7596176887", + "id": "319c6a27-f0ad-4b86-ba15-caeb1f5b02d5", "name": "Get config object details", "request": { "name": "Get config object details", @@ -169194,7 +175814,7 @@ }, "response": [ { - "id": "af3bdd66-9c42-4b0b-b5e4-2616dbfb2f6f", + "id": "783b5ef8-331e-4b0c-b1d2-73fff52c0dac", "name": "Object configurations returned successfully.", "originalRequest": { "url": { @@ -169233,12 +175853,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"objectType\": \"\",\n \"resolveByIdUrl\": {\n \"url\": \"\",\n \"query\": {}\n },\n \"resolveByNameUrl\": [\n {\n \"url\": \"\",\n \"query\": {}\n },\n {\n \"url\": \"\",\n \"query\": {}\n }\n ],\n \"exportUrl\": {\n \"url\": \"\",\n \"query\": {}\n },\n \"exportRight\": \"\",\n \"exportLimit\": \"\",\n \"importUrl\": {\n \"url\": \"\",\n \"query\": {}\n },\n \"importRight\": \"\",\n \"importLimit\": \"\",\n \"referenceExtractors\": [\n \"\",\n \"\"\n ],\n \"signatureRequired\": false\n },\n {\n \"objectType\": \"\",\n \"resolveByIdUrl\": {\n \"url\": \"\",\n \"query\": {}\n },\n \"resolveByNameUrl\": [\n {\n \"url\": \"\",\n \"query\": {}\n },\n {\n \"url\": \"\",\n \"query\": {}\n }\n ],\n \"exportUrl\": {\n \"url\": \"\",\n \"query\": {}\n },\n \"exportRight\": \"\",\n \"exportLimit\": \"\",\n \"importUrl\": {\n \"url\": \"\",\n \"query\": {}\n },\n \"importRight\": \"\",\n \"importLimit\": \"\",\n \"referenceExtractors\": [\n \"\",\n \"\"\n ],\n \"signatureRequired\": false\n }\n]", + "body": "[\n {\n \"objectType\": \"TRIGGER_SUBSCRIPTION\",\n \"resolveByIdUrl\": {\n \"url\": \"ets://trigger-subscriptions/$id\",\n \"query\": null\n },\n \"resolveByNameUrl\": [\n {\n \"url\": \"ets://trigger-subscriptions/$id\",\n \"query\": null\n },\n {\n \"url\": \"ets://trigger-subscriptions/$id\",\n \"query\": null\n }\n ],\n \"exportUrl\": {\n \"url\": \"ets://trigger-subscriptions/$id\",\n \"query\": null\n },\n \"exportRight\": \"idn:trigger-service-subscriptions:read\",\n \"exportLimit\": 10,\n \"importUrl\": {\n \"url\": \"ets://trigger-subscriptions/$id\",\n \"query\": null\n },\n \"importRight\": \"idn:trigger-service-subscriptions:create\",\n \"importLimit\": 10,\n \"referenceExtractors\": [\n \"$.owner\"\n ],\n \"signatureRequired\": false\n },\n {\n \"objectType\": \"TRIGGER_SUBSCRIPTION\",\n \"resolveByIdUrl\": {\n \"url\": \"ets://trigger-subscriptions/$id\",\n \"query\": null\n },\n \"resolveByNameUrl\": [\n {\n \"url\": \"ets://trigger-subscriptions/$id\",\n \"query\": null\n },\n {\n \"url\": \"ets://trigger-subscriptions/$id\",\n \"query\": null\n }\n ],\n \"exportUrl\": {\n \"url\": \"ets://trigger-subscriptions/$id\",\n \"query\": null\n },\n \"exportRight\": \"idn:trigger-service-subscriptions:read\",\n \"exportLimit\": 10,\n \"importUrl\": {\n \"url\": \"ets://trigger-subscriptions/$id\",\n \"query\": null\n },\n \"importRight\": \"idn:trigger-service-subscriptions:create\",\n \"importLimit\": 10,\n \"referenceExtractors\": [\n \"$.owner\"\n ],\n \"signatureRequired\": false\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c1584a98-cc7f-42cb-af11-19f95e438f8d", + "id": "b306abb9-f4ad-4909-8453-e67350230563", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169277,12 +175897,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8d1fa91c-f56c-4f15-9f60-c8bda316c24b", + "id": "5ebedc7c-995a-479f-8f8b-fd05ce619194", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169321,12 +175941,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e745fc73-2544-4b2d-a49b-b6fb1bc6d63b", + "id": "29d403be-3a89-4c9b-a840-4f8fe33ef8f9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169365,12 +175985,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0b44b841-10ea-44c9-9513-f18d01bab3cf", + "id": "cb776c0e-8650-4850-9560-d2a2046d110f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -169409,12 +176029,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8ef0a75c-53f0-4146-a55c-097c466c8a62", + "id": "b78fd9d7-49f1-48f9-8515-2d841608c5b7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169453,12 +176073,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f89928a5-b0cd-4a2e-95b6-1a50550c9d3b", + "id": "56212a28-3e7b-4051-805b-a0e1e56f1e28", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169497,7 +176117,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -169514,7 +176134,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": "43a32b34-ee39-463d-89a4-15920bb22b8e", + "id": "0f12586d-1750-42a7-b6b9-cbc0ffb8b430", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -169555,7 +176175,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -169564,7 +176184,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "tagName eq \"BU_FINANCE\"" } ], "variable": [] @@ -169580,7 +176200,7 @@ }, "response": [ { - "id": "e5e90290-4b33-4599-af7d-1f75277b83c5", + "id": "d1b29b72-cfa7-43bc-a1db-dceb859acbf6", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -169616,7 +176236,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -169625,7 +176245,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "tagName eq \"BU_FINANCE\"" } ], "variable": [] @@ -169655,12 +176275,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n },\n {\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n },\n {\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ff6f97ac-82ae-4bb3-934f-9b31408df501", + "id": "bef8c21f-bc95-4ab7-bcba-1e147b20f527", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169696,7 +176316,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -169705,7 +176325,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "tagName eq \"BU_FINANCE\"" } ], "variable": [] @@ -169735,12 +176355,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "95ce8d96-d0f9-429d-a293-9d7632df4feb", + "id": "dd7473dd-77fd-4722-b74e-c508632e127c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169776,7 +176396,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -169785,7 +176405,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "tagName eq \"BU_FINANCE\"" } ], "variable": [] @@ -169815,12 +176435,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "056d61fe-609a-44ff-ace7-45e4990040b8", + "id": "3bee4385-759e-4381-89b0-9dda60f9de4f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169856,7 +176476,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -169865,7 +176485,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "tagName eq \"BU_FINANCE\"" } ], "variable": [] @@ -169895,12 +176515,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9228596b-cc12-450e-84e6-aea7326325ad", + "id": "a52d7503-0e11-4e38-8f55-43d7dee302da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169936,7 +176556,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -169945,7 +176565,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "tagName eq \"BU_FINANCE\"" } ], "variable": [] @@ -169975,12 +176595,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "43906c35-9cbd-474f-a1df-1d6f6a1e73b7", + "id": "62157512-6aa7-427e-8297-afa950cddcc1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170016,7 +176636,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -170025,7 +176645,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "tagName eq \"BU_FINANCE\"" } ], "variable": [] @@ -170055,7 +176675,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -170066,7 +176686,7 @@ } }, { - "id": "617b83e1-59c3-4088-9305-226fbe33b940", + "id": "b4caab2c-6830-4828-89a9-0d6564881bb7", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -170097,7 +176717,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -170108,7 +176728,7 @@ }, "response": [ { - "id": "94ec7d12-ef2c-49d7-ab4b-a38b164c65c5", + "id": "3bc21a14-0bdd-4fab-98ff-cdada30b0b5b", "name": "Created.", "originalRequest": { "url": { @@ -170138,7 +176758,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -170154,7 +176774,7 @@ "_postman_previewlanguage": "text" }, { - "id": "fc9e91a0-4a20-4793-8df7-5d27941c9b79", + "id": "524190b9-779f-4c9c-80bf-7141e548cb92", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170188,7 +176808,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -170205,12 +176825,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e501e235-8515-43b1-a744-48b15a28646f", + "id": "498870a6-e3e0-4faf-b05d-267c39616c28", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170244,7 +176864,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -170261,12 +176881,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0178d8b1-5a2d-4c38-94f8-9531c8504ef5", + "id": "96aece40-1fb4-416a-afb9-212865dd65fc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170300,7 +176920,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -170317,12 +176937,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4604ceab-02e9-447e-a1ba-d4d5ab7dc8a1", + "id": "5bf3e2da-b1da-4a85-a1ad-2ec9c95d38db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170356,7 +176976,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -170373,12 +176993,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "61d4ec5f-6341-4f38-b1be-4e6ed62d1cb1", + "id": "5722d1fd-771f-4abd-8aee-f0b30124dffa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170412,7 +177032,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -170429,7 +177049,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -170440,7 +177060,7 @@ } }, { - "id": "82f15496-9af1-4a8c-ae23-a93810ce5c3e", + "id": "dc1f9991-a871-4201-bffc-640ef415c303", "name": "List Tagged Objects by Type", "request": { "name": "List Tagged Objects by Type", @@ -170482,7 +177102,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -170491,13 +177111,13 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "objectRef.id eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [ { "type": "any", - "value": "IDENTITY", + "value": "ROLE", "key": "type", "disabled": true, "description": { @@ -170518,7 +177138,7 @@ }, "response": [ { - "id": "884847a3-5495-4402-92b4-64a641fdb743", + "id": "b2b8c2ef-b073-4338-a2d1-f56e2bd349f4", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -170555,7 +177175,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -170564,7 +177184,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "objectRef.id eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -170594,12 +177214,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n },\n {\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n },\n {\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "06fe01e1-c680-42f0-a5a1-e72788793fd8", + "id": "0642516a-b057-48d9-b100-70407876f82f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170636,7 +177256,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -170645,7 +177265,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "objectRef.id eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -170675,12 +177295,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f1447b8e-61e5-4197-8794-97c77d173358", + "id": "e866424b-6c96-45ca-b4de-331888484466", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170717,7 +177337,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -170726,7 +177346,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "objectRef.id eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -170756,12 +177376,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2ac14880-3d3d-4a3b-836c-1910e8d6a28c", + "id": "15ca8de0-f195-4541-94ec-2c10f1e9d17b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170798,7 +177418,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -170807,7 +177427,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "objectRef.id eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -170837,12 +177457,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a9055b13-18b9-4120-8f5f-26a2be4f832f", + "id": "7026071f-bfb4-4127-bf71-08cbe0feac49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170879,7 +177499,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -170888,7 +177508,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "objectRef.id eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -170918,12 +177538,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9cf522b9-6abe-47fb-8e9a-25cdff7bfe95", + "id": "5828ffe1-2700-4dbb-825b-4a189fbf1db1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170960,7 +177580,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -170969,7 +177589,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "objectRef.id eq \"2c91808568c529c60168cca6f90c1313\"" } ], "variable": [] @@ -170999,7 +177619,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -171010,7 +177630,7 @@ } }, { - "id": "554ac00f-70b7-4316-8a36-46d04d0ec0e9", + "id": "873a58a2-ab85-4be4-b118-9dc2ddb0eb1c", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -171031,7 +177651,7 @@ "variable": [ { "type": "any", - "value": "IDENTITY", + "value": "ROLE", "key": "type", "disabled": true, "description": { @@ -171041,7 +177661,7 @@ }, { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -171062,7 +177682,7 @@ }, "response": [ { - "id": "fe2bf924-2c93-447c-8904-1309fbd2b2a5", + "id": "7aa2b2cf-a856-44bb-a8c4-834331200f37", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -171102,12 +177722,12 @@ "value": "application/json" } ], - "body": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6cc35185-91f3-4c42-b8f8-7434b42f737e", + "id": "4b26ec0b-8c27-4a82-bb7b-0e0d08f04edf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171147,12 +177767,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3ec434be-a8f5-48f2-bed9-3a48719ce2cb", + "id": "44f8a390-a6f5-40d4-b452-d2bc179b7cfb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171192,12 +177812,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d5d670b-34f8-4aac-80e8-7be59e2a5c6c", + "id": "112f7dbb-4c94-496b-9968-f8e1724cf8d1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171237,12 +177857,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8ce75c08-efa4-46fc-a52d-8bed11c87a7d", + "id": "11bd5639-ba92-4e7f-9dd0-82b2e43f4d2d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171282,12 +177902,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d4a06cb3-8e45-42fc-aa08-74efb0b79622", + "id": "9cde8be4-f534-442f-a24d-aca785e7624f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171327,7 +177947,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -171338,7 +177958,7 @@ } }, { - "id": "232acbe1-982c-4ce6-b399-3e0db23b16fd", + "id": "8ddbc5bd-3357-4523-8a6c-facc9817c154", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -171359,7 +177979,7 @@ "variable": [ { "type": "any", - "value": "IDENTITY", + "value": "ROLE", "key": "type", "disabled": true, "description": { @@ -171369,7 +177989,7 @@ }, { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -171392,7 +178012,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -171403,7 +178023,7 @@ }, "response": [ { - "id": "e5f4a8ab-da99-4bc4-97e2-5646346ee5d4", + "id": "69bf6330-6558-4dd9-b695-7d70a5820b48", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -171439,7 +178059,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -171456,12 +178076,12 @@ "value": "application/json" } ], - "body": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "98af5497-6fa4-4baf-9c6b-1aed2ffd0d0e", + "id": "e8745d7c-9cb1-4d64-87f5-a60941bc9504", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171497,7 +178117,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -171514,12 +178134,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9b24014d-b8d2-4db5-8ebf-b7a305f3688c", + "id": "d5de30b0-5175-497b-958e-24277efa6eae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171555,7 +178175,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -171572,12 +178192,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "13df58ab-9743-4ab1-87ea-3126c725a04f", + "id": "40ede145-5fdc-4c57-9326-607ea7dc7f3e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171613,7 +178233,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -171630,12 +178250,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "89a62fe1-0e08-4c72-9166-5f765f42a5bc", + "id": "29ac2b60-269b-48c4-8364-f8336f53869b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171671,7 +178291,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -171688,12 +178308,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1bd8c179-b23e-41dc-aff3-ca4cdf2b2c86", + "id": "d008dd28-be42-4310-be02-257d906216aa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171729,7 +178349,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -171746,7 +178366,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -171757,7 +178377,7 @@ } }, { - "id": "31f5dc86-6f60-4559-ab81-34e9d3d6f0fd", + "id": "6253a785-3401-48ee-b528-cc362d989c1d", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -171778,7 +178398,7 @@ "variable": [ { "type": "any", - "value": "IDENTITY", + "value": "ROLE", "key": "type", "disabled": true, "description": { @@ -171788,7 +178408,7 @@ }, { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -171809,7 +178429,7 @@ }, "response": [ { - "id": "ab9fcbdc-cbe4-441a-9e44-ac0b4474aa31", + "id": "c7a20895-7f2f-41bc-9140-2ca53510cf71", "name": "No content.", "originalRequest": { "url": { @@ -171844,7 +178464,7 @@ "_postman_previewlanguage": "text" }, { - "id": "56e7185b-5d3b-427f-9663-c68b895a35ef", + "id": "4592e41d-ce4b-4763-96a5-14a245033d36", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171884,12 +178504,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4f5d9a86-60d3-4abc-bf7f-52fb9af9a0f5", + "id": "9b0a2a7e-d386-4d40-a5c2-39b55ebd4f51", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171929,12 +178549,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eb8701ed-c45f-485e-ae6f-4d8f0ee5ba8f", + "id": "83cde1e4-fd50-4f73-ad26-fd808edd1558", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171974,12 +178594,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9320e876-5209-4d64-9f51-327fd560627e", + "id": "5aec93cc-efb0-449f-937b-0f9e56acbc97", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172019,12 +178639,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b24d841-49bc-498f-8d81-8d61db365fb5", + "id": "8e39da24-5563-42e4-95d2-07bde69d7a5c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172064,7 +178684,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -172075,7 +178695,7 @@ } }, { - "id": "e5092d5d-a4c1-43af-a50c-e43c3dc2748d", + "id": "cc259741-00d1-45fa-a9c7-7a7abfddbf49", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -172107,7 +178727,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -172118,7 +178738,7 @@ }, "response": [ { - "id": "342280bc-4a66-4458-9d52-8022331a0b23", + "id": "34673c24-4533-4ee4-b331-2c218b3c3077", "name": "Request succeeded.", "originalRequest": { "url": { @@ -172153,7 +178773,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -172170,12 +178790,12 @@ "value": "application/json" } ], - "body": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "body": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e7315f0a-f60b-4b8d-ba68-1aa42ef780e1", + "id": "1e9cc8d0-0fab-49c4-bd75-3e97bfb48667", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172210,7 +178830,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -172227,12 +178847,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e89a52d5-3f4a-47d6-bcea-a75703c0682e", + "id": "802a7f5a-af6f-4c00-9cd8-7189636b144b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172267,7 +178887,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -172284,12 +178904,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7724efbb-f980-4d0b-bf6b-cb02f2a8bba8", + "id": "43322be7-2962-4db5-b28d-ee76ec778a16", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172324,7 +178944,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -172341,12 +178961,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e8b72723-bf81-4664-8b4f-6339c7b3bab5", + "id": "ea8941a8-45cd-444d-98cd-d95410e7429f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172381,7 +179001,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -172398,12 +179018,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0a4b6f46-a01c-4052-a155-6ec17711f5f2", + "id": "299d0eba-6e55-449c-af14-ee8b3de0ea51", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172438,7 +179058,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -172455,7 +179075,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -172466,7 +179086,7 @@ } }, { - "id": "c1ca6838-5935-4722-b10d-e4f6a1a0706a", + "id": "1dda0c26-1ecd-44f5-b377-d705c5cbb820", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -172498,7 +179118,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -172509,7 +179129,7 @@ }, "response": [ { - "id": "e7e00b9a-ae0e-4b42-af08-844297eaaff2", + "id": "cfa26488-ed18-4085-898f-7ec4d62b1cf1", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -172540,7 +179160,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -172556,7 +179176,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e1382083-0ac8-486c-b5a2-fd9402aa77a6", + "id": "de594d1c-3b29-4446-904f-73b1ddb33eea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172591,7 +179211,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -172608,12 +179228,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c2c44661-7679-4eab-a9dc-b1ba8715cddd", + "id": "997786aa-5703-49c1-8d9f-deaf4fc7cf81", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172648,7 +179268,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -172665,12 +179285,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85cf1055-9259-498a-b26d-51c3725d2ddd", + "id": "d7f9cbcf-6ae3-452d-bf9c-c6f6d5ade5d9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172705,7 +179325,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -172722,12 +179342,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "976e24f1-3681-477e-b501-bb7300e639b6", + "id": "91b1b9dc-44ec-48fe-8532-fad2e4d668ec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172762,7 +179382,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -172779,12 +179399,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6722f95a-b1a6-4365-bc26-a6481b08fcfa", + "id": "31a66884-9aff-4707-bda8-b3bcc258b4f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172819,7 +179439,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"tags\": [\n \"BU_FINANCE\",\n \"PCI\"\n ],\n \"operation\": \"MERGE\"\n}", "options": { "raw": { "headerFamily": "json", @@ -172836,7 +179456,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -172853,7 +179473,7 @@ "description": "", "item": [ { - "id": "348db6b9-cc71-489b-ab6d-7353b707098a", + "id": "5ae60288-42ad-4c85-8b9c-ef8319ed710e", "name": "Get task status by ID.", "request": { "name": "Get task status by ID.", @@ -172873,7 +179493,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "anId", "key": "id", "disabled": true, "description": { @@ -172894,7 +179514,7 @@ }, "response": [ { - "id": "d7f13280-4c93-4210-959d-75c01b12bb46", + "id": "ec089dbc-d24c-44a8-8f36-cb1c6add3be1", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -172933,12 +179553,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"velit_ba\": 50335553.25174248,\n \"dolor689\": false,\n \"incididunt_9\": 45485354\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"TempError\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n}", + "body": "{\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"Success\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e9002023-886a-428f-ba31-b8045e5e84c1", + "id": "df5a04e9-91a0-4e54-aa68-8f28f93a86ad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172977,12 +179597,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9a818abb-a00c-4f20-9f37-f96ecf98cb0f", + "id": "64f8715c-3025-4f61-9a34-7991ef1285d8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173021,12 +179641,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04c1e95e-7e2a-4d02-be2f-10f04507c2e1", + "id": "e72bc8c7-70e2-4942-a18a-026350431253", "name": "Forbidden, generally due to a lack of security rights", "originalRequest": { "url": { @@ -173060,7 +179680,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4b006b23-b8da-406d-a483-ceac94980b9a", + "id": "89f3fdd7-291a-4711-8c67-9c042060d889", "name": "TaskStatus with the given id was not found.", "originalRequest": { "url": { @@ -173094,7 +179714,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f778687e-59b2-4fd8-be97-9f3bdd26a4bb", + "id": "96d3ff36-10a6-4d74-9a61-8baa2fe96e7e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173133,12 +179753,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ff46ca6-0db4-4213-9fc6-5e4c347faa1b", + "id": "c6791a77-a975-4a84-ba5c-c0be48cd0ac9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173177,7 +179797,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -173188,7 +179808,7 @@ } }, { - "id": "5e260b89-e7e2-4b58-bc7e-8f089590dfc7", + "id": "4038073f-79ed-4470-a558-6d142e5366e3", "name": "Update task status by ID", "request": { "name": "Update task status by ID", @@ -173208,7 +179828,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "anId", "key": "id", "disabled": true, "description": { @@ -173231,7 +179851,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n\t \"op\": \"replace\",\n\t \"path\": \"/description\",\n\t \"value\": \"A new description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -173242,7 +179862,7 @@ }, "response": [ { - "id": "b83bb31e-9bc8-4c2f-8bba-a85b8bba253a", + "id": "e7bc20e1-664b-46f4-bc60-a582e5a15c9a", "name": "Responds with the updated TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -173277,7 +179897,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n\t \"op\": \"replace\",\n\t \"path\": \"/description\",\n\t \"value\": \"A new description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -173294,12 +179914,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"velit_ba\": 50335553.25174248,\n \"dolor689\": false,\n \"incididunt_9\": 45485354\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"TempError\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n}", + "body": "{\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"Success\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3588e8fb-6b42-4d9d-8b92-894ac35cf447", + "id": "ae4e4e21-dbef-4a98-874a-a8e869c9799d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173334,7 +179954,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n\t \"op\": \"replace\",\n\t \"path\": \"/description\",\n\t \"value\": \"A new description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -173351,12 +179971,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "176bc99b-9a50-4682-a30f-bd6cc2847863", + "id": "2a7eec13-e6a8-4ee0-aaf9-2df606e1cee4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173391,7 +180011,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n\t \"op\": \"replace\",\n\t \"path\": \"/description\",\n\t \"value\": \"A new description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -173408,12 +180028,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "42a3e4de-9a14-4b9a-9f05-3bd110e3d2f1", + "id": "5eb57640-2b27-4c1d-9531-bf0ed23c92e5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173448,7 +180068,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n\t \"op\": \"replace\",\n\t \"path\": \"/description\",\n\t \"value\": \"A new description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -173465,12 +180085,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "37c45ce3-a66e-4ef5-9145-d0b70d99bfe2", + "id": "4eb9077b-d603-4d29-8bb2-93e0d695475a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -173505,7 +180125,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n\t \"op\": \"replace\",\n\t \"path\": \"/description\",\n\t \"value\": \"A new description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -173522,12 +180142,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "305e9a75-72d6-4501-b582-a26b62eb868d", + "id": "fc3b4c71-542b-46f4-bfb0-5ebe8283dc0d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173562,7 +180182,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n\t \"op\": \"replace\",\n\t \"path\": \"/description\",\n\t \"value\": \"A new description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -173579,12 +180199,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fff08e45-7664-482d-84e7-57de3347050b", + "id": "3ed1c3cd-b2de-4dc5-8f8d-6b4e5e10561a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173619,7 +180239,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "[\n {\n\t \"op\": \"replace\",\n\t \"path\": \"/description\",\n\t \"value\": \"A new description\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -173636,7 +180256,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -173647,7 +180267,7 @@ } }, { - "id": "af1a51c6-90c8-436e-8483-94ddcc8de7d4", + "id": "cc6673b2-c405-42aa-9ffc-fa8ca68355e1", "name": "Retrieve a task status list.", "request": { "name": "Retrieve a task status list.", @@ -173688,7 +180308,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -173697,7 +180317,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "completionStatus eq \"Success\"" }, { "disabled": true, @@ -173706,7 +180326,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-created" } ], "variable": [] @@ -173722,7 +180342,7 @@ }, "response": [ { - "id": "32e052d9-de31-4593-9fbd-01824cd66730", + "id": "250b5c09-7db2-465e-9320-c23ce95b44ec", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -173758,7 +180378,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -173767,7 +180387,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "completionStatus eq \"Success\"" }, { "disabled": true, @@ -173776,7 +180396,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-created" } ], "variable": [] @@ -173806,12 +180426,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"none3f\": true\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"Warning\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"WARN\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"dolorec0\": \"elit\"\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"TempError\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"WARN\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n }\n]", + "body": "[\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"Success\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ]\n },\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"Success\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eacd62a8-357f-4ffa-a8de-878693513406", + "id": "d37b9b02-c8d6-4f5b-8a1d-53d07aba3031", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173847,7 +180467,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -173856,7 +180476,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "completionStatus eq \"Success\"" }, { "disabled": true, @@ -173865,7 +180485,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-created" } ], "variable": [] @@ -173895,12 +180515,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "75601945-ef6c-4955-b6e5-28608e3c8094", + "id": "b2b51e29-8d63-40c3-a563-07eaac04aabc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173936,7 +180556,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -173945,7 +180565,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "completionStatus eq \"Success\"" }, { "disabled": true, @@ -173954,7 +180574,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-created" } ], "variable": [] @@ -173984,12 +180604,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12344ec1-6b68-430b-8909-7129e467ace0", + "id": "383e9089-72cb-4cdb-8e33-147d0c788f1c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174025,7 +180645,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -174034,7 +180654,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "completionStatus eq \"Success\"" }, { "disabled": true, @@ -174043,7 +180663,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-created" } ], "variable": [] @@ -174073,12 +180693,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "07a7ea8b-30c2-4470-a5bb-ffe305d8aefd", + "id": "b9ee2b92-c2ec-4e54-8229-c54e2acf30a1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -174114,7 +180734,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -174123,7 +180743,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "completionStatus eq \"Success\"" }, { "disabled": true, @@ -174132,7 +180752,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-created" } ], "variable": [] @@ -174162,12 +180782,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "716c1a14-3fcc-4c97-b014-d6d66c15391c", + "id": "3bc2aac6-a691-4aac-963a-be1f623616aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174203,7 +180823,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -174212,7 +180832,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "completionStatus eq \"Success\"" }, { "disabled": true, @@ -174221,7 +180841,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-created" } ], "variable": [] @@ -174251,12 +180871,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dd804dbc-a496-4646-99f6-36aa4956c244", + "id": "1506d3bd-e889-4875-8575-4cee2bb31611", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174292,7 +180912,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -174301,7 +180921,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "completionStatus eq \"Success\"" }, { "disabled": true, @@ -174310,7 +180930,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "-created" } ], "variable": [] @@ -174340,7 +180960,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -174351,7 +180971,7 @@ } }, { - "id": "cd3bb66a-ac94-4081-91f5-657ccf5c2853", + "id": "3ca22010-6e1c-429f-9c8a-e6d3a8e58cbf", "name": "Retrieve a pending task list.", "request": { "name": "Retrieve a pending task list.", @@ -174393,7 +181013,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -174409,7 +181029,7 @@ }, "response": [ { - "id": "1b258924-60b4-4e3a-92dd-ab73caa02e1f", + "id": "f8261cda-e6f6-4166-b570-9ec20a18e10d", "name": "Responds with a list of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -174446,7 +181066,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -174476,12 +181096,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"none3f\": true\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"Warning\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"WARN\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"dolorec0\": \"elit\"\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"TempError\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"WARN\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n }\n]", + "body": "[\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"Success\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ]\n },\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"Success\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b5f06913-6e9c-4481-808b-b37440bb0c91", + "id": "47d81d01-6747-47b4-bb5c-d448783fa214", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -174518,7 +181138,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -174543,7 +181163,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bb8e49de-19fa-4e00-b949-44138a30042f", + "id": "3f717030-b6c7-48f5-ad5e-e8aea5ff707d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174580,7 +181200,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -174610,12 +181230,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8d254807-8872-494e-8a6e-8abd8398464d", + "id": "73309c93-9b8c-4382-81e8-b5f06c034a69", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174652,7 +181272,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -174682,7 +181302,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -174693,7 +181313,7 @@ } }, { - "id": "9d616729-7dd0-4b1b-8544-4362acb5a929", + "id": "bc56b175-82e8-4e01-a86f-4b105a08477e", "name": "Retrieve headers only for pending task list.", "request": { "name": "Retrieve headers only for pending task list.", @@ -174735,7 +181355,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -174751,7 +181371,7 @@ }, "response": [ { - "id": "3f1adce5-e3e1-4b32-9bc5-7fa9a34dbf61", + "id": "55f024e2-e3b4-462f-85dd-13086f2603f5", "name": "Responds with headers for List of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -174788,7 +181408,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -174813,7 +181433,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e86e8a52-a6ad-4306-8278-84b34361fcd3", + "id": "44712dd7-fa30-4476-b9cf-6ec6c43a8f5f", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -174850,7 +181470,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -174875,7 +181495,7 @@ "_postman_previewlanguage": "text" }, { - "id": "761ec12f-5016-4e57-b936-eacff7bc5454", + "id": "69b94eb0-a016-420d-974a-f821ae630363", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174912,7 +181532,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -174942,12 +181562,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3f816def-83e1-4d1e-807a-9c7422d4cd80", + "id": "ee315390-f814-439f-8b1d-9c197d3ea56f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174984,7 +181604,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -175014,7 +181634,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -175031,7 +181651,7 @@ "description": "Operations for creating, managing, and deleting transforms", "item": [ { - "id": "1f7d7f36-7711-40d5-9fcb-4fccef7fc1ea", + "id": "6cf137fa-11ff-4237-b774-42a74048bcdb", "name": "List transforms", "request": { "name": "List transforms", @@ -175072,7 +181692,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -175081,7 +181701,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "ExampleTransformName123" }, { "disabled": true, @@ -175090,7 +181710,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Uppercase\"" } ], "variable": [] @@ -175106,7 +181726,7 @@ }, "response": [ { - "id": "e9e217f9-d7e7-41d0-b779-830229b9ea07", + "id": "c415cd75-827f-4e9c-bebb-7bf2e2754dea", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -175142,7 +181762,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -175151,7 +181771,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "ExampleTransformName123" }, { "disabled": true, @@ -175160,7 +181780,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Uppercase\"" } ], "variable": [] @@ -175190,12 +181810,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"aliquip_64b\": -67845928.90264456\n }\n },\n \"id\": \"\",\n \"internal\": false,\n \"name\": \"\",\n \"type\": \"leftPad\"\n },\n {\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"deserunt_8ff\": -18793735,\n \"voluptate9c6\": \"mollit sed\",\n \"Excepteur_9\": \"minim veniam in reprehenderit mollit\"\n }\n },\n \"id\": \"\",\n \"internal\": false,\n \"name\": \"\",\n \"type\": \"base64Decode\"\n }\n]", + "body": "[\n {\n \"id\": \"2cd78adghjkja34jh2b1hkjhasuecd\",\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM-dd-yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n },\n \"internal\": false\n },\n {\n \"id\": \"2lkas8dhj4bkuakja77giih7l4ashh\",\n \"name\": \"PrefixSubstring\",\n \"type\": \"substring\",\n \"attributes\": {\n \"begin\": 0,\n \"end\": 3\n },\n \"internal\": true\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d4e7bc3b-6a31-4e14-991d-a39a250a2052", + "id": "1ee98d67-72c4-4541-8153-b3eccf6400ea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175231,7 +181851,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -175240,7 +181860,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "ExampleTransformName123" }, { "disabled": true, @@ -175249,7 +181869,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Uppercase\"" } ], "variable": [] @@ -175279,12 +181899,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ed81e928-68fa-440b-9b37-796f2268f1ec", + "id": "8f903008-762b-48aa-a781-343aee0d42a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175320,7 +181940,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -175329,7 +181949,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "ExampleTransformName123" }, { "disabled": true, @@ -175338,7 +181958,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Uppercase\"" } ], "variable": [] @@ -175368,12 +181988,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ca1e49a-cb11-4012-b340-97dcae16b715", + "id": "4cfc22fe-74a4-49cf-9186-efbf856a21cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175409,7 +182029,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -175418,7 +182038,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "ExampleTransformName123" }, { "disabled": true, @@ -175427,7 +182047,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Uppercase\"" } ], "variable": [] @@ -175457,12 +182077,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "dc520f0d-bc4d-47aa-914c-6f714faad9d8", + "id": "4ef20d40-0757-4e43-b9d1-e4e629627792", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -175498,7 +182118,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -175507,7 +182127,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "ExampleTransformName123" }, { "disabled": true, @@ -175516,7 +182136,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Uppercase\"" } ], "variable": [] @@ -175546,12 +182166,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "edc2fc6a-f17e-4c10-aecb-390d577a0dce", + "id": "9eadc364-6f53-4581-a48c-03be9b93c0da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175587,7 +182207,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -175596,7 +182216,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "ExampleTransformName123" }, { "disabled": true, @@ -175605,7 +182225,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Uppercase\"" } ], "variable": [] @@ -175635,12 +182255,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f1f8f5be-a456-4e70-9ddf-e8ffd60b1ecc", + "id": "be66950d-2295-4c7d-b4b4-12b92a344338", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175676,7 +182296,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -175685,7 +182305,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "ExampleTransformName123" }, { "disabled": true, @@ -175694,7 +182314,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "name eq \"Uppercase\"" } ], "variable": [] @@ -175724,7 +182344,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -175735,7 +182355,7 @@ } }, { - "id": "325cfbe8-737e-4991-9626-37160b3e2317", + "id": "63826c5e-18ef-49ed-bad5-9697fcbe3110", "name": "Create transform", "request": { "name": "Create transform", @@ -175766,7 +182386,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM dd yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -175777,7 +182397,7 @@ }, "response": [ { - "id": "f926113a-e3bb-4c5a-8f9c-76f88148bdad", + "id": "df88d27c-5497-45d6-a16c-69d5d8104988", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -175811,7 +182431,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM dd yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -175828,12 +182448,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"culpa_14\": -11788705.6058041,\n \"exercitation2c\": true\n }\n },\n \"id\": \"\",\n \"internal\": false,\n \"name\": \"\",\n \"type\": \"static\"\n}", + "body": "{\n \"attributes\": {\n \"sourceName\": \"Workday\",\n \"attributeName\": \"DEPARTMENT\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"!(nativeIdentity.startsWith(\\\"*DELETED*\\\"))\",\n \"accountPropertyFilter\": \"(groups.containsAll({'Admin'}) || location == 'Austin')\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"first_name\",\n \"sourceName\": \"Source\"\n }\n }\n },\n \"id\": \"2cd78adghjkja34jh2b1hkjhasuecd\",\n \"internal\": false,\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "38c221fa-4ee9-4224-b9d9-b224674b5a5d", + "id": "1995580f-142f-4642-a421-6323e59f72e1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175867,7 +182487,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM dd yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -175884,12 +182504,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "171966ff-dec7-4366-a1ca-f222100462d2", + "id": "dd2a4d08-71b7-4eb8-a58b-e4ab22da3e1b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175923,7 +182543,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM dd yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -175940,12 +182560,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "39843724-97cd-4288-b491-3745de0315d6", + "id": "1c05eeb8-38aa-41cf-9b0b-57e6126bc447", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175979,7 +182599,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM dd yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -175996,12 +182616,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fe6b1390-30d3-4cca-8b7a-e2b68d7fb786", + "id": "b2524c32-0334-47d9-b5bc-ed27a458a278", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -176035,7 +182655,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM dd yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176052,12 +182672,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "20e7a70d-7208-4c1f-9969-92727c53a506", + "id": "2c76d9d5-3c5c-447d-acdd-3990f9615cd8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176091,7 +182711,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM dd yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176108,12 +182728,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f02d3146-da15-4f18-9551-df2cf8a22fdf", + "id": "d69c7681-7638-4656-b2ae-30c9543d85e1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176147,7 +182767,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM dd yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176164,7 +182784,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -176175,7 +182795,7 @@ } }, { - "id": "fe568a61-2f5c-468e-897a-6e406476924d", + "id": "01b38d03-b231-4924-a1f7-8e31ebb42547", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -176195,7 +182815,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2cd78adghjkja34jh2b1hkjhasuecd", "key": "id", "disabled": true, "description": { @@ -176216,7 +182836,7 @@ }, "response": [ { - "id": "c9364fc0-d39c-49ad-b5a9-bbf87e9e2eb5", + "id": "f496e750-22c0-495c-b98d-5b4ce5c5a150", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -176255,12 +182875,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"culpa_14\": -11788705.6058041,\n \"exercitation2c\": true\n }\n },\n \"id\": \"\",\n \"internal\": false,\n \"name\": \"\",\n \"type\": \"static\"\n}", + "body": "{\n \"attributes\": {\n \"sourceName\": \"Workday\",\n \"attributeName\": \"DEPARTMENT\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"!(nativeIdentity.startsWith(\\\"*DELETED*\\\"))\",\n \"accountPropertyFilter\": \"(groups.containsAll({'Admin'}) || location == 'Austin')\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"first_name\",\n \"sourceName\": \"Source\"\n }\n }\n },\n \"id\": \"2cd78adghjkja34jh2b1hkjhasuecd\",\n \"internal\": false,\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd30985b-b218-4406-adae-ca097a291fef", + "id": "ead762c2-fb41-4ada-bce7-c2a0dc0acd18", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176299,12 +182919,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2b27e224-bee9-4ffb-ad7f-89172230d745", + "id": "d0a4feb9-8cb8-43c3-9003-1f7d73a8d52e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176343,12 +182963,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bebd21a3-72e5-406d-989d-6449042f231c", + "id": "7a6a7f21-9be7-49fd-be5a-50bea4e98b80", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176387,12 +183007,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b0af8e21-1029-4419-86c4-ed7e55ec1ec2", + "id": "301d9699-3dde-492b-b028-ddbdc33f49ac", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -176431,12 +183051,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d886b65b-5069-49a3-9aff-cd591e115c46", + "id": "481af8ae-ace3-4f10-a25c-848ba42658bc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176475,12 +183095,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "504addd7-0140-414d-abce-8eb1c31206d2", + "id": "86b34d5a-a98a-4029-810a-dd99a7fb8a2c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176519,7 +183139,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -176530,7 +183150,7 @@ } }, { - "id": "2885ebe7-81b1-4d98-872a-1ee37c392c58", + "id": "b7d0e119-a489-4cfa-8726-69f1bbf23e0f", "name": "Update a transform", "request": { "name": "Update a transform", @@ -176550,7 +183170,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2cd78adghjkja34jh2b1hkjhasuecd", "key": "id", "disabled": true, "description": { @@ -176573,7 +183193,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM-dd-yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176584,7 +183204,7 @@ }, "response": [ { - "id": "57f17bad-5a55-496b-826f-f6aec14adaba", + "id": "8d219f6e-a653-4f51-bf05-636ace227ca9", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -176619,7 +183239,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM-dd-yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176636,12 +183256,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"culpa_14\": -11788705.6058041,\n \"exercitation2c\": true\n }\n },\n \"id\": \"\",\n \"internal\": false,\n \"name\": \"\",\n \"type\": \"static\"\n}", + "body": "{\n \"id\": \"2cd78adghjkja34jh2b1hkjhasuecd\",\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM-dd-yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n },\n \"internal\": false\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6517a53c-2b5b-4dbe-92f1-476e1aaba7be", + "id": "d73c841f-db4d-4ab3-be2b-27ff23c31230", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176676,7 +183296,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM-dd-yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176693,12 +183313,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3764a891-2acf-4938-b3ab-cd07c42e3b22", + "id": "10d4043f-0500-4878-83c0-9d6c9e3d8898", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176733,7 +183353,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM-dd-yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176750,12 +183370,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b686c5a0-b154-4ef6-a9a3-93646c0d501b", + "id": "dfcbd812-cc3e-47b7-a8bd-357cadca8056", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176790,7 +183410,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM-dd-yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176807,12 +183427,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d2218716-7714-486f-adec-c22ff8f9fbde", + "id": "288ced8e-d3bd-4f04-8770-c14b83c4fe41", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -176847,7 +183467,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM-dd-yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176864,12 +183484,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9bcce53a-dea8-470a-a023-d42571f2c5e6", + "id": "303c7f67-0002-45a9-8a01-65fb0f7902aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176904,7 +183524,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM-dd-yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176921,12 +183541,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "760828ec-d1c6-45ac-b619-3c91906d864c", + "id": "e53c6ed7-6a0d-4848-b192-724303cc6095", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176961,7 +183581,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"base64Encode\",\n \"attributes\": {\n \"sourceName\": \"\",\n \"attributeName\": \"\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"\",\n \"accountPropertyFilter\": \"\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"tempor_5\": false\n }\n }\n}", + "raw": "{\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"inputFormat\": \"MMM-dd-yyyy, HH:mm:ss.SSS\",\n \"outputFormat\": \"yyyy/dd/MM\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176978,7 +183598,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -176989,7 +183609,7 @@ } }, { - "id": "40458f68-cd09-41b4-86f2-50e8c662cafd", + "id": "b6e380b4-90f9-4cbe-b2ba-f21604ffb80d", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -177009,7 +183629,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2cd78adghjkja34jh2b1hkjhasuecd", "key": "id", "disabled": true, "description": { @@ -177030,7 +183650,7 @@ }, "response": [ { - "id": "fd4a7529-d93e-4932-8935-186d32ba7e23", + "id": "a79e61ac-8308-4546-b021-cc7161727d28", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -177064,7 +183684,7 @@ "_postman_previewlanguage": "text" }, { - "id": "90314d27-efd3-4caa-a2ee-7945fc34c2a7", + "id": "17ce0a44-1c81-4cc5-a15e-0b633e58cc82", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177103,12 +183723,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2e86fc41-ae7b-44d7-8bf9-19cd105506c2", + "id": "2b5192a4-f040-4369-8e1c-f2b22af18877", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177147,12 +183767,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "76ba296a-076e-4cdf-a7db-0a60db38469e", + "id": "46ce7b39-89de-459a-9608-0ed5eab8710a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177191,12 +183811,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "57896f3a-b1d0-47d8-913f-458dae61fa08", + "id": "2528196b-0238-486a-8bd3-8ffa934eeef4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -177235,12 +183855,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f3f4afc3-4849-445c-9ecf-63d79bcd4e1d", + "id": "eea6e3f4-0306-414a-bf4a-b98fbbbee8fc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177279,12 +183899,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b9ec9e07-8389-4f86-af37-39501e814ed3", + "id": "004074a7-2e71-4d3b-8161-e048c3f29127", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177323,7 +183943,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -177340,7 +183960,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": "44c52519-4768-4d9b-a900-785a1b3d4ae2", + "id": "f9775ae1-6a4f-43a3-9366-f5844a1924c3", "name": "List Triggers", "request": { "name": "List Triggers", @@ -177381,7 +184001,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -177390,7 +184010,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"idn:access-request-post-approval\"" }, { "disabled": true, @@ -177399,7 +184019,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -177415,7 +184035,7 @@ }, "response": [ { - "id": "17fed408-6a63-44d8-913e-b1a9864de768", + "id": "0c29eb9a-9c3a-4a43-80f2-9c2965594be0", "name": "List of triggers.", "originalRequest": { "url": { @@ -177451,7 +184071,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -177460,7 +184080,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"idn:access-request-post-approval\"" }, { "disabled": true, @@ -177469,7 +184089,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -177499,12 +184119,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"REQUEST_RESPONSE\",\n \"inputSchema\": \"\",\n \"exampleInput\": {\n \"accessRequestId\": \"\",\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"operation\": \"Remove\",\n \"description\": \"\",\n \"comment\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"operation\": \"Remove\",\n \"description\": \"\",\n \"comment\": \"\"\n }\n ],\n \"requestedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"description\": \"\",\n \"outputSchema\": \"\",\n \"exampleOutput\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"GOVERNANCE_GROUP\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"REQUEST_RESPONSE\",\n \"inputSchema\": \"\",\n \"exampleInput\": {\n \"accessRequestId\": \"\",\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"operation\": \"Remove\",\n \"description\": \"\",\n \"comment\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"ROLE\",\n \"operation\": \"Add\",\n \"description\": \"\",\n \"comment\": \"\"\n }\n ],\n \"requestedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"description\": \"\",\n \"outputSchema\": \"\",\n \"exampleOutput\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"GOVERNANCE_GROUP\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"idn:access-request-dynamic-approver\",\n \"name\": \"Access Request Dynamic Approver\",\n \"type\": \"REQUEST_RESPONSE\",\n \"inputSchema\": \"{\\\"definitions\\\":{\\\"record:AccessRequestDynamicApproverInput\\\":{\\\"type\\\":\\\"object\\\",\\\"required\\\":[\\\"accessRequestId\\\",\\\"requestedFor\\\",\\\"requestedItems\\\",\\\"requestedBy\\\"],\\\"additionalProperties\\\":true,\\\"properties\\\":{\\\"accessRequestId\\\":{\\\"type\\\":\\\"string\\\"},\\\"requestedFor\\\":{\\\"$ref\\\":\\\"#/definitions/record:requestedForIdentityRef\\\"},\\\"requestedItems\\\":{\\\"type\\\":\\\"array\\\",\\\"items\\\":{\\\"$ref\\\":\\\"#/definitions/record:requestedObjectRef\\\"}},\\\"requestedBy\\\":{\\\"$ref\\\":\\\"#/definitions/record:requestedByIdentityRef\\\"}}},\\\"record:requestedForIdentityRef\\\":{\\\"type\\\":\\\"object\\\",\\\"required\\\":[\\\"id\\\",\\\"name\\\",\\\"type\\\"],\\\"additionalProperties\\\":true,\\\"properties\\\":{\\\"id\\\":{\\\"type\\\":\\\"string\\\"},\\\"name\\\":{\\\"type\\\":\\\"string\\\"},\\\"type\\\":{\\\"type\\\":\\\"string\\\"}}},\\\"record:requestedObjectRef\\\":{\\\"type\\\":\\\"object\\\",\\\"optional\\\":[\\\"description\\\",\\\"comment\\\"],\\\"required\\\":[\\\"id\\\",\\\"name\\\",\\\"type\\\",\\\"operation\\\"],\\\"additionalProperties\\\":true,\\\"properties\\\":{\\\"id\\\":{\\\"type\\\":\\\"string\\\"},\\\"name\\\":{\\\"type\\\":\\\"string\\\"},\\\"description\\\":{\\\"oneOf\\\":[{\\\"type\\\":\\\"null\\\"},{\\\"type\\\":\\\"string\\\"}]},\\\"type\\\":{\\\"type\\\":\\\"string\\\"},\\\"operation\\\":{\\\"type\\\":\\\"string\\\"},\\\"comment\\\":{\\\"oneOf\\\":[{\\\"type\\\":\\\"null\\\"},{\\\"type\\\":\\\"string\\\"}]}}},\\\"record:requestedByIdentityRef\\\":{\\\"type\\\":\\\"object\\\",\\\"required\\\":[\\\"type\\\",\\\"id\\\",\\\"name\\\"],\\\"additionalProperties\\\":true,\\\"properties\\\":{\\\"type\\\":{\\\"type\\\":\\\"string\\\"},\\\"id\\\":{\\\"type\\\":\\\"string\\\"},\\\"name\\\":{\\\"type\\\":\\\"string\\\"}}}},\\\"$ref\\\":\\\"#/definitions/record:AccessRequestDynamicApproverInput\\\"}\",\n \"exampleInput\": {\n \"accessRequestId\": \"4b4d982dddff4267ab12f0f1e72b5a6d\",\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n },\n \"requestedItems\": [\n {\n \"id\": \"2c91808b6ef1d43e016efba0ce470904\",\n \"name\": \"Engineering Access\",\n \"type\": \"ACCESS_PROFILE\",\n \"operation\": \"Add\",\n \"description\": \"Engineering Access\",\n \"comment\": \"William needs this access for his day to day job activities.\"\n },\n {\n \"id\": \"2c91808b6ef1d43e016efba0ce470904\",\n \"name\": \"Engineering Access\",\n \"type\": \"ACCESS_PROFILE\",\n \"operation\": \"Add\",\n \"description\": \"Engineering Access\",\n \"comment\": \"William needs this access for his day to day job activities.\"\n }\n ],\n \"requestedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n }\n },\n \"description\": \"Trigger for getting a dynamic approver.\",\n \"outputSchema\": \"{\\\"definitions\\\":{\\\"record:AccessRequestDynamicApproverOutput\\\":{\\\"type\\\":[\\\"null\\\",\\\"object\\\"],\\\"required\\\":[\\\"id\\\",\\\"name\\\",\\\"type\\\"],\\\"additionalProperties\\\":true,\\\"properties\\\":{\\\"id\\\":{\\\"type\\\":\\\"string\\\"},\\\"name\\\":{\\\"type\\\":\\\"string\\\"},\\\"type\\\":{\\\"type\\\":\\\"string\\\"}}}},\\\"$ref\\\":\\\"#/definitions/record:AccessRequestDynamicApproverOutput\\\"}\",\n \"exampleOutput\": {\n \"id\": \"2c91808b6ef1d43e016efba0ce470906\",\n \"name\": \"Adam Adams\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"id\": \"idn:access-request-dynamic-approver\",\n \"name\": \"Access Request Dynamic Approver\",\n \"type\": \"REQUEST_RESPONSE\",\n \"inputSchema\": \"{\\\"definitions\\\":{\\\"record:AccessRequestDynamicApproverInput\\\":{\\\"type\\\":\\\"object\\\",\\\"required\\\":[\\\"accessRequestId\\\",\\\"requestedFor\\\",\\\"requestedItems\\\",\\\"requestedBy\\\"],\\\"additionalProperties\\\":true,\\\"properties\\\":{\\\"accessRequestId\\\":{\\\"type\\\":\\\"string\\\"},\\\"requestedFor\\\":{\\\"$ref\\\":\\\"#/definitions/record:requestedForIdentityRef\\\"},\\\"requestedItems\\\":{\\\"type\\\":\\\"array\\\",\\\"items\\\":{\\\"$ref\\\":\\\"#/definitions/record:requestedObjectRef\\\"}},\\\"requestedBy\\\":{\\\"$ref\\\":\\\"#/definitions/record:requestedByIdentityRef\\\"}}},\\\"record:requestedForIdentityRef\\\":{\\\"type\\\":\\\"object\\\",\\\"required\\\":[\\\"id\\\",\\\"name\\\",\\\"type\\\"],\\\"additionalProperties\\\":true,\\\"properties\\\":{\\\"id\\\":{\\\"type\\\":\\\"string\\\"},\\\"name\\\":{\\\"type\\\":\\\"string\\\"},\\\"type\\\":{\\\"type\\\":\\\"string\\\"}}},\\\"record:requestedObjectRef\\\":{\\\"type\\\":\\\"object\\\",\\\"optional\\\":[\\\"description\\\",\\\"comment\\\"],\\\"required\\\":[\\\"id\\\",\\\"name\\\",\\\"type\\\",\\\"operation\\\"],\\\"additionalProperties\\\":true,\\\"properties\\\":{\\\"id\\\":{\\\"type\\\":\\\"string\\\"},\\\"name\\\":{\\\"type\\\":\\\"string\\\"},\\\"description\\\":{\\\"oneOf\\\":[{\\\"type\\\":\\\"null\\\"},{\\\"type\\\":\\\"string\\\"}]},\\\"type\\\":{\\\"type\\\":\\\"string\\\"},\\\"operation\\\":{\\\"type\\\":\\\"string\\\"},\\\"comment\\\":{\\\"oneOf\\\":[{\\\"type\\\":\\\"null\\\"},{\\\"type\\\":\\\"string\\\"}]}}},\\\"record:requestedByIdentityRef\\\":{\\\"type\\\":\\\"object\\\",\\\"required\\\":[\\\"type\\\",\\\"id\\\",\\\"name\\\"],\\\"additionalProperties\\\":true,\\\"properties\\\":{\\\"type\\\":{\\\"type\\\":\\\"string\\\"},\\\"id\\\":{\\\"type\\\":\\\"string\\\"},\\\"name\\\":{\\\"type\\\":\\\"string\\\"}}}},\\\"$ref\\\":\\\"#/definitions/record:AccessRequestDynamicApproverInput\\\"}\",\n \"exampleInput\": {\n \"accessRequestId\": \"4b4d982dddff4267ab12f0f1e72b5a6d\",\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n },\n \"requestedItems\": [\n {\n \"id\": \"2c91808b6ef1d43e016efba0ce470904\",\n \"name\": \"Engineering Access\",\n \"type\": \"ACCESS_PROFILE\",\n \"operation\": \"Add\",\n \"description\": \"Engineering Access\",\n \"comment\": \"William needs this access for his day to day job activities.\"\n },\n {\n \"id\": \"2c91808b6ef1d43e016efba0ce470904\",\n \"name\": \"Engineering Access\",\n \"type\": \"ACCESS_PROFILE\",\n \"operation\": \"Add\",\n \"description\": \"Engineering Access\",\n \"comment\": \"William needs this access for his day to day job activities.\"\n }\n ],\n \"requestedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n }\n },\n \"description\": \"Trigger for getting a dynamic approver.\",\n \"outputSchema\": \"{\\\"definitions\\\":{\\\"record:AccessRequestDynamicApproverOutput\\\":{\\\"type\\\":[\\\"null\\\",\\\"object\\\"],\\\"required\\\":[\\\"id\\\",\\\"name\\\",\\\"type\\\"],\\\"additionalProperties\\\":true,\\\"properties\\\":{\\\"id\\\":{\\\"type\\\":\\\"string\\\"},\\\"name\\\":{\\\"type\\\":\\\"string\\\"},\\\"type\\\":{\\\"type\\\":\\\"string\\\"}}}},\\\"$ref\\\":\\\"#/definitions/record:AccessRequestDynamicApproverOutput\\\"}\",\n \"exampleOutput\": {\n \"id\": \"2c91808b6ef1d43e016efba0ce470906\",\n \"name\": \"Adam Adams\",\n \"type\": \"IDENTITY\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d0b8e950-c514-4cf1-b3bb-be5acde12cb5", + "id": "e0b8ac8d-3ff9-4e4b-b125-c6b55f4a7306", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177540,7 +184160,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -177549,7 +184169,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"idn:access-request-post-approval\"" }, { "disabled": true, @@ -177558,7 +184178,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -177588,12 +184208,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "448b3f02-cb72-481a-8b39-c0ad83437a37", + "id": "0f01f678-6186-4327-a844-d8696dcb0456", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177629,7 +184249,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -177638,7 +184258,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"idn:access-request-post-approval\"" }, { "disabled": true, @@ -177647,7 +184267,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -177677,12 +184297,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f82d403a-d3ad-4e14-809d-11ebd054a66e", + "id": "3f33551b-c365-4020-8747-d8ebd40cfc71", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177718,7 +184338,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -177727,7 +184347,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"idn:access-request-post-approval\"" }, { "disabled": true, @@ -177736,7 +184356,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -177766,12 +184386,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "fe740cf2-a6e5-455a-8b17-9f5f0bc6568c", + "id": "25afe7a7-bdf5-471a-94ce-7168ec1fe04e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177807,7 +184427,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -177816,7 +184436,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"idn:access-request-post-approval\"" }, { "disabled": true, @@ -177825,7 +184445,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -177855,12 +184475,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "458f1279-bcd8-46b2-b9e5-887666ff6801", + "id": "a17dfb5a-8f5c-4927-b269-7005d1004d12", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177896,7 +184516,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -177905,7 +184525,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"idn:access-request-post-approval\"" }, { "disabled": true, @@ -177914,7 +184534,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "name" } ], "variable": [] @@ -177944,7 +184564,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -177955,7 +184575,7 @@ } }, { - "id": "1a2d03ef-ac7d-4eb6-ab24-5639a1ecd7ae", + "id": "7cc3506f-5211-4038-a4a5-5d2387e4f045", "name": "Create a Subscription", "request": { "name": "Create a Subscription", @@ -177986,7 +184606,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"HTTP\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -177997,8 +184617,8 @@ }, "response": [ { - "id": "6cec536f-65be-403f-8b93-2eaa6cbb7c43", - "name": "New subscription to a trigger. The trigger can now be invoked by the method defined in the subscription.", + "id": "7cc239c2-3661-47d4-bee2-51c21d06c872", + "name": "HTTP Subscription", "originalRequest": { "url": { "path": [ @@ -178031,7 +184651,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"HTTP\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -178048,13 +184668,13 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"INLINE\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n}", + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"HTTP\",\n \"name\": \"Access request subscription\",\n \"triggerName\": \"Access Requested\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"Access requested to site xyz\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": null\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": null\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"123456789012\",\n \"awsRegion\": \"us-west-1\"\n },\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1824136e-ddec-4516-b1b6-9afb26743a0c", - "name": "Client Error - Returned if the request body is invalid.", + "id": "143aa409-bb2f-4c17-8b19-b58b957cdba3", + "name": "HTTP Async Subscription", "originalRequest": { "url": { "path": [ @@ -178087,7 +184707,119 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"HTTP\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Created", + "code": 201, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"HTTP\",\n \"name\": \"Access request subscription\",\n \"triggerName\": \"Access Requested\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"Access requested to site xyz\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": null\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": null\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"123456789012\",\n \"awsRegion\": \"us-west-1\"\n },\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "06532a2f-53d7-44bb-829e-e1fb0423bc9c", + "name": "EventBridge Subscription", + "originalRequest": { + "url": { + "path": [ + "trigger-subscriptions" + ], + "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\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"EVENTBRIDGE\",\n \"eventBridgeConfig\": {\n \"awsAccount\": \"123456789012\",\n \"awsRegion\": \"us-west-1\"\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Created", + "code": 201, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"HTTP\",\n \"name\": \"Access request subscription\",\n \"triggerName\": \"Access Requested\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"Access requested to site xyz\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": null\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": null\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"123456789012\",\n \"awsRegion\": \"us-west-1\"\n },\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "49fdc0a6-962c-4e16-b0e5-b554b67e3ece", + "name": "HTTP Async Subscription", + "originalRequest": { + "url": { + "path": [ + "trigger-subscriptions" + ], + "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\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"HTTP\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -178104,13 +184836,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "439d62f1-17bb-4a1e-96ea-1452728d7c84", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "a1c64014-f0aa-4d44-8cf7-ace6ad7f948e", + "name": "EventBridge Subscription", "originalRequest": { "url": { "path": [ @@ -178143,7 +184875,63 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"EVENTBRIDGE\",\n \"eventBridgeConfig\": {\n \"awsAccount\": \"123456789012\",\n \"awsRegion\": \"us-west-1\"\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\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": "30a94739-bcd5-43fa-8dd4-33294e7ec082", + "name": "EventBridge Subscription", + "originalRequest": { + "url": { + "path": [ + "trigger-subscriptions" + ], + "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\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"EVENTBRIDGE\",\n \"eventBridgeConfig\": {\n \"awsAccount\": \"123456789012\",\n \"awsRegion\": \"us-west-1\"\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -178160,13 +184948,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c51004cf-0f1f-4217-b718-c6901122dd33", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "bbbd189b-5de5-492e-a599-45a138b47256", + "name": "An example of a 403 response object", "originalRequest": { "url": { "path": [ @@ -178199,7 +184987,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"HTTP\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -178216,13 +185004,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "246d0334-052c-4b3f-b67d-12725b02e426", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "4484fa53-a881-489d-ad8c-a6575be5ef14", + "name": "HTTP Subscription", "originalRequest": { "url": { "path": [ @@ -178255,7 +185043,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"HTTP\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -178272,13 +185060,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3bc5b1a6-198e-47ca-a792-b238ece1866a", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "e4e8945e-e02d-4054-bac3-49083938218b", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -178311,7 +185099,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"HTTP\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -178328,7 +185116,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -178339,7 +185127,7 @@ } }, { - "id": "b6713285-8999-4d49-b86a-31b3e734c26e", + "id": "5e211e5d-f15d-4f67-bb67-3abd01979f95", "name": "List Subscriptions", "request": { "name": "List Subscriptions", @@ -178380,7 +185168,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -178389,7 +185177,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"12cff757-c0c0-413b-8ad7-2a47956d1e89\"" }, { "disabled": true, @@ -178398,7 +185186,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "triggerName" } ], "variable": [] @@ -178414,8 +185202,8 @@ }, "response": [ { - "id": "7b8b9fac-03ca-437f-b686-fd4058f8b8af", - "name": "List of subscriptions.", + "id": "8ab5adef-7ac4-4fc3-91af-e8839a3cfe85", + "name": "HTTP Subscription", "originalRequest": { "url": { "path": [ @@ -178450,7 +185238,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -178459,7 +185247,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"12cff757-c0c0-413b-8ad7-2a47956d1e89\"" }, { "disabled": true, @@ -178468,7 +185256,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "triggerName" } ], "variable": [] @@ -178498,12 +185286,190 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"SCRIPT\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"DYNAMIC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n },\n {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"HTTP\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"triggerId\": \"idn:access-requested\",\n \"triggerName\": \"Access Requested\",\n \"type\": \"HTTP\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": null\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "59572a98-a27b-46b1-aa5d-06129b22d748", + "id": "41088601-fce4-4854-aebe-3fd8f4880e13", + "name": "HTTP Async Subscription", + "originalRequest": { + "url": { + "path": [ + "trigger-subscriptions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*\n\n**triggerId**: *eq*\n\n**type**: *eq, le*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"12cff757-c0c0-413b-8ad7-2a47956d1e89\"" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **triggerId, triggerName**", + "type": "text/plain" + }, + "key": "sorters", + "value": "triggerName" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"triggerId\": \"idn:access-requested\",\n \"triggerName\": \"Access Requested\",\n \"type\": \"HTTP\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": null\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "6a8c6106-1284-47dc-8b68-3fed3c72f6a9", + "name": "EventBridge Subscription", + "originalRequest": { + "url": { + "path": [ + "trigger-subscriptions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*\n\n**triggerId**: *eq*\n\n**type**: *eq, le*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"12cff757-c0c0-413b-8ad7-2a47956d1e89\"" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **triggerId, triggerName**", + "type": "text/plain" + }, + "key": "sorters", + "value": "triggerName" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"triggerId\": \"idn:access-requested\",\n \"triggerName\": \"Access Requested\",\n \"type\": \"EVENTBRIDGE\",\n \"eventBridgeConfig\": {\n \"awsAccount\": \"123456789012\",\n \"awsRegion\": \"us-west-1\"\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "bd1be174-5a2d-44de-ac38-810131659407", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178539,7 +185505,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -178548,7 +185514,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"12cff757-c0c0-413b-8ad7-2a47956d1e89\"" }, { "disabled": true, @@ -178557,7 +185523,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "triggerName" } ], "variable": [] @@ -178587,12 +185553,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "69caeb93-8c79-4b05-80c4-f35064f2fe35", + "id": "b21f0743-7699-426e-a987-0af3d64995e9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178628,7 +185594,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -178637,7 +185603,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"12cff757-c0c0-413b-8ad7-2a47956d1e89\"" }, { "disabled": true, @@ -178646,7 +185612,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "triggerName" } ], "variable": [] @@ -178676,12 +185642,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eaa7e769-89e1-41ea-b5e9-ebfcc8f5e861", + "id": "485f2847-6fa8-41cf-88f6-a3bff7ab022a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178717,7 +185683,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -178726,7 +185692,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"12cff757-c0c0-413b-8ad7-2a47956d1e89\"" }, { "disabled": true, @@ -178735,7 +185701,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "triggerName" } ], "variable": [] @@ -178765,12 +185731,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a258813b-315a-41ba-864c-4f7d66472c5a", + "id": "4591cbad-627f-4836-88b0-d58a10143f0c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178806,7 +185772,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -178815,7 +185781,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"12cff757-c0c0-413b-8ad7-2a47956d1e89\"" }, { "disabled": true, @@ -178824,7 +185790,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "triggerName" } ], "variable": [] @@ -178854,12 +185820,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a4ed484-5aa8-4b6a-b908-b20a3b6053cb", + "id": "1a9c9bda-329d-449c-8fe9-7464d847e245", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178895,7 +185861,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -178904,7 +185870,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"12cff757-c0c0-413b-8ad7-2a47956d1e89\"" }, { "disabled": true, @@ -178913,7 +185879,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "triggerName" } ], "variable": [] @@ -178943,7 +185909,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -178954,7 +185920,7 @@ } }, { - "id": "1759d0b5-96a1-4922-9141-f1a42b0dfd25", + "id": "aabd8d56-13d6-40c3-aac3-e2ff20c02262", "name": "Update a Subscription", "request": { "name": "Update a Subscription", @@ -178974,7 +185940,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "0f11f2a4-7c94-4bf3-a2bd-742580fe3bde", "key": "id", "disabled": true, "description": { @@ -178997,7 +185963,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"HTTP\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"type\": \"HTTP\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -179008,8 +185974,8 @@ }, "response": [ { - "id": "df1a064a-c197-4b17-9572-068d70bcf195", - "name": "Updated subscription.", + "id": "d299d74d-a7ed-4922-86f4-ab51bd1ebd24", + "name": "HTTP Subscription", "originalRequest": { "url": { "path": [ @@ -179043,7 +186009,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"HTTP\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"type\": \"HTTP\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -179060,13 +186026,13 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"INLINE\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n}", + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"HTTP\",\n \"name\": \"Access request subscription\",\n \"triggerName\": \"Access Requested\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"Access requested to site xyz\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": null\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": null\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"123456789012\",\n \"awsRegion\": \"us-west-1\"\n },\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "84cd46cb-21f3-4b09-8dd0-2a5ba22b9ef1", - "name": "Client Error - Returned if the request body is invalid.", + "id": "7fddbb95-87f0-4f24-851b-ec05a402fa5d", + "name": "HTTP Async Subscription", "originalRequest": { "url": { "path": [ @@ -179100,7 +186066,121 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"HTTP\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"type\": \"HTTP\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"HTTP\",\n \"name\": \"Access request subscription\",\n \"triggerName\": \"Access Requested\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"Access requested to site xyz\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": null\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": null\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"123456789012\",\n \"awsRegion\": \"us-west-1\"\n },\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "cbf3b17e-960a-49b8-afe9-b23ec98e3237", + "name": "EventBridge Subscription", + "originalRequest": { + "url": { + "path": [ + "trigger-subscriptions", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"type\": \"EVENTBRIDGE\",\n \"eventBridgeConfig\": {\n \"awsAccount\": \"123456789012\",\n \"awsRegion\": \"us-west-1\"\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"HTTP\",\n \"name\": \"Access request subscription\",\n \"triggerName\": \"Access Requested\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"Access requested to site xyz\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": null\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": null\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"123456789012\",\n \"awsRegion\": \"us-west-1\"\n },\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "21908b6b-f40f-4f70-9e17-201e044359fa", + "name": "HTTP Async Subscription", + "originalRequest": { + "url": { + "path": [ + "trigger-subscriptions", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"type\": \"HTTP\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -179117,13 +186197,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "726ff44d-5a04-4c19-8f3c-3b53510cddde", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "d365b4c3-a49d-4472-93fa-d6d11ddfbdad", + "name": "EventBridge Subscription", "originalRequest": { "url": { "path": [ @@ -179157,7 +186237,64 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"HTTP\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"type\": \"EVENTBRIDGE\",\n \"eventBridgeConfig\": {\n \"awsAccount\": \"123456789012\",\n \"awsRegion\": \"us-west-1\"\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\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": "f00c813b-3eec-4e69-a8e3-0e1285d30f43", + "name": "EventBridge Subscription", + "originalRequest": { + "url": { + "path": [ + "trigger-subscriptions", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"type\": \"EVENTBRIDGE\",\n \"eventBridgeConfig\": {\n \"awsAccount\": \"123456789012\",\n \"awsRegion\": \"us-west-1\"\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -179174,13 +186311,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "741bd22f-9e05-4605-b906-e73b84e8b751", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "75a570dd-782c-4b72-98ac-395b90d17869", + "name": "An example of a 403 response object", "originalRequest": { "url": { "path": [ @@ -179214,7 +186351,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"HTTP\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"type\": \"HTTP\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -179231,13 +186368,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "dbcf1d9d-5d92-48d1-87ba-8629d5878285", - "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "id": "6429d344-4efb-4f50-b62f-b93033195818", + "name": "An example of a 404 response object", "originalRequest": { "url": { "path": [ @@ -179271,7 +186408,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"HTTP\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"type\": \"HTTP\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -179288,13 +186425,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "136e5e35-cb7b-4147-8a05-a018378ff666", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "622b0abb-d38f-4893-b7dc-3d7bb6f70346", + "name": "HTTP Subscription", "originalRequest": { "url": { "path": [ @@ -179328,7 +186465,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"HTTP\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"type\": \"HTTP\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -179345,13 +186482,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c5ee4ec4-baa9-4768-b02b-f3941a4b00c2", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "1efe58a3-b047-46e0-842f-016efa4e68a7", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -179385,7 +186522,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"HTTP\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"Access request subscription\",\n \"description\": \"Access requested to site xyz\",\n \"type\": \"HTTP\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": \"eRtg4%6yuI!\"\n }\n },\n \"enabled\": true,\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -179402,7 +186539,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -179413,7 +186550,7 @@ } }, { - "id": "332751eb-5664-418c-b90b-40ed5455bcc0", + "id": "da260e6e-fd46-4650-85b5-26455a64ce92", "name": "Patch a Subscription", "request": { "name": "Patch a Subscription", @@ -179433,7 +186570,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "0f11f2a4-7c94-4bf3-a2bd-742580fe3bde", "key": "id", "disabled": true, "description": { @@ -179456,7 +186593,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"A new description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"A new name\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -179467,7 +186604,7 @@ }, "response": [ { - "id": "44d24add-3df4-4982-88cd-dc15a778c918", + "id": "c5481a9f-97b0-4214-9586-20d91ef78d5b", "name": "Updated subscription.", "originalRequest": { "url": { @@ -179502,7 +186639,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"A new description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"A new name\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -179519,12 +186656,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"INLINE\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n}", + "body": "{\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"triggerId\": \"idn:access-requested\",\n \"type\": \"HTTP\",\n \"name\": \"Access request subscription\",\n \"triggerName\": \"Access Requested\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"Access requested to site xyz\",\n \"httpConfig\": {\n \"url\": \"https://www.example.com\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"BASIC_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"user@example.com\",\n \"password\": null\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": null\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"123456789012\",\n \"awsRegion\": \"us-west-1\"\n },\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "652e6121-a232-4a86-9bbf-2b8ebfda726a", + "id": "d5a82fec-5aa9-4488-99a7-7f87098e1199", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179559,7 +186696,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"A new description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"A new name\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -179576,12 +186713,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b8607c52-02e4-4de9-9dee-d0292a7cde67", + "id": "f3aaa671-7552-48e5-8426-a106168ca918", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179616,7 +186753,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"A new description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"A new name\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -179633,12 +186770,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "da3045e0-214b-4e50-9d49-e199044c9c3c", + "id": "c87cb759-da67-4db7-8b5a-015ce6c78cf8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179673,7 +186810,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"A new description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"A new name\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -179690,12 +186827,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c0c724d4-c504-4b56-8398-48f255dfe004", + "id": "f7274cc7-282b-4d35-a472-9086002caa1f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -179730,7 +186867,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"A new description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"A new name\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -179747,12 +186884,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7243bb7c-40b3-439e-9a7f-9bdd690d348f", + "id": "2efde52c-3030-4787-a572-788659dfe684", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179787,7 +186924,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"A new description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"A new name\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -179804,12 +186941,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df9d44cd-001a-495b-9c4e-17cbff84958f", + "id": "a111f298-9b59-4029-bc89-dd2d4e382ac8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179844,7 +186981,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"A new description\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"A new name\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -179861,7 +186998,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -179872,7 +187009,7 @@ } }, { - "id": "d0cefd8a-6ce6-4fae-b0ce-b98750d32215", + "id": "00582091-fad0-43a0-9b80-75d3c7d1d1da", "name": "Delete a Subscription", "request": { "name": "Delete a Subscription", @@ -179892,7 +187029,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "0f11f2a4-7c94-4bf3-a2bd-742580fe3bde", "key": "id", "disabled": true, "description": { @@ -179913,7 +187050,7 @@ }, "response": [ { - "id": "3dbc61c7-e1d1-4039-ba43-6d1add446f69", + "id": "1463b3ad-60e7-46cc-9594-f2e837ad51bb", "name": "Subscription is deleted successfully.", "originalRequest": { "url": { @@ -179947,7 +187084,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f7eb2e99-021c-49ac-91f4-91d1a5c91dd9", + "id": "7d851349-7455-40a2-b5c5-02710096ef5c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179986,12 +187123,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c000fa12-b50c-439d-9001-0cb974fc8149", + "id": "03012c2a-23f8-4b34-9c8a-40a6d7761707", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180030,12 +187167,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "efa6ab90-d7e9-4679-9fcf-ed84dc86eeff", + "id": "c58850a8-bacb-4d07-8d78-e4981102aff8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -180074,12 +187211,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6da6cd22-9d78-4230-870c-916b8965498a", + "id": "8c043ed2-f326-46c1-ab98-23e3971e9902", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -180118,12 +187255,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "71f0b153-6c87-47f6-8f69-a52b8b2f4d15", + "id": "d721396d-c19c-4517-861e-4af848879ae1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180162,12 +187299,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04af9b17-3f77-4d72-bfd8-f1ebb16deb1c", + "id": "e46f5732-fd0d-44bb-9fd9-c48fc14dab48", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180206,7 +187343,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -180217,7 +187354,7 @@ } }, { - "id": "13f11df8-9501-448c-b2aa-25bd79daf908", + "id": "bdf7b518-68e8-4207-a514-5b7f9a216ce9", "name": "Validate a Subscription Filter", "request": { "name": "Validate a Subscription Filter", @@ -180249,7 +187386,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {},\n \"filter\": \"\"\n}", + "raw": "{\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -180260,7 +187397,7 @@ }, "response": [ { - "id": "c22a8b31-ae00-4e8c-bcdf-8ad385634948", + "id": "f7d4efbd-fdaa-4b77-85f8-8128f98e3409", "name": "Boolean whether specified filter expression is valid against the input.", "originalRequest": { "url": { @@ -180295,7 +187432,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {},\n \"filter\": \"\"\n}", + "raw": "{\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -180312,12 +187449,12 @@ "value": "application/json" } ], - "body": "{\n \"isValid\": false,\n \"isValidJSONPath\": false,\n \"isPathExist\": false\n}", + "body": "{\n \"isValid\": true,\n \"isValidJSONPath\": true,\n \"isPathExist\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a5898a0d-e0fb-45c8-810a-a46005b06422", + "id": "4c8ce79e-bbea-4b3d-b8f3-ca37d65bba53", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180352,7 +187489,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {},\n \"filter\": \"\"\n}", + "raw": "{\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -180369,12 +187506,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b02975a3-5e5a-403d-b056-4edfabedcb21", + "id": "66badd6c-4231-4f7a-b864-ab356e941dc5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180409,7 +187546,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {},\n \"filter\": \"\"\n}", + "raw": "{\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -180426,12 +187563,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0faa171b-546b-4a99-bd98-f67efdc7d003", + "id": "8a06c382-58ef-4e91-96c9-75b30299d6de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -180466,7 +187603,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {},\n \"filter\": \"\"\n}", + "raw": "{\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -180483,12 +187620,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bc4ac47e-dfc4-41df-85eb-032204c6a698", + "id": "0c928cb7-81c5-4270-9ac4-a93564b7a51a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180523,7 +187660,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {},\n \"filter\": \"\"\n}", + "raw": "{\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -180540,12 +187677,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6f76a25f-0c72-459d-97fc-7249e9178346", + "id": "d17c61a3-4c67-424b-928c-f8dfbe62a023", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180580,7 +187717,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {},\n \"filter\": \"\"\n}", + "raw": "{\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"filter\": \"$[?($.identityId == \\\"201327fda1c44704ac01181e963d463c\\\")]\"\n}", "options": { "raw": { "headerFamily": "json", @@ -180597,7 +187734,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -180608,7 +187745,7 @@ } }, { - "id": "df4ad8ec-d2a0-44b1-91e6-de319c34d0c9", + "id": "4a8c28b7-20cb-405f-8df1-12ce496302a6", "name": "List Latest Invocation Statuses", "request": { "name": "List Latest Invocation Statuses", @@ -180650,7 +187787,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -180659,7 +187796,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "triggerId eq \"idn:access-request-dynamic-approver\"" }, { "disabled": true, @@ -180668,7 +187805,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -180684,7 +187821,7 @@ }, "response": [ { - "id": "8c102941-9e5e-45fe-b4d8-2302d4f4d326", + "id": "8f928519-6235-4ba9-a68f-d5ed5965460b", "name": "List of latest invocation statuses.", "originalRequest": { "url": { @@ -180721,7 +187858,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -180730,7 +187867,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "triggerId eq \"idn:access-request-dynamic-approver\"" }, { "disabled": true, @@ -180739,7 +187876,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -180769,12 +187906,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"subscriptionId\": \"\",\n \"startInvocationInput\": {\n \"triggerId\": \"\",\n \"input\": {},\n \"contentJson\": {}\n },\n \"type\": \"REAL_TIME\",\n \"created\": \"\",\n \"completed\": \"\",\n \"completeInvocationInput\": {\n \"localizedError\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"output\": {}\n }\n },\n {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"subscriptionId\": \"\",\n \"startInvocationInput\": {\n \"triggerId\": \"\",\n \"input\": {},\n \"contentJson\": {}\n },\n \"type\": \"REAL_TIME\",\n \"created\": \"\",\n \"completed\": \"\",\n \"completeInvocationInput\": {\n \"localizedError\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"output\": {}\n }\n }\n]", + "body": "[\n {\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"triggerId\": \"idn:access-requested\",\n \"subscriptionId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"startInvocationInput\": {\n \"triggerId\": \"idn:access-requested\",\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"contentJson\": {\n \"workflowId\": 1234\n }\n },\n \"type\": \"TEST\",\n \"created\": \"2020-03-27T20:40:10.738Z\",\n \"completed\": \"2020-03-27T20:42:14.738Z\",\n \"completeInvocationInput\": {\n \"localizedError\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"output\": {\n \"approved\": false\n }\n }\n },\n {\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"triggerId\": \"idn:access-requested\",\n \"subscriptionId\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"startInvocationInput\": {\n \"triggerId\": \"idn:access-requested\",\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"contentJson\": {\n \"workflowId\": 1234\n }\n },\n \"type\": \"TEST\",\n \"created\": \"2020-03-27T20:40:10.738Z\",\n \"completed\": \"2020-03-27T20:42:14.738Z\",\n \"completeInvocationInput\": {\n \"localizedError\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"output\": {\n \"approved\": false\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb9acc9b-fa49-4039-946e-0fb2c1cb69b4", + "id": "cfb4e07b-c308-496a-9283-8829fbe86a50", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180811,7 +187948,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -180820,7 +187957,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "triggerId eq \"idn:access-request-dynamic-approver\"" }, { "disabled": true, @@ -180829,7 +187966,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -180859,12 +187996,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ea45703e-2327-4d2f-86e4-dd3b31f2eb38", + "id": "f393d59a-bf1b-4c08-9822-e498ee45bac9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180901,7 +188038,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -180910,7 +188047,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "triggerId eq \"idn:access-request-dynamic-approver\"" }, { "disabled": true, @@ -180919,7 +188056,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -180949,12 +188086,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "482288b8-9d58-4a52-9445-72e7afb15fc6", + "id": "c6ebf6fb-264b-41a3-8030-d04dcc6b0457", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -180991,7 +188128,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -181000,7 +188137,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "triggerId eq \"idn:access-request-dynamic-approver\"" }, { "disabled": true, @@ -181009,7 +188146,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -181039,12 +188176,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1943cb0a-151d-49d0-bf99-5276a776a6a3", + "id": "ed784ee2-4868-41e2-b320-7ca8516a1547", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181081,7 +188218,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -181090,7 +188227,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "triggerId eq \"idn:access-request-dynamic-approver\"" }, { "disabled": true, @@ -181099,7 +188236,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -181129,12 +188266,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80bcc364-40bc-4ab5-a2db-a3a61893fea9", + "id": "08e32414-90a9-48ff-9b17-2794027dbf5b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181171,7 +188308,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -181180,7 +188317,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "triggerId eq \"idn:access-request-dynamic-approver\"" }, { "disabled": true, @@ -181189,7 +188326,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "" + "value": "created" } ], "variable": [] @@ -181219,7 +188356,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -181230,7 +188367,7 @@ } }, { - "id": "1f2041e2-a894-4004-8256-2442a0e34f6d", + "id": "8f02baeb-bd82-4ca2-a97a-1d2da94ac875", "name": "Complete Trigger Invocation", "request": { "name": "Complete Trigger Invocation", @@ -181251,7 +188388,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "0f11f2a4-7c94-4bf3-a2bd-742580fe3bde", "key": "id", "disabled": true, "description": { @@ -181274,7 +188411,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"secret\": \"\",\n \"output\": {},\n \"error\": \"\"\n}", + "raw": "{\n \"secret\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"output\": {\n \"approved\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -181285,7 +188422,7 @@ }, "response": [ { - "id": "576f65a8-ab67-415d-a852-13f6fa6c2d58", + "id": "b53ad7f9-34c5-41eb-a65b-12e0aad6f666", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -181317,7 +188454,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"secret\": \"\",\n \"output\": {},\n \"error\": \"\"\n}", + "raw": "{\n \"secret\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"output\": {\n \"approved\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -181333,7 +188470,7 @@ "_postman_previewlanguage": "text" }, { - "id": "da626e6d-0bb3-4e04-add6-f6a03c0a9e5f", + "id": "1abe68a0-8e3c-4683-a8e6-be495b8c8677", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -181369,7 +188506,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"secret\": \"\",\n \"output\": {},\n \"error\": \"\"\n}", + "raw": "{\n \"secret\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"output\": {\n \"approved\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -181386,12 +188523,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6195e2bc-2f40-4a9e-842e-8e933e9709d1", + "id": "9b658011-c1be-48e0-a80f-0c2cbe47d497", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -181427,7 +188564,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"secret\": \"\",\n \"output\": {},\n \"error\": \"\"\n}", + "raw": "{\n \"secret\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"output\": {\n \"approved\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -181444,12 +188581,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "37c06073-0b9a-4378-bb53-6880b02bc118", + "id": "11ba5c4b-57d3-47e9-ac9f-4dedbe38341e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181485,7 +188622,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"secret\": \"\",\n \"output\": {},\n \"error\": \"\"\n}", + "raw": "{\n \"secret\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"output\": {\n \"approved\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -181502,12 +188639,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b077b547-f873-4712-8fa7-9e08bf01715a", + "id": "5cb94379-5d52-45cc-b06f-1ce797b46e6f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181543,7 +188680,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"secret\": \"\",\n \"output\": {},\n \"error\": \"\"\n}", + "raw": "{\n \"secret\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"output\": {\n \"approved\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -181560,12 +188697,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87da7136-9318-42e5-b30f-ffe33307ce7b", + "id": "7c7bb2a5-08c9-4d25-a9e7-cbab15e0065b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181601,7 +188738,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"secret\": \"\",\n \"output\": {},\n \"error\": \"\"\n}", + "raw": "{\n \"secret\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"output\": {\n \"approved\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -181618,7 +188755,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -181629,7 +188766,7 @@ } }, { - "id": "cc935673-d2b1-41c7-a323-3d5400223bef", + "id": "bc728b28-006c-4ad5-a421-f3f000df03eb", "name": "Start a Test Invocation", "request": { "name": "Start a Test Invocation", @@ -181661,7 +188798,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"contentJson\": {},\n \"input\": {},\n \"subscriptionIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"triggerId\": \"idn:access-requested\",\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"contentJson\": {\n \"workflowId\": 1234\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -181672,8 +188809,8 @@ }, "response": [ { - "id": "e7c2e886-1369-45f7-b0cf-4a3f6dc24bbf", - "name": "Test trigger invocations that have been started for specified subscription(s).", + "id": "f3120567-f592-4240-bb6c-0dbc036abc41", + "name": "Test Trigger with Mock Input", "originalRequest": { "url": { "path": [ @@ -181707,7 +188844,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"contentJson\": {},\n \"input\": {},\n \"subscriptionIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"triggerId\": \"idn:access-requested\",\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"contentJson\": {\n \"workflowId\": 1234\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -181724,12 +188861,69 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"secret\": \"\",\n \"contentJson\": {}\n },\n {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"secret\": \"\",\n \"contentJson\": {}\n }\n]", + "body": "[\n {\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"triggerId\": \"idn:access-requested\",\n \"secret\": \"0f979022-08be-44f2-b6f9-7393ec73ed9b\",\n \"contentJson\": {\n \"workflowId\": 1234\n }\n },\n {\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"triggerId\": \"idn:access-requested\",\n \"secret\": \"0f979022-08be-44f2-b6f9-7393ec73ed9b\",\n \"contentJson\": {\n \"workflowId\": 1234\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "69c5b539-8282-416a-837b-ba285da2d218", + "id": "870a9af0-92d3-4a18-ad56-0d779b04db32", + "name": "Send Test to only One Subscriber", + "originalRequest": { + "url": { + "path": [ + "trigger-invocations", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"triggerId\": \"idn:access-requested\",\n \"contentJson\": {\n \"workflowId\": 1234\n },\n \"subscriptionIds\": [\n \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\"\n ]\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"triggerId\": \"idn:access-requested\",\n \"secret\": \"0f979022-08be-44f2-b6f9-7393ec73ed9b\",\n \"contentJson\": {\n \"workflowId\": 1234\n }\n },\n {\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"triggerId\": \"idn:access-requested\",\n \"secret\": \"0f979022-08be-44f2-b6f9-7393ec73ed9b\",\n \"contentJson\": {\n \"workflowId\": 1234\n }\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "911ddee8-e80c-48d5-b141-d086953ccca8", "name": "Trigger invocation is skipped, because tenant has not subscribed to the specified trigger.", "originalRequest": { "url": { @@ -181760,7 +188954,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"contentJson\": {},\n \"input\": {},\n \"subscriptionIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"triggerId\": \"idn:access-requested\",\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"contentJson\": {\n \"workflowId\": 1234\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -181776,8 +188970,8 @@ "_postman_previewlanguage": "text" }, { - "id": "721efc75-7612-48c2-83c5-572b985bd75e", - "name": "Client Error - Returned if the request body is invalid.", + "id": "b692eac3-5dc5-4c45-b2fc-7f2ffc46eb81", + "name": "Send Test to only One Subscriber", "originalRequest": { "url": { "path": [ @@ -181811,7 +189005,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"contentJson\": {},\n \"input\": {},\n \"subscriptionIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"triggerId\": \"idn:access-requested\",\n \"contentJson\": {\n \"workflowId\": 1234\n },\n \"subscriptionIds\": [\n \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -181828,13 +189022,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "34c5c740-4cf6-452f-bbaf-cf75cd3be02f", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "9fee6ba2-f487-4aa0-8efe-bd1a35ead694", + "name": "Test Trigger with Mock Input", "originalRequest": { "url": { "path": [ @@ -181868,7 +189062,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"contentJson\": {},\n \"input\": {},\n \"subscriptionIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"triggerId\": \"idn:access-requested\",\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"contentJson\": {\n \"workflowId\": 1234\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -181885,13 +189079,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "611aff25-acbf-4479-897a-2839613ac926", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "592b0c14-3ad1-45bf-a38b-758d7dd19f08", + "name": "An example of a 403 response object", "originalRequest": { "url": { "path": [ @@ -181925,7 +189119,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"contentJson\": {},\n \"input\": {},\n \"subscriptionIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"triggerId\": \"idn:access-requested\",\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"contentJson\": {\n \"workflowId\": 1234\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -181942,13 +189136,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "096128d0-c71f-498b-902a-90990bedc70a", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "b80c95b6-2223-4fc6-af62-a331f68052c9", + "name": "Test Trigger with Mock Input", "originalRequest": { "url": { "path": [ @@ -181982,7 +189176,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"contentJson\": {},\n \"input\": {},\n \"subscriptionIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"triggerId\": \"idn:access-requested\",\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"contentJson\": {\n \"workflowId\": 1234\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -181999,13 +189193,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cfc91b43-7a92-4fa9-baf3-bac619942464", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "ae70cdaf-9dc3-47c4-bb9b-8e598e54feca", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -182039,7 +189233,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"contentJson\": {},\n \"input\": {},\n \"subscriptionIds\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"triggerId\": \"idn:access-requested\",\n \"input\": {\n \"identityId\": \"201327fda1c44704ac01181e963d463c\"\n },\n \"contentJson\": {\n \"workflowId\": 1234\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -182056,7 +189250,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -182073,7 +189267,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": "902cb06b-4d21-4cf1-8d65-cf90fa2e9386", + "id": "01db0951-d2ff-43c9-a879-6755d16fda50", "name": "List Work Items", "request": { "name": "List Work Items", @@ -182114,7 +189308,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -182123,7 +189317,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -182139,7 +189333,7 @@ }, "response": [ { - "id": "89bb0a9c-15d2-4cf6-a33e-b4fc10c5c5e1", + "id": "66b807ef-88b6-47ed-b844-d7942a1ae4e3", "name": "List of work items", "originalRequest": { "url": { @@ -182175,7 +189369,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -182184,7 +189378,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -182214,12 +189408,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"REJECTED\",\n \"type\": \"MANUALACTION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"CANCELED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"RETURNED\",\n \"type\": \"UNKNOWN\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterDisplayName\": \"John Smith\",\n \"ownerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"ownerName\": \"Jason Smith\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"description\": \"Create account on source 'AD'\",\n \"state\": \"FINISHED\",\n \"type\": \"GENERIC\",\n \"remediationItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetName\": \"john.smith\",\n \"targetDisplayName\": \"emailAddress\",\n \"applicationName\": \"Active Directory\",\n \"attributeName\": \"phoneNumber\",\n \"attributeOperation\": \"update\",\n \"attributeValue\": \"512-555-1212\",\n \"nativeIdentity\": \"jason.smith2\"\n },\n \"approvalItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"account\": \"john.smith\",\n \"application\": \"Active Directory\",\n \"name\": \"emailAddress\",\n \"operation\": \"update\",\n \"value\": \"a@b.com\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"Account Create\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"numItems\": 19,\n \"errors\": [\n \"The work item ID that was specified was not found.\"\n ]\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterDisplayName\": \"John Smith\",\n \"ownerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"ownerName\": \"Jason Smith\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"description\": \"Create account on source 'AD'\",\n \"state\": \"FINISHED\",\n \"type\": \"GENERIC\",\n \"remediationItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetName\": \"john.smith\",\n \"targetDisplayName\": \"emailAddress\",\n \"applicationName\": \"Active Directory\",\n \"attributeName\": \"phoneNumber\",\n \"attributeOperation\": \"update\",\n \"attributeValue\": \"512-555-1212\",\n \"nativeIdentity\": \"jason.smith2\"\n },\n \"approvalItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"account\": \"john.smith\",\n \"application\": \"Active Directory\",\n \"name\": \"emailAddress\",\n \"operation\": \"update\",\n \"value\": \"a@b.com\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"Account Create\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"numItems\": 19,\n \"errors\": [\n \"The work item ID that was specified was not found.\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "297ea3a7-5276-4d84-8606-3c3ab067dc65", + "id": "5892a12c-16e1-4340-9247-7503b316d191", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182255,7 +189449,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -182264,7 +189458,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -182294,12 +189488,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "76302fe9-7676-416b-98e1-f8e1f6c074f4", + "id": "b5fd600b-170a-4c64-a724-26deb0c5f313", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182335,7 +189529,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -182344,7 +189538,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -182374,12 +189568,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "494559ba-67ad-4fcb-adf2-40a874e8d43a", + "id": "c22e5245-83d5-4298-ba42-60c4ad8cc171", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -182415,7 +189609,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -182424,7 +189618,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -182454,7 +189648,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -182465,7 +189659,7 @@ } }, { - "id": "a7732f72-561a-4649-b1aa-02a6d475d0db", + "id": "c8f67cc3-2f0d-4a20-89e9-720b910ba54f", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -182489,7 +189683,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -182516,7 +189710,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -182532,7 +189726,7 @@ }, "response": [ { - "id": "e03b4d7c-cdcd-4958-87e5-bd887a08cd11", + "id": "fb4e45c3-b42b-48a4-9e8a-ec84157ea0c6", "name": "List of completed work items.", "originalRequest": { "url": { @@ -182551,7 +189745,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -182578,7 +189772,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -182608,12 +189802,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"REJECTED\",\n \"type\": \"MANUALACTION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"CANCELED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"RETURNED\",\n \"type\": \"UNKNOWN\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterDisplayName\": \"John Smith\",\n \"ownerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"ownerName\": \"Jason Smith\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"description\": \"Create account on source 'AD'\",\n \"state\": \"FINISHED\",\n \"type\": \"GENERIC\",\n \"remediationItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetName\": \"john.smith\",\n \"targetDisplayName\": \"emailAddress\",\n \"applicationName\": \"Active Directory\",\n \"attributeName\": \"phoneNumber\",\n \"attributeOperation\": \"update\",\n \"attributeValue\": \"512-555-1212\",\n \"nativeIdentity\": \"jason.smith2\"\n },\n \"approvalItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"account\": \"john.smith\",\n \"application\": \"Active Directory\",\n \"name\": \"emailAddress\",\n \"operation\": \"update\",\n \"value\": \"a@b.com\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"Account Create\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"numItems\": 19,\n \"errors\": [\n \"The work item ID that was specified was not found.\"\n ]\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterDisplayName\": \"John Smith\",\n \"ownerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"ownerName\": \"Jason Smith\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"description\": \"Create account on source 'AD'\",\n \"state\": \"FINISHED\",\n \"type\": \"GENERIC\",\n \"remediationItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetName\": \"john.smith\",\n \"targetDisplayName\": \"emailAddress\",\n \"applicationName\": \"Active Directory\",\n \"attributeName\": \"phoneNumber\",\n \"attributeOperation\": \"update\",\n \"attributeValue\": \"512-555-1212\",\n \"nativeIdentity\": \"jason.smith2\"\n },\n \"approvalItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"account\": \"john.smith\",\n \"application\": \"Active Directory\",\n \"name\": \"emailAddress\",\n \"operation\": \"update\",\n \"value\": \"a@b.com\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"Account Create\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"numItems\": 19,\n \"errors\": [\n \"The work item ID that was specified was not found.\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4da8a0c4-2415-4dec-99cf-d07acf11d00e", + "id": "320537f7-5bd5-4142-bb26-ddbea04a930d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182632,7 +189826,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -182659,7 +189853,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -182689,12 +189883,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "945d29de-53e8-45a3-93bb-d5d380cb1510", + "id": "6ae7ba04-ef05-4110-ae74-9baa84718120", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182713,7 +189907,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -182740,7 +189934,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -182770,12 +189964,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4baf25d3-b814-470d-898c-1f1a9863d510", + "id": "a2012669-ffba-4593-91fb-3de6eea85cbe", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -182794,7 +189988,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" }, { "disabled": true, @@ -182821,7 +190015,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" } ], "variable": [] @@ -182851,7 +190045,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -182862,7 +190056,7 @@ } }, { - "id": "97447590-63af-40e1-a6b4-237d2cf8166d", + "id": "4e19487e-23d9-4494-a3e4-17ed84e1f12a", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -182886,7 +190080,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -182902,7 +190096,7 @@ }, "response": [ { - "id": "44ab546d-45a6-4ca7-9d6f-4f543698805b", + "id": "2fb99966-7b70-4855-9394-227147d7fc17", "name": "List of work items", "originalRequest": { "url": { @@ -182921,7 +190115,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -182951,12 +190145,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"count\": \"\"\n },\n {\n \"count\": \"\"\n }\n]", + "body": "[\n {\n \"count\": 29\n },\n {\n \"count\": 29\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "70a7860a-ad51-42ed-8227-568eb03d01b8", + "id": "10d42039-8e2f-46b9-ac69-929e40bce300", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182975,7 +190169,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183005,12 +190199,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5319a853-8571-4140-867d-81e473b20c57", + "id": "320a0543-5ac3-47ae-a513-7acbdbdf30b3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183029,7 +190223,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183059,12 +190253,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "1d2b8d79-a716-4ae7-a9d0-4a3a4703c77f", + "id": "c75bde6f-b341-4dab-9dd5-b0dc2ad4a8dd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183083,7 +190277,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183113,7 +190307,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -183124,7 +190318,7 @@ } }, { - "id": "45de0eff-bbc5-47be-9798-6e76817ebb45", + "id": "8c7f009e-2f65-4aee-8f1e-d3ea84e541bb", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -183149,7 +190343,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183165,7 +190359,7 @@ }, "response": [ { - "id": "dfea4bf4-5175-4d95-b281-7451058a8a08", + "id": "ea640049-3aa5-44d2-a262-b4df1f512a89", "name": "List of work items", "originalRequest": { "url": { @@ -183185,7 +190379,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183215,12 +190409,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"count\": \"\"\n },\n {\n \"count\": \"\"\n }\n]", + "body": "[\n {\n \"count\": 29\n },\n {\n \"count\": 29\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f34114c-5e41-4693-bb50-fdba9470ca47", + "id": "0ad8ca21-9784-4104-965a-859f0bca9dfc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183240,7 +190434,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183270,12 +190464,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d69be67d-bf86-47f9-9dda-757479fe1d78", + "id": "baf2c887-a4db-49c8-aa93-0c0a264ee889", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183295,7 +190489,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183325,12 +190519,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "39d74863-fbf6-48d1-abbc-20919dc00fa8", + "id": "a73a808c-83e3-442e-a203-72e9c940f3f1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183350,7 +190544,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183380,7 +190574,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -183391,7 +190585,7 @@ } }, { - "id": "8055d352-50e7-407b-882d-cc0ddd894a1a", + "id": "247dba73-9232-4f03-b744-7cf175f4effc", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -183415,7 +190609,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183431,7 +190625,7 @@ }, "response": [ { - "id": "121dda16-a9d0-4333-b521-508cbe546256", + "id": "a7d31bbb-8d62-42b6-b7de-9c82cf4180b4", "name": "List of work items", "originalRequest": { "url": { @@ -183450,7 +190644,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183480,12 +190674,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"open\": \"\",\n \"completed\": \"\",\n \"total\": \"\"\n },\n {\n \"open\": \"\",\n \"completed\": \"\",\n \"total\": \"\"\n }\n]", + "body": "[\n {\n \"open\": 29,\n \"completed\": 1,\n \"total\": 30\n },\n {\n \"open\": 29,\n \"completed\": 1,\n \"total\": 30\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "963d2c08-b502-45b2-a0da-efea622910d5", + "id": "14221a5b-1461-493f-a99e-18cf01403e7d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183504,7 +190698,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183534,12 +190728,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "893cb0eb-553a-4cba-9d25-b51c1aa0650f", + "id": "52203a60-c55d-4120-866c-82b0af6d723b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183558,7 +190752,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183588,12 +190782,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ac4abb0b-c2d4-4c8c-9439-5bcdbf50fbf3", + "id": "65ba6a63-3a70-468a-8462-d9cf7f390e52", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183612,7 +190806,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183642,7 +190836,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -183653,7 +190847,7 @@ } }, { - "id": "6b21f911-0240-4157-985b-ced747246d0e", + "id": "58d9bc03-eeb5-4f39-a3ae-b01e247fb9a1", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -183677,13 +190871,13 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [ { "type": "any", - "value": "", + "value": "velit aliquip", "key": "id", "disabled": true, "description": { @@ -183704,7 +190898,7 @@ }, "response": [ { - "id": "cbe239f9-da50-4d19-87e2-6239d89e08f4", + "id": "4ba2ac03-01e7-4cca-ab5c-c1c289a69d8b", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -183723,7 +190917,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183753,12 +190947,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"REJECTED\",\n \"type\": \"MANUALACTION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"CANCELED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"RETURNED\",\n \"type\": \"UNKNOWN\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterDisplayName\": \"John Smith\",\n \"ownerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"ownerName\": \"Jason Smith\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"description\": \"Create account on source 'AD'\",\n \"state\": \"FINISHED\",\n \"type\": \"GENERIC\",\n \"remediationItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetName\": \"john.smith\",\n \"targetDisplayName\": \"emailAddress\",\n \"applicationName\": \"Active Directory\",\n \"attributeName\": \"phoneNumber\",\n \"attributeOperation\": \"update\",\n \"attributeValue\": \"512-555-1212\",\n \"nativeIdentity\": \"jason.smith2\"\n },\n \"approvalItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"account\": \"john.smith\",\n \"application\": \"Active Directory\",\n \"name\": \"emailAddress\",\n \"operation\": \"update\",\n \"value\": \"a@b.com\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"Account Create\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"numItems\": 19,\n \"errors\": [\n \"The work item ID that was specified was not found.\"\n ]\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterDisplayName\": \"John Smith\",\n \"ownerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"ownerName\": \"Jason Smith\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"description\": \"Create account on source 'AD'\",\n \"state\": \"FINISHED\",\n \"type\": \"GENERIC\",\n \"remediationItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetName\": \"john.smith\",\n \"targetDisplayName\": \"emailAddress\",\n \"applicationName\": \"Active Directory\",\n \"attributeName\": \"phoneNumber\",\n \"attributeOperation\": \"update\",\n \"attributeValue\": \"512-555-1212\",\n \"nativeIdentity\": \"jason.smith2\"\n },\n \"approvalItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"account\": \"john.smith\",\n \"application\": \"Active Directory\",\n \"name\": \"emailAddress\",\n \"operation\": \"update\",\n \"value\": \"a@b.com\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"Account Create\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"numItems\": 19,\n \"errors\": [\n \"The work item ID that was specified was not found.\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1978db8f-9b1f-4d27-8abc-537a36b511e9", + "id": "94f01933-5df2-4c14-911f-870b777c5a81", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183777,7 +190971,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183807,12 +191001,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "7220810e-2eaf-4c70-8b63-d69782466f79", + "id": "4e103c82-721f-450d-a35f-6a3a501145e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183831,7 +191025,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183861,12 +191055,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "07b0d115-d12a-4075-88d0-1860f729e345", + "id": "83254e5b-ec0f-466f-b58b-ab67edf007e5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183885,7 +191079,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "" + "value": "velit aliquip" } ], "variable": [] @@ -183915,7 +191109,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -183926,7 +191120,7 @@ } }, { - "id": "41eaa537-a184-4247-a1dc-21fa5b6589ef", + "id": "965757ea-c547-4085-8b1f-205b6d236c54", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -183946,7 +191140,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -183967,7 +191161,7 @@ }, "response": [ { - "id": "0f3fd9ab-be85-48b8-8d5f-21efb567e0fc", + "id": "ffb09c7e-40b6-49e6-ae20-f7df13d12636", "name": "A WorkItems object", "originalRequest": { "url": { @@ -184006,12 +191200,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"CANCELED\",\n \"type\": \"TEST\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"REJECTED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterDisplayName\": \"John Smith\",\n \"ownerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"ownerName\": \"Jason Smith\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"description\": \"Create account on source 'AD'\",\n \"state\": \"FINISHED\",\n \"type\": \"GENERIC\",\n \"remediationItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetName\": \"john.smith\",\n \"targetDisplayName\": \"emailAddress\",\n \"applicationName\": \"Active Directory\",\n \"attributeName\": \"phoneNumber\",\n \"attributeOperation\": \"update\",\n \"attributeValue\": \"512-555-1212\",\n \"nativeIdentity\": \"jason.smith2\"\n },\n \"approvalItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"account\": \"john.smith\",\n \"application\": \"Active Directory\",\n \"name\": \"emailAddress\",\n \"operation\": \"update\",\n \"value\": \"a@b.com\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"Account Create\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"numItems\": 19,\n \"errors\": [\n \"The work item ID that was specified was not found.\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec779df6-b3b3-4098-b92b-76d3797a1d77", + "id": "0ff9259e-4af7-472f-a643-3f88ad57af5a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184050,12 +191244,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f8335335-6ac2-4bb5-a3b9-feaaf54101c3", + "id": "6627bf80-aa09-4926-8da5-3ad2c79d2a44", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184094,12 +191288,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c91ac069-8f75-444b-b60e-339dc238ce6b", + "id": "3d78a4a5-d51a-44bf-84be-afc61ba5f5ef", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -184138,7 +191332,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -184149,7 +191343,7 @@ } }, { - "id": "193ac69d-e70f-42cd-afad-70ae8bcf11d3", + "id": "41e54172-a6b2-474f-b749-8744dbf8e674", "name": "Forward a Work Item", "request": { "name": "Forward a Work Item", @@ -184170,7 +191364,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -184193,7 +191387,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"targetOwnerId\": \"\",\n \"comment\": \"\",\n \"sendNotifications\": true\n}", + "raw": "{\n \"targetOwnerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"comment\": \"I'm going on vacation.\",\n \"sendNotifications\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -184204,7 +191398,7 @@ }, "response": [ { - "id": "aff4967b-8d47-4e58-9f81-39865b2b015e", + "id": "516a8c09-5794-47a0-93fd-0416c1dc4386", "name": "Success, but no data is returned.", "originalRequest": { "url": { @@ -184236,7 +191430,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"targetOwnerId\": \"\",\n \"comment\": \"\",\n \"sendNotifications\": true\n}", + "raw": "{\n \"targetOwnerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"comment\": \"I'm going on vacation.\",\n \"sendNotifications\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -184252,7 +191446,7 @@ "_postman_previewlanguage": "text" }, { - "id": "106e251a-ba3b-4ae7-abc2-b2f822d27770", + "id": "170bc7fb-bcfb-4af2-99da-22bea5a0608e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184288,7 +191482,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"targetOwnerId\": \"\",\n \"comment\": \"\",\n \"sendNotifications\": true\n}", + "raw": "{\n \"targetOwnerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"comment\": \"I'm going on vacation.\",\n \"sendNotifications\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -184305,12 +191499,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e9c47150-8e03-4e8e-918d-674fcf655991", + "id": "fe3a2c9d-91eb-4343-8dc6-fe82e155fe9b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -184346,7 +191540,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"targetOwnerId\": \"\",\n \"comment\": \"\",\n \"sendNotifications\": true\n}", + "raw": "{\n \"targetOwnerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"comment\": \"I'm going on vacation.\",\n \"sendNotifications\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -184363,12 +191557,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "749a6ad5-c572-4e3b-8b6c-7b8f1e8f713f", + "id": "82f0d0c7-8584-4a07-8981-9ee0438240d5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184404,7 +191598,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"targetOwnerId\": \"\",\n \"comment\": \"\",\n \"sendNotifications\": true\n}", + "raw": "{\n \"targetOwnerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"comment\": \"I'm going on vacation.\",\n \"sendNotifications\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -184421,12 +191615,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "cf6c0b39-0b1f-42e4-8f1e-c1c48e136e0b", + "id": "998dda5d-367e-4c02-9909-17efb9a933fc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -184462,7 +191656,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"targetOwnerId\": \"\",\n \"comment\": \"\",\n \"sendNotifications\": true\n}", + "raw": "{\n \"targetOwnerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"comment\": \"I'm going on vacation.\",\n \"sendNotifications\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -184479,12 +191673,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2513efe7-278e-47fc-ac10-53ca48936574", + "id": "dc4c6fcb-24bc-41dd-ada4-1cc32225f1ce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184520,7 +191714,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"targetOwnerId\": \"\",\n \"comment\": \"\",\n \"sendNotifications\": true\n}", + "raw": "{\n \"targetOwnerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"comment\": \"I'm going on vacation.\",\n \"sendNotifications\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -184537,7 +191731,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -184548,7 +191742,7 @@ } }, { - "id": "095c1ce4-eaa1-4f98-abfd-8c72e2fc01b8", + "id": "903a4b75-9b39-4820-bd4b-af772a424f2c", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -184570,7 +191764,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -184580,7 +191774,7 @@ }, { "type": "any", - "value": "", + "value": "1211bcaa32112bcef6122adb21cef1ac", "key": "approvalItemId", "disabled": true, "description": { @@ -184601,7 +191795,7 @@ }, "response": [ { - "id": "d578468b-848d-4a41-9c9c-94a91a78c95b", + "id": "e73f533b-c66a-4f8d-8264-368cccb1a633", "name": "A work items details object.", "originalRequest": { "url": { @@ -184642,12 +191836,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"CANCELED\",\n \"type\": \"TEST\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"REJECTED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterDisplayName\": \"John Smith\",\n \"ownerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"ownerName\": \"Jason Smith\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"description\": \"Create account on source 'AD'\",\n \"state\": \"FINISHED\",\n \"type\": \"GENERIC\",\n \"remediationItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetName\": \"john.smith\",\n \"targetDisplayName\": \"emailAddress\",\n \"applicationName\": \"Active Directory\",\n \"attributeName\": \"phoneNumber\",\n \"attributeOperation\": \"update\",\n \"attributeValue\": \"512-555-1212\",\n \"nativeIdentity\": \"jason.smith2\"\n },\n \"approvalItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"account\": \"john.smith\",\n \"application\": \"Active Directory\",\n \"name\": \"emailAddress\",\n \"operation\": \"update\",\n \"value\": \"a@b.com\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"Account Create\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"numItems\": 19,\n \"errors\": [\n \"The work item ID that was specified was not found.\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9dec6e79-60ff-4a7a-8340-103d53a4e712", + "id": "767d5d6a-79d7-4136-a6a9-8008c73a5425", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184688,12 +191882,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "30257e4f-ca09-413a-9b0f-b89d0acde128", + "id": "93163308-deb0-4d93-9336-c846ed08a416", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184734,12 +191928,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b396967e-7233-48bd-91d6-abdffae002c2", + "id": "d30a77eb-41ff-49e8-bbaa-063a0244ab5a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -184780,7 +191974,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -184791,7 +191985,7 @@ } }, { - "id": "f30e86b9-f393-4207-89b6-070033042e31", + "id": "ba367cc3-e6de-4c8d-a394-d70349036389", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -184813,7 +192007,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -184823,7 +192017,7 @@ }, { "type": "any", - "value": "", + "value": "1211bcaa32112bcef6122adb21cef1ac", "key": "approvalItemId", "disabled": true, "description": { @@ -184844,7 +192038,7 @@ }, "response": [ { - "id": "5403bc1e-2e30-459b-9ddd-e38371633d9f", + "id": "1ca4138f-0b10-461f-9d4e-6a59e1f031bf", "name": "A work items details object.", "originalRequest": { "url": { @@ -184885,12 +192079,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"CANCELED\",\n \"type\": \"TEST\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"REJECTED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterDisplayName\": \"John Smith\",\n \"ownerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"ownerName\": \"Jason Smith\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"description\": \"Create account on source 'AD'\",\n \"state\": \"FINISHED\",\n \"type\": \"GENERIC\",\n \"remediationItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetName\": \"john.smith\",\n \"targetDisplayName\": \"emailAddress\",\n \"applicationName\": \"Active Directory\",\n \"attributeName\": \"phoneNumber\",\n \"attributeOperation\": \"update\",\n \"attributeValue\": \"512-555-1212\",\n \"nativeIdentity\": \"jason.smith2\"\n },\n \"approvalItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"account\": \"john.smith\",\n \"application\": \"Active Directory\",\n \"name\": \"emailAddress\",\n \"operation\": \"update\",\n \"value\": \"a@b.com\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"Account Create\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"numItems\": 19,\n \"errors\": [\n \"The work item ID that was specified was not found.\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "84e5cde5-4520-4978-a9d9-46d8e0caaec2", + "id": "07a491d7-d31d-4415-a386-dbd19f96d788", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184931,12 +192125,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "25e5ef73-0af0-4b12-b32f-c870e9ac34bd", + "id": "5c5618f2-1180-45f4-b807-4c3e0c09ac47", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184977,12 +192171,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bded61d2-f0b0-41f8-8e27-8cc62424733b", + "id": "48f59d53-1324-4801-a47c-7fc2959a5d77", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -185023,7 +192217,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -185034,7 +192228,7 @@ } }, { - "id": "a59ea32f-fa72-45ee-976d-23b255ed88e5", + "id": "5317c1ac-e054-4bf3-ac5a-492f468957f2", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -185055,7 +192249,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -185076,7 +192270,7 @@ }, "response": [ { - "id": "414d0759-d709-401d-8f34-346f2efd9851", + "id": "0830c85d-03f5-4aa3-99eb-56cbf4d4d4ba", "name": "A work items details object.", "originalRequest": { "url": { @@ -185116,12 +192310,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"CANCELED\",\n \"type\": \"TEST\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"REJECTED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterDisplayName\": \"John Smith\",\n \"ownerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"ownerName\": \"Jason Smith\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"description\": \"Create account on source 'AD'\",\n \"state\": \"FINISHED\",\n \"type\": \"GENERIC\",\n \"remediationItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetName\": \"john.smith\",\n \"targetDisplayName\": \"emailAddress\",\n \"applicationName\": \"Active Directory\",\n \"attributeName\": \"phoneNumber\",\n \"attributeOperation\": \"update\",\n \"attributeValue\": \"512-555-1212\",\n \"nativeIdentity\": \"jason.smith2\"\n },\n \"approvalItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"account\": \"john.smith\",\n \"application\": \"Active Directory\",\n \"name\": \"emailAddress\",\n \"operation\": \"update\",\n \"value\": \"a@b.com\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"Account Create\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"numItems\": 19,\n \"errors\": [\n \"The work item ID that was specified was not found.\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8ad5275b-72b0-4f4a-9f45-8e86c51a535e", + "id": "d1459aae-66d7-470c-b611-5398cf5d0084", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185161,12 +192355,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5ef1aa94-9d98-49bd-987d-6466e25b170c", + "id": "50311f99-8527-4d67-ae66-3d4369df2caa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185206,12 +192400,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e3aaf5db-3fe4-4589-b532-003083f95e5b", + "id": "8b0b59a0-4931-40eb-aa58-c2f382e9cb5e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -185251,7 +192445,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -185262,7 +192456,7 @@ } }, { - "id": "09570215-ed2c-4099-a491-fb542ab6681a", + "id": "214418f7-bd58-4cf5-bb02-84447ec3a3d9", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -185283,7 +192477,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -185304,7 +192498,7 @@ }, "response": [ { - "id": "73687230-20c0-4ca8-bede-f698a87e06ce", + "id": "08906a7a-7ec7-442d-af10-61b242308a06", "name": "A work items details object.", "originalRequest": { "url": { @@ -185344,12 +192538,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"CANCELED\",\n \"type\": \"TEST\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"REJECTED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterDisplayName\": \"John Smith\",\n \"ownerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"ownerName\": \"Jason Smith\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"description\": \"Create account on source 'AD'\",\n \"state\": \"FINISHED\",\n \"type\": \"GENERIC\",\n \"remediationItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetName\": \"john.smith\",\n \"targetDisplayName\": \"emailAddress\",\n \"applicationName\": \"Active Directory\",\n \"attributeName\": \"phoneNumber\",\n \"attributeOperation\": \"update\",\n \"attributeValue\": \"512-555-1212\",\n \"nativeIdentity\": \"jason.smith2\"\n },\n \"approvalItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"account\": \"john.smith\",\n \"application\": \"Active Directory\",\n \"name\": \"emailAddress\",\n \"operation\": \"update\",\n \"value\": \"a@b.com\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"Account Create\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"numItems\": 19,\n \"errors\": [\n \"The work item ID that was specified was not found.\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ef04de3c-da1c-4e9a-bdd1-a8f96a69211b", + "id": "6aabbc8d-6955-4dea-b501-443368938991", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185389,12 +192583,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0350a8b9-f4ef-42d5-9fe8-ec6a5b1302ce", + "id": "15579988-8239-4a2a-a0b7-1b3e028acdb2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185434,12 +192628,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "512b6baf-e463-4f08-9255-7ee73a4b785e", + "id": "0dca1c5c-43ae-426f-9f3c-b116625cb371", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -185479,7 +192673,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -185490,7 +192684,7 @@ } }, { - "id": "be0eaddd-256e-4b9f-a445-b16eb21ad8ec", + "id": "2f9845c8-d853-486e-a915-29d82e8ed2b7", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -185511,7 +192705,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "ef38f94347e94562b5bb8424a56397d8", "key": "id", "disabled": true, "description": { @@ -185534,7 +192728,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ullamco_45\": -5416713,\n \"esse_16d\": false\n}", + "raw": "{\n \"fieldName\": \"fieldValue\"\n}", "options": { "raw": { "headerFamily": "json", @@ -185545,7 +192739,7 @@ }, "response": [ { - "id": "b76dd452-1b59-48dc-a212-d4aaf43f1fa7", + "id": "5dffd275-8753-4be2-affe-abe2b86d50de", "name": "A work items details object.", "originalRequest": { "url": { @@ -185581,7 +192775,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ullamco_45\": -5416713,\n \"esse_16d\": false\n}", + "raw": "{\n \"fieldName\": \"fieldValue\"\n}", "options": { "raw": { "headerFamily": "json", @@ -185598,12 +192792,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"CANCELED\",\n \"type\": \"TEST\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"REJECTED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"requesterDisplayName\": \"John Smith\",\n \"ownerId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"ownerName\": \"Jason Smith\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"description\": \"Create account on source 'AD'\",\n \"state\": \"FINISHED\",\n \"type\": \"GENERIC\",\n \"remediationItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetId\": \"2c9180835d2e5168015d32f890ca1581\",\n \"targetName\": \"john.smith\",\n \"targetDisplayName\": \"emailAddress\",\n \"applicationName\": \"Active Directory\",\n \"attributeName\": \"phoneNumber\",\n \"attributeOperation\": \"update\",\n \"attributeValue\": \"512-555-1212\",\n \"nativeIdentity\": \"jason.smith2\"\n },\n \"approvalItems\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"account\": \"john.smith\",\n \"application\": \"Active Directory\",\n \"name\": \"emailAddress\",\n \"operation\": \"update\",\n \"value\": \"a@b.com\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"Account Create\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"numItems\": 19,\n \"errors\": [\n \"The work item ID that was specified was not found.\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5cee539b-3b4c-4b65-b38b-c4541f91a170", + "id": "bed54726-c3cd-44d0-8741-141424efcddc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185639,7 +192833,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ullamco_45\": -5416713,\n \"esse_16d\": false\n}", + "raw": "{\n \"fieldName\": \"fieldValue\"\n}", "options": { "raw": { "headerFamily": "json", @@ -185656,12 +192850,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "4086a3c2-b668-458a-b83b-1343bd40d18e", + "id": "3ac5d39f-f77d-4c37-8761-fa4576706a6b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185697,7 +192891,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ullamco_45\": -5416713,\n \"esse_16d\": false\n}", + "raw": "{\n \"fieldName\": \"fieldValue\"\n}", "options": { "raw": { "headerFamily": "json", @@ -185714,12 +192908,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6c3d16ef-735b-4402-b4ee-48096176112e", + "id": "138f58da-8791-43f3-bfc3-b97deb6daca2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -185755,7 +192949,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ullamco_45\": -5416713,\n \"esse_16d\": false\n}", + "raw": "{\n \"fieldName\": \"fieldValue\"\n}", "options": { "raw": { "headerFamily": "json", @@ -185772,7 +192966,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -185789,7 +192983,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": "1fc1acdb-a999-4a19-9c9c-e7fda1f9a984", + "id": "d365a8b2-42d8-4d01-a6a8-3dbe08eb039d", "name": "List Reassignment Config Types", "request": { "name": "List Reassignment Config Types", @@ -185819,7 +193013,7 @@ }, "response": [ { - "id": "7171cb57-9fb9-41b4-a062-408a7e4b00ad", + "id": "f29ac117-8fc4-45c8-926f-01c780657132", "name": "List of Reassignment Configuration Types", "originalRequest": { "url": { @@ -185858,12 +193052,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"internalName\": \"MANUAL_TASKS\",\n \"displayName\": \"\",\n \"description\": \"\"\n },\n {\n \"internalName\": \"ACCESS_REQUESTS\",\n \"displayName\": \"\",\n \"description\": \"\"\n }\n]", + "body": "[\n {\n \"internalName\": \"ACCESS_REQUESTS\",\n \"displayName\": \"Access Requests\",\n \"description\": \"Reassign Access Request Work Items for an identity\"\n },\n {\n \"internalName\": \"ACCESS_REQUESTS\",\n \"displayName\": \"Access Requests\",\n \"description\": \"Reassign Access Request Work Items for an identity\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "92f82e6b-6a92-452f-a3d1-2f10dba108e9", + "id": "a4437709-d0f3-40d2-b1cf-1e5baac82e65", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185902,12 +193096,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "578be4f0-0b11-4d49-9377-5e9aa0f75a29", + "id": "ac9acf86-3186-4ef9-a9b8-2ea841ef4fdd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -185946,12 +193140,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e0133f57-666c-4367-9ba3-985cad519765", + "id": "8065d46d-43ae-42b5-a638-0bcb169ffd83", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185990,12 +193184,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d7ddc325-e4b0-400c-aa55-99f6bade10e9", + "id": "ec3032b8-6dfe-48b7-a00a-28411dca9c31", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -186034,12 +193228,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "69d979b8-45af-45b3-8af7-555222cf5b57", + "id": "91bb029e-c4e8-4888-8285-dd609dbb5273", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -186078,7 +193272,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -186089,7 +193283,7 @@ } }, { - "id": "0350f109-01d4-4fe5-b784-c4e3daf09883", + "id": "fe05022c-459d-45b9-8e28-97fb10bf2327", "name": "List Reassignment Configurations", "request": { "name": "List Reassignment Configurations", @@ -186118,7 +193312,7 @@ }, "response": [ { - "id": "ddcde478-146e-46fb-aa3e-23ff337804cb", + "id": "fd6e2342-65a0-4bd1-b252-ac3215e95681", "name": "A list of Reassignment Configurations for an org", "originalRequest": { "url": { @@ -186156,12 +193350,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n },\n {\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"MANUAL_TASKS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n }\n]", + "body": "[\n {\n \"identity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"configDetails\": [\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"0001-01-01T00:00:00Z\",\n \"auditDetails\": {\n \"created\": \"2022-07-21T11:13:12.345Z\",\n \"createdBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"modified\": \"2022-07-21T11:13:12.345Z\",\n \"modifiedBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n }\n }\n },\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"0001-01-01T00:00:00Z\",\n \"auditDetails\": {\n \"created\": \"2022-07-21T11:13:12.345Z\",\n \"createdBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"modified\": \"2022-07-21T11:13:12.345Z\",\n \"modifiedBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n }\n }\n }\n ]\n },\n {\n \"identity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"configDetails\": [\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"0001-01-01T00:00:00Z\",\n \"auditDetails\": {\n \"created\": \"2022-07-21T11:13:12.345Z\",\n \"createdBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"modified\": \"2022-07-21T11:13:12.345Z\",\n \"modifiedBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n }\n }\n },\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"0001-01-01T00:00:00Z\",\n \"auditDetails\": {\n \"created\": \"2022-07-21T11:13:12.345Z\",\n \"createdBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"modified\": \"2022-07-21T11:13:12.345Z\",\n \"modifiedBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n }\n }\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2f87a3da-608c-4ddf-8894-3529d0c41731", + "id": "88fbe127-ea12-44f8-b7c7-4aed9723a25d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -186199,12 +193393,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b34c9978-584e-4b69-be94-a1ba3cad9cfd", + "id": "11b3e926-bf65-4c4e-980d-b6a4653b5910", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -186242,12 +193436,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "43f0b88c-2385-490e-b16a-acab69f7b340", + "id": "281882be-afb1-47bb-89b2-84176e0cc6a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -186285,12 +193479,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3f681a9f-a0dc-42d7-b9b0-860059d2a630", + "id": "00bebd4b-e2d4-4478-87d9-db97c0d2b450", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -186328,12 +193522,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e1c8b536-2c3a-489f-9d93-bf15d8d31243", + "id": "dcdf25f8-b11e-4a42-ab11-403f9631930f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -186371,12 +193565,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "836c2d39-bd10-4607-9dfd-2fa2be5c08a5", + "id": "aa16a86c-0a94-480f-9fef-c0b9a4788819", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -186414,7 +193608,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -186425,7 +193619,7 @@ } }, { - "id": "d6294bc3-40f1-4b95-b278-ae2c88cdfcbc", + "id": "5fe548c6-5e74-4561-9cb6-68003beb5c0a", "name": "Create a Reassignment Configuration", "request": { "name": "Create a Reassignment Configuration", @@ -186456,7 +193650,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"2c91808781a71ddb0181b9090b5c504e\",\n \"reassignedToId\": \"2c91808781a71ddb0181b9090b53504a\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"2022-07-30T17:00:00.000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -186467,7 +193661,7 @@ }, "response": [ { - "id": "13751062-0361-401a-bc73-4e09e02e3adb", + "id": "a302054c-9e47-4c50-bc19-4a53f05157ef", "name": "The newly created Reassignment Configuration object", "originalRequest": { "url": { @@ -186501,7 +193695,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"2c91808781a71ddb0181b9090b5c504e\",\n \"reassignedToId\": \"2c91808781a71ddb0181b9090b53504a\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"2022-07-30T17:00:00.000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -186518,12 +193712,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"MANUAL_TASKS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"CERTIFICATIONS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n}", + "body": "{\n \"identity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"configDetails\": [\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"0001-01-01T00:00:00Z\",\n \"auditDetails\": {\n \"created\": \"2022-07-21T11:13:12.345Z\",\n \"createdBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"modified\": \"2022-07-21T11:13:12.345Z\",\n \"modifiedBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n }\n }\n },\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"0001-01-01T00:00:00Z\",\n \"auditDetails\": {\n \"created\": \"2022-07-21T11:13:12.345Z\",\n \"createdBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"modified\": \"2022-07-21T11:13:12.345Z\",\n \"modifiedBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f42ad3e-33c9-422a-9bce-9a7c69ca5d1c", + "id": "8384797f-d810-4ceb-bcf2-30e873740fd9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -186557,7 +193751,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"2c91808781a71ddb0181b9090b5c504e\",\n \"reassignedToId\": \"2c91808781a71ddb0181b9090b53504a\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"2022-07-30T17:00:00.000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -186574,12 +193768,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d58d05ba-e8bf-462c-a20a-31dab781f368", + "id": "4c572dad-fabb-478f-9889-9bbca3274096", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -186613,7 +193807,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"2c91808781a71ddb0181b9090b5c504e\",\n \"reassignedToId\": \"2c91808781a71ddb0181b9090b53504a\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"2022-07-30T17:00:00.000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -186630,12 +193824,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d17b9840-190e-4226-bb2d-da5a0e834780", + "id": "2c7ac6f2-4ea0-4c51-a34a-39fc18256645", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -186669,7 +193863,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"2c91808781a71ddb0181b9090b5c504e\",\n \"reassignedToId\": \"2c91808781a71ddb0181b9090b53504a\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"2022-07-30T17:00:00.000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -186686,12 +193880,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "398eebf5-aabe-4756-8d23-e14afff621c9", + "id": "4b9f2595-5567-471e-96cb-900c34cc947e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -186725,7 +193919,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"2c91808781a71ddb0181b9090b5c504e\",\n \"reassignedToId\": \"2c91808781a71ddb0181b9090b53504a\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"2022-07-30T17:00:00.000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -186742,12 +193936,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "71251d99-fadb-4688-bf93-90f34403a6ad", + "id": "32bd7b11-6c79-40ba-a684-6f6a5b40c4e1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -186781,7 +193975,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"2c91808781a71ddb0181b9090b5c504e\",\n \"reassignedToId\": \"2c91808781a71ddb0181b9090b53504a\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"2022-07-30T17:00:00.000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -186798,7 +193992,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -186809,7 +194003,7 @@ } }, { - "id": "7a39f2ca-dda1-4dd1-a884-36a2a497c908", + "id": "1ac9720f-c68c-4203-8c2f-66fcac0c2c39", "name": "Get Reassignment Configuration", "request": { "name": "Get Reassignment Configuration", @@ -186829,7 +194023,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808781a71ddb0181b9090b5c504f", "key": "identityId", "disabled": true, "description": { @@ -186850,7 +194044,7 @@ }, "response": [ { - "id": "045a1524-6919-4c79-933d-c6bf64bb5166", + "id": "f0295ced-c2b7-400e-b2d1-45815526d722", "name": "Reassignment Configuration for an identity", "originalRequest": { "url": { @@ -186889,12 +194083,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"MANUAL_TASKS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"CERTIFICATIONS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n}", + "body": "{\n \"identity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"configDetails\": [\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"0001-01-01T00:00:00Z\",\n \"auditDetails\": {\n \"created\": \"2022-07-21T11:13:12.345Z\",\n \"createdBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"modified\": \"2022-07-21T11:13:12.345Z\",\n \"modifiedBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n }\n }\n },\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"0001-01-01T00:00:00Z\",\n \"auditDetails\": {\n \"created\": \"2022-07-21T11:13:12.345Z\",\n \"createdBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"modified\": \"2022-07-21T11:13:12.345Z\",\n \"modifiedBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2c7756d0-552a-477e-9389-d04b421390db", + "id": "c91ffdda-1900-4cb8-bad3-4230fc961447", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -186933,12 +194127,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2b0fd34a-1e3e-461a-808a-26a87c09fded", + "id": "bf7f6263-7406-459a-8c1d-0dbf19ee786f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -186977,12 +194171,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d64a3722-206c-4548-ba0b-6ede8fa6ed61", + "id": "854732ca-62be-4bbc-a931-1e7404bbfd8e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187021,12 +194215,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2c4d0030-ae70-4bd1-9c13-8d66ef86982e", + "id": "9a969b45-7ef6-4f6f-b568-c9ffa875415b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -187065,12 +194259,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "84cf406c-0ccb-4f5d-b390-e6c902fbac79", + "id": "9bce6c6a-7c33-456c-9ca6-27c1fae9c27b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187109,12 +194303,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f270d93e-67c7-4f7f-bc78-6061f0b57de9", + "id": "df8b0535-93ab-4097-8a17-c45bc323670f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -187153,7 +194347,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -187164,7 +194358,7 @@ } }, { - "id": "c9ee94c4-6747-4730-8f6f-91962e02ff3d", + "id": "83776ea6-b957-4a01-82c7-9035f3cacfb2", "name": "Update Reassignment Configuration", "request": { "name": "Update Reassignment Configuration", @@ -187184,7 +194378,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808781a71ddb0181b9090b5c504e", "key": "identityId", "disabled": true, "description": { @@ -187207,7 +194401,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"2c91808781a71ddb0181b9090b5c504e\",\n \"reassignedToId\": \"2c91808781a71ddb0181b9090b53504a\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"2022-07-30T17:00:00.000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187218,7 +194412,7 @@ }, "response": [ { - "id": "637420ee-ebd6-4d01-8097-475343c49e8e", + "id": "20275618-fc87-42fe-ada4-6ebb4ad9bbea", "name": "Reassignment Configuration updated", "originalRequest": { "url": { @@ -187253,7 +194447,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"2c91808781a71ddb0181b9090b5c504e\",\n \"reassignedToId\": \"2c91808781a71ddb0181b9090b53504a\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"2022-07-30T17:00:00.000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187270,12 +194464,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"MANUAL_TASKS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"CERTIFICATIONS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n}", + "body": "{\n \"identity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"configDetails\": [\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"0001-01-01T00:00:00Z\",\n \"auditDetails\": {\n \"created\": \"2022-07-21T11:13:12.345Z\",\n \"createdBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"modified\": \"2022-07-21T11:13:12.345Z\",\n \"modifiedBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n }\n }\n },\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"0001-01-01T00:00:00Z\",\n \"auditDetails\": {\n \"created\": \"2022-07-21T11:13:12.345Z\",\n \"createdBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"modified\": \"2022-07-21T11:13:12.345Z\",\n \"modifiedBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4d7cc31-726d-49fb-ab87-d61389081e44", + "id": "30a45da8-9b60-492f-b487-8f1f96844f33", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -187310,7 +194504,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"2c91808781a71ddb0181b9090b5c504e\",\n \"reassignedToId\": \"2c91808781a71ddb0181b9090b53504a\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"2022-07-30T17:00:00.000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187327,12 +194521,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3858227f-e6ed-4916-bebf-836502d18294", + "id": "48434f7e-e60f-48e6-aaf5-aa548b7d0581", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -187367,7 +194561,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"2c91808781a71ddb0181b9090b5c504e\",\n \"reassignedToId\": \"2c91808781a71ddb0181b9090b53504a\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"2022-07-30T17:00:00.000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187384,12 +194578,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ced3efc5-c0ca-4bc4-83c5-f43fe8b8e44e", + "id": "d737c2d1-4943-4392-b599-522b5b650706", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187424,7 +194618,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"2c91808781a71ddb0181b9090b5c504e\",\n \"reassignedToId\": \"2c91808781a71ddb0181b9090b53504a\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"2022-07-30T17:00:00.000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187441,12 +194635,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f0f97a8d-703e-4491-8296-547d22277e5a", + "id": "664ac976-209b-4712-80e6-dcf35e431dd1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187481,7 +194675,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"2c91808781a71ddb0181b9090b5c504e\",\n \"reassignedToId\": \"2c91808781a71ddb0181b9090b53504a\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"2022-07-30T17:00:00.000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187498,12 +194692,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c2f30442-a948-4754-86ae-30e40847b822", + "id": "7cf006ae-d339-4ef7-9ed7-743485c09002", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -187538,7 +194732,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"2c91808781a71ddb0181b9090b5c504e\",\n \"reassignedToId\": \"2c91808781a71ddb0181b9090b53504a\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"2022-07-21T11:13:12.345Z\",\n \"endDate\": \"2022-07-30T17:00:00.000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187555,7 +194749,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -187566,7 +194760,7 @@ } }, { - "id": "78fbc79f-c5e7-4893-b127-e50d150c60fa", + "id": "0579221a-9b5b-42ce-b0cf-c49f299af979", "name": "Delete Reassignment Configuration", "request": { "name": "Delete Reassignment Configuration", @@ -187586,7 +194780,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "2c91808781a71ddb0181b9090b5c504e", "key": "identityId", "disabled": true, "description": { @@ -187607,7 +194801,7 @@ }, "response": [ { - "id": "c751c371-b039-40a3-bda4-147d6be62675", + "id": "7a2c1372-d288-47f4-af8d-681e152c6e48", "name": "Reassignment Configuration deleted", "originalRequest": { "url": { @@ -187641,7 +194835,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3cb1ce07-973a-4ce8-b8d0-b241579e2145", + "id": "ca29382a-c477-4545-aa05-5dc795298629", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -187680,12 +194874,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3b0fde37-3501-4d8f-bb29-5d09e71c8e55", + "id": "05e05f46-4999-4e9c-ae61-cee09da1b156", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -187724,12 +194918,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e47c70a-1f8c-4637-b722-20870340851e", + "id": "b8d86588-f276-480e-b7c7-79598a3a7991", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187768,12 +194962,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "2b131dae-7f55-43ee-9ac8-8e12aaa69dac", + "id": "a47c261a-06bf-4a0c-82fe-233cae8798f7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187812,12 +195006,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "389867b4-2f1e-4754-a211-03293d5de651", + "id": "6073c9ee-b5ef-4bba-9504-910a69c00feb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -187856,7 +195050,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -187867,7 +195061,7 @@ } }, { - "id": "a3e3b63f-9f53-4c4e-a6de-8ea9b584d924", + "id": "f558d3e5-d509-41c6-ad91-dffd31c03d97", "name": "Evaluate Reassignment Configuration", "request": { "name": "Evaluate Reassignment Configuration", @@ -187893,22 +195087,13 @@ "type": "text/plain" }, "key": "exclusionFilters", - "value": "" - }, - { - "disabled": true, - "description": { - "content": "Exclusion filters that disable parts of the reassignment evaluation. Possible values are listed below: - `SELF_REVIEW_DELEGATION`: This will exclude delegations of self-review reassignments", - "type": "text/plain" - }, - "key": "exclusionFilters", - "value": "" + "value": "SELF_REVIEW_DELEGATION" } ], "variable": [ { "type": "any", - "value": "", + "value": "2c91808781a71ddb0181b9090b5c504e", "key": "identityId", "disabled": true, "description": { @@ -187918,7 +195103,7 @@ }, { "type": "any", - "value": "MANUAL_TASKS", + "value": "accessRequests", "key": "configType", "disabled": true, "description": { @@ -187939,8 +195124,8 @@ }, "response": [ { - "id": "68542ec6-d9dc-48e8-a7b4-d04fe0207dd6", - "name": "Evaluated Reassignment Configuration", + "id": "504a6557-d6b5-4b77-84c1-c378dcd09f3a", + "name": "Evaluate response when no Reassignment Configuration is found", "originalRequest": { "url": { "path": [ @@ -187960,7 +195145,7 @@ "type": "text/plain" }, "key": "exclusionFilters", - "value": "" + "value": "SELF_REVIEW_DELEGATION" } ], "variable": [] @@ -187990,12 +195175,124 @@ "value": "application/json" } ], - "body": "[\n {\n \"reassignToId\": \"\",\n \"lookupTrail\": [\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION,\"\n },\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION,\"\n }\n ]\n },\n {\n \"reassignToId\": \"\",\n \"lookupTrail\": [\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION,\"\n },\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION,\"\n }\n ]\n }\n]", + "body": "{\n \"reassignToId\": \"2c9180825a6c1adc015a71c9023f0818\",\n \"lookupTrail\": []\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dc2ec466-1798-454f-ae56-27fc76c9952a", + "id": "2d893539-749a-4c0a-92e2-0a3b073e8842", + "name": "Evaluate response when a long Reassignment trail is found", + "originalRequest": { + "url": { + "path": [ + "reassignment-configurations", + ":identityId", + "evaluate", + ":configType" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Exclusion filters that disable parts of the reassignment evaluation. Possible values are listed below: - `SELF_REVIEW_DELEGATION`: This will exclude delegations of self-review reassignments", + "type": "text/plain" + }, + "key": "exclusionFilters", + "value": "SELF_REVIEW_DELEGATION" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"reassignToId\": \"2c9180825a6c1adc015a71c9023f0818\",\n \"lookupTrail\": [\n {\n \"reassignedToId\": \"2c918084575812550157589064f33b89\",\n \"reassignedFromId\": \"2c9180825a6c1adc015a71c9023f0818\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"reassignedToId\": \"073204941f3f49c0b3a3c49d1c17ef0e\",\n \"reassignedFromId\": \"2c918084575812550157589064f33b89\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"reassignedToId\": \"31d9c631f5574571a935aaa48a6255df\",\n \"reassignedFromId\": \"073204941f3f49c0b3a3c49d1c17ef0e\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"reassignedToId\": \"279de502e5dc43f4854e1b96f57c578f\",\n \"reassignedFromId\": \"31d9c631f5574571a935aaa48a6255df\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "4eec173e-ad4b-4f86-8966-1cc1871a77bc", + "name": "Evaluate response when a self-review is found and manager or org admin escalation is applied", + "originalRequest": { + "url": { + "path": [ + "reassignment-configurations", + ":identityId", + "evaluate", + ":configType" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Exclusion filters that disable parts of the reassignment evaluation. Possible values are listed below: - `SELF_REVIEW_DELEGATION`: This will exclude delegations of self-review reassignments", + "type": "text/plain" + }, + "key": "exclusionFilters", + "value": "SELF_REVIEW_DELEGATION" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"reassignToId\": \"2c9180825a6c1adc015a71c9023f0818\",\n \"lookupTrail\": [\n {\n \"reassignedToId\": \"2c918084575812550157589064f33b89\",\n \"reassignedFromId\": \"2c9180825a6c1adc015a71c9023f0818\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"reassignedToId\": \"073204941f3f49c0b3a3c49d1c17ef0e\",\n \"reassignedFromId\": \"2c918084575812550157589064f33b89\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"reassignedToId\": \"31d9c631f5574571a935aaa48a6255df\",\n \"reassignedFromId\": \"073204941f3f49c0b3a3c49d1c17ef0e\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"reassignedToId\": \"279de502e5dc43f4854e1b96f57c578f\",\n \"reassignedFromId\": \"31d9c631f5574571a935aaa48a6255df\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "36f82dca-6cc0-4274-aad1-154f85c1efae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188016,7 +195313,7 @@ "type": "text/plain" }, "key": "exclusionFilters", - "value": "" + "value": "SELF_REVIEW_DELEGATION" } ], "variable": [] @@ -188046,12 +195343,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "58fbca55-08fe-4afd-bfd2-b969fa45633a", + "id": "cd4937a9-84bb-47cd-be6b-fa72aa7931de", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188072,7 +195369,7 @@ "type": "text/plain" }, "key": "exclusionFilters", - "value": "" + "value": "SELF_REVIEW_DELEGATION" } ], "variable": [] @@ -188102,12 +195399,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "25d3b664-8861-4b3f-b647-317a0b4156bd", + "id": "07be4f2e-f655-4cdd-a6bb-1a2b5ce78fb5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188128,7 +195425,7 @@ "type": "text/plain" }, "key": "exclusionFilters", - "value": "" + "value": "SELF_REVIEW_DELEGATION" } ], "variable": [] @@ -188158,12 +195455,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0f6dbfbb-89cf-4fff-81c0-8a0e3a25889b", + "id": "948ab6a1-16e5-4540-9fca-2883f0058bc9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188184,7 +195481,7 @@ "type": "text/plain" }, "key": "exclusionFilters", - "value": "" + "value": "SELF_REVIEW_DELEGATION" } ], "variable": [] @@ -188214,12 +195511,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3ccf88ff-2217-4b6d-ac0e-a549f7198a9c", + "id": "6f3da4e1-88f6-485f-90d8-f5a8bb33d7cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188240,7 +195537,7 @@ "type": "text/plain" }, "key": "exclusionFilters", - "value": "" + "value": "SELF_REVIEW_DELEGATION" } ], "variable": [] @@ -188270,7 +195567,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -188281,7 +195578,7 @@ } }, { - "id": "c140d260-1e70-4fc5-8a83-ec9bdb62271d", + "id": "36aa13be-4553-4614-86f5-a3f304f4992c", "name": "Get Tenant-wide Reassignment Configuration settings", "request": { "name": "Get Tenant-wide Reassignment Configuration settings", @@ -188311,7 +195608,7 @@ }, "response": [ { - "id": "867cd9df-10fc-4dd0-8551-e4608bac7dc9", + "id": "4d8fa0be-6a7d-4c65-9790-fe46c65a4d91", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -188350,12 +195647,12 @@ "value": "application/json" } ], - "body": "{\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"configDetails\": {\n \"disabled\": false\n }\n}", + "body": "{\n \"auditDetails\": {\n \"created\": \"2022-07-21T11:13:12.345Z\",\n \"createdBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"modified\": \"2022-07-21T11:13:12.345Z\",\n \"modifiedBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n }\n },\n \"configDetails\": {\n \"disabled\": true\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c2ad5768-a77a-41bd-a685-a2d537866c7a", + "id": "f29f3d77-3d08-4689-a89b-6b0bc24be106", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188394,12 +195691,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ef0083c2-4b2d-4cde-91eb-b4e7debd117a", + "id": "eced2250-127f-406c-980d-fe7a4c18e996", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188438,12 +195735,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "968aa05a-68ac-49da-823d-fea701767f08", + "id": "f7e91418-e417-4125-870e-2f555740def7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188482,12 +195779,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "677a2562-9f5e-448d-8387-1d99383f9df9", + "id": "76c76ef8-36ba-4de3-9d1c-eb1dfa23b467", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -188526,12 +195823,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "37e3f48c-2ad5-45c6-926d-0ca3d42b8148", + "id": "bf7887f0-58dd-4571-81a3-faf076ef2ba8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188570,12 +195867,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6816d093-b110-456b-b493-f13c744fd152", + "id": "abf8af8f-1243-441a-a895-5d0fc3bcba02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188614,7 +195911,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -188625,7 +195922,7 @@ } }, { - "id": "8b001051-bdc3-4f91-b20a-c8b0bf3cac1d", + "id": "4f2ec839-5b56-49ff-8ee6-f2acdb43a7a3", "name": "Update Tenant-wide Reassignment Configuration settings", "request": { "name": "Update Tenant-wide Reassignment Configuration settings", @@ -188657,7 +195954,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"configDetails\": {\n \"disabled\": false\n }\n}", + "raw": "{\n \"configDetails\": {\n \"disabled\": true\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -188668,7 +195965,7 @@ }, "response": [ { - "id": "5b0c3b56-716c-4bdc-80a3-3e9b999fe573", + "id": "b7160376-84fa-4f66-9fc9-23e27fd0a3c4", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -188703,7 +196000,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"configDetails\": {\n \"disabled\": false\n }\n}", + "raw": "{\n \"configDetails\": {\n \"disabled\": true\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -188720,12 +196017,12 @@ "value": "application/json" } ], - "body": "{\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"configDetails\": {\n \"disabled\": false\n }\n}", + "body": "{\n \"auditDetails\": {\n \"created\": \"2022-07-21T11:13:12.345Z\",\n \"createdBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n },\n \"modified\": \"2022-07-21T11:13:12.345Z\",\n \"modifiedBy\": {\n \"id\": \"2c91808380aa05580180aaaaf1940410\",\n \"name\": \"William Wilson\"\n }\n },\n \"configDetails\": {\n \"disabled\": true\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "938d8304-d459-4016-9bda-8a9fc204b699", + "id": "a94df2f7-1e16-4542-8960-81b5c62230c5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188760,7 +196057,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"configDetails\": {\n \"disabled\": false\n }\n}", + "raw": "{\n \"configDetails\": {\n \"disabled\": true\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -188777,12 +196074,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "83a77bd1-6b8b-4b8e-8b44-7124f4cd6840", + "id": "b3dcd879-0d98-4089-8b25-e9be2eb9eb2b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188817,7 +196114,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"configDetails\": {\n \"disabled\": false\n }\n}", + "raw": "{\n \"configDetails\": {\n \"disabled\": true\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -188834,12 +196131,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e188b51d-4720-439e-b809-5295bc0363c6", + "id": "2f14b6b2-03e6-427f-9e56-23922efc835e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188874,7 +196171,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"configDetails\": {\n \"disabled\": false\n }\n}", + "raw": "{\n \"configDetails\": {\n \"disabled\": true\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -188891,12 +196188,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "549f0cc5-b29e-444d-b565-9b16659e4de7", + "id": "51b8f326-6695-4272-acee-b8bd898e3165", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188931,7 +196228,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"configDetails\": {\n \"disabled\": false\n }\n}", + "raw": "{\n \"configDetails\": {\n \"disabled\": true\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -188948,12 +196245,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3079806c-8fe5-46a3-8f4f-b5326670cd30", + "id": "c92733e3-4153-40e7-af60-7a1e0c239f46", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188988,7 +196285,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"configDetails\": {\n \"disabled\": false\n }\n}", + "raw": "{\n \"configDetails\": {\n \"disabled\": true\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -189005,7 +196302,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -189022,7 +196319,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": "223520e2-a721-4345-bf81-6c3e209d1e16", + "id": "08a4bd1d-7784-4745-a106-13750418505e", "name": "Create Workflow", "request": { "name": "Create Workflow", @@ -189053,7 +196350,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"minim_c\": 36782605.271354735\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"SCHEDULED\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -189064,8 +196361,8 @@ }, "response": [ { - "id": "de2f0e78-bfe2-4221-b4ba-c28039259d77", - "name": "The Workflow object", + "id": "f6d07bfb-ae4a-486f-b694-39da3cd50a86", + "name": "Event Trigger", "originalRequest": { "url": { "path": [ @@ -189098,7 +196395,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"minim_c\": 36782605.271354735\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"SCHEDULED\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -189115,13 +196412,13 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"dolorec_\": \"aute dol\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8fd9e232-e2e6-482a-99e3-ee60c551e2e3", - "name": "Client Error - Returned if the request body is invalid.", + "id": "5e9963a1-9b9d-423b-97b8-573e214a54a9", + "name": "Scheduled Trigger", "originalRequest": { "url": { "path": [ @@ -189154,7 +196451,63 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"minim_c\": 36782605.271354735\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"SCHEDULED\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"SCHEDULED\",\n \"attributes\": {\n \"cronString\": \"0 * */3 */5 *\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "f8001d73-6e9f-45ce-a292-cc02ead1fdfa", + "name": "Scheduled Trigger", + "originalRequest": { + "url": { + "path": [ + "workflows" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"SCHEDULED\",\n \"attributes\": {\n \"cronString\": \"0 * */3 */5 *\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -189171,13 +196524,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0bce63c8-1f2c-4559-ac2e-bb4328e47625", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "id": "4dbeef26-fc7e-45b6-9e60-b87baf1e2a8b", + "name": "Event Trigger", "originalRequest": { "url": { "path": [ @@ -189210,7 +196563,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"minim_c\": 36782605.271354735\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"SCHEDULED\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -189227,13 +196580,13 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f7a52cf4-9242-425a-82cc-6f0a993ff743", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "id": "48dbf035-1305-444c-b173-7aac5772d644", + "name": "An example of a 403 response object", "originalRequest": { "url": { "path": [ @@ -189266,7 +196619,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"minim_c\": 36782605.271354735\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"SCHEDULED\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -189283,13 +196636,13 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "e4b4c45a-ae9a-4b47-9c16-eba3a279fe5d", - "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "id": "4e6fbf32-6a57-4fd3-bff8-e10b609130fb", + "name": "Event Trigger", "originalRequest": { "url": { "path": [ @@ -189322,7 +196675,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"minim_c\": 36782605.271354735\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"SCHEDULED\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -189339,13 +196692,13 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e69a1f5a-f2f2-491e-83cc-f95046e8d54f", - "name": "Internal Server Error - Returned if there is an unexpected error.", + "id": "03cf3cf7-ced4-4cbd-8f6a-6baeb1637b17", + "name": "An example of a 500 response object", "originalRequest": { "url": { "path": [ @@ -189378,7 +196731,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"minim_c\": 36782605.271354735\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"SCHEDULED\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -189395,7 +196748,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -189406,7 +196759,7 @@ } }, { - "id": "5ec270ba-be16-4cfb-900f-4622cccd189c", + "id": "9981c47d-4121-4005-9715-923e019cc140", "name": "List Workflows", "request": { "name": "List Workflows", @@ -189435,7 +196788,7 @@ }, "response": [ { - "id": "dcb1ad04-2cf0-454c-98fe-428276f83bc5", + "id": "0c0eb34b-f651-4a79-9519-94958ee480d8", "name": "List of workflows", "originalRequest": { "url": { @@ -189473,12 +196826,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"magna_827\": 24232454,\n \"magna9\": -42330074\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"SCHEDULED\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n },\n {\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"proident_f_2\": \"officia nu\",\n \"sint_3a\": -78059842.92947347\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n },\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "72540edf-b03d-4260-8fb5-c667f5f2db2a", + "id": "d0c56e35-82df-4d8a-bb1e-5cdf3eba307a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -189516,12 +196869,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "f071d864-3db3-4f60-b81c-8a6adcb10fad", + "id": "d508bbcf-2286-4f07-b2d8-2c82c9e5c4aa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -189559,12 +196912,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c0bb1d69-196c-4b96-9c8f-8ca66c65801f", + "id": "09e3346c-2c1f-40ca-836b-a6603e3461f3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -189602,12 +196955,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "0c476d88-4e25-49f5-921f-8408df2bb511", + "id": "79f988a0-5d6d-44a0-ab0c-0a52fb4aff58", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -189645,12 +196998,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2df2626-66b2-4c93-9ab7-60d48498bc72", + "id": "91cf25fc-6af5-4381-8246-a56a7a613610", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -189688,7 +197041,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -189699,7 +197052,7 @@ } }, { - "id": "36808a9e-69d5-4a6f-ae85-b1466d0b691c", + "id": "31e0c13a-6714-4f72-9194-f2214f989246", "name": "Get Workflow By Id", "request": { "name": "Get Workflow By Id", @@ -189719,7 +197072,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", "key": "id", "disabled": true, "description": { @@ -189740,7 +197093,7 @@ }, "response": [ { - "id": "16e31194-6b31-454d-8b35-03df420f924f", + "id": "3af5bf09-a4a2-4d98-b369-a6e36cd162e4", "name": "The workflow object", "originalRequest": { "url": { @@ -189779,12 +197132,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"dolorec_\": \"aute dol\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e5a054c-3018-4b10-a88b-9eb5efb1c853", + "id": "0b19b5ed-ece0-4644-8bc2-ed9c684630b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -189823,12 +197176,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9c1f008e-6234-49d8-8b0f-482ce11e5ac0", + "id": "901e123b-2ec8-436c-acc7-e343d33b9d18", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -189867,12 +197220,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b8591a79-d617-4522-9c62-6e71b9775486", + "id": "cec5d7ae-ee2a-4b84-9609-732d26305390", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -189911,12 +197264,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9efdfdc3-9dad-4873-ba36-86b0b3d65741", + "id": "f07fc2d9-beb5-4d14-abbb-faaca65b6687", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -189955,12 +197308,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1869445a-faa1-4687-b66e-48b5bdd76acc", + "id": "0bf7d3c1-1822-4721-a325-c552420f2b3b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -189999,7 +197352,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -190010,7 +197363,7 @@ } }, { - "id": "157d74de-beff-44a5-9273-3c303c28c988", + "id": "db3bed58-4eda-4a74-ab1f-da7c5488e25c", "name": "Update Workflow", "request": { "name": "Update Workflow", @@ -190030,7 +197383,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", "key": "id", "disabled": true, "description": { @@ -190053,7 +197406,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sunt_783\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -190064,7 +197417,7 @@ }, "response": [ { - "id": "e3b1b8a7-fb62-4b8a-b56a-3f1d7aadb40e", + "id": "f8bc12a8-8b00-4855-8df7-60f1ae7a7454", "name": "The Workflow object", "originalRequest": { "url": { @@ -190099,7 +197452,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sunt_783\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -190116,12 +197469,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"dolorec_\": \"aute dol\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bbbcd016-9fb1-4dac-abcf-d6c6bc1c171f", + "id": "eb1733d7-328c-475d-820c-e69e010e3270", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -190156,7 +197509,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sunt_783\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -190173,12 +197526,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ea25c537-b0c7-45e1-b03a-8b56017d86f0", + "id": "ac9bddd1-188e-4e69-b245-c48ada2b4ce3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -190213,7 +197566,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sunt_783\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -190230,12 +197583,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80ecf8f1-c878-40a7-954d-522645a8e1c4", + "id": "3023c649-88a3-4388-96c4-62a261d1b9e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -190270,7 +197623,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sunt_783\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -190287,12 +197640,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3de3cdcd-32c4-49d7-a27b-ab05284dec1a", + "id": "15ba17c7-1df8-4760-a7e1-9ba97ebffc55", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -190327,7 +197680,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sunt_783\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -190344,12 +197697,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2984d1f2-deb3-4f76-bbc7-6463f0bf9b40", + "id": "89f7018b-e2a8-4aec-9dc9-49c392d984ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -190384,7 +197737,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sunt_783\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -190401,7 +197754,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -190412,7 +197765,7 @@ } }, { - "id": "af472fbc-d432-4b0f-a169-c5a4562f5ab4", + "id": "b9c38485-98fc-43d4-b1e1-cf68b97ade6e", "name": "Patch Workflow", "request": { "name": "Patch Workflow", @@ -190432,7 +197785,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", "key": "id", "disabled": true, "description": { @@ -190455,7 +197808,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Send Email\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Send an email to the identity who's attributes changed.\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/definition\",\n \"value\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/trigger\",\n \"value\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\"\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -190466,7 +197819,7 @@ }, "response": [ { - "id": "95ed8b53-8b28-4fa8-8c32-b6a38202ae01", + "id": "d045ea1f-f199-43fb-a2fb-cf2bcffc03db", "name": "The Workflow object", "originalRequest": { "url": { @@ -190501,7 +197854,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Send Email\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Send an email to the identity who's attributes changed.\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/definition\",\n \"value\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/trigger\",\n \"value\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\"\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -190518,12 +197871,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"dolorec_\": \"aute dol\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "75454c12-16b1-4d88-9bf5-ceaff82c477b", + "id": "ae87d40b-7a5b-4840-8ca1-5840ed8b7ae3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -190558,7 +197911,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Send Email\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Send an email to the identity who's attributes changed.\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/definition\",\n \"value\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/trigger\",\n \"value\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\"\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -190575,12 +197928,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "30028c29-3b71-4baa-8b8e-dc5573537317", + "id": "5724f865-5ff6-47f7-813f-e5b6cca3cd7a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -190615,7 +197968,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Send Email\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Send an email to the identity who's attributes changed.\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/definition\",\n \"value\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/trigger\",\n \"value\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\"\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -190632,12 +197985,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e2327ad-1a8e-4524-abb1-767f1516c3c5", + "id": "af65f7e7-4b9a-41f2-b542-7bf4fb0a8c05", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -190672,7 +198025,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Send Email\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Send an email to the identity who's attributes changed.\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/definition\",\n \"value\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/trigger\",\n \"value\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\"\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -190689,12 +198042,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6d9f1991-e8ca-487a-a80a-98473cc8668a", + "id": "4014bec3-8dd3-4bc3-8424-f117b125b6ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -190729,7 +198082,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Send Email\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Send an email to the identity who's attributes changed.\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/definition\",\n \"value\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/trigger\",\n \"value\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\"\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -190746,12 +198099,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "74f79fa0-c238-42f1-a109-bba46b58d9e2", + "id": "10dd63aa-616a-4da0-a6cf-0a7510c7963f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -190786,7 +198139,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Send Email\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Send an email to the identity who's attributes changed.\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/definition\",\n \"value\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/trigger\",\n \"value\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\"\n }\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -190803,7 +198156,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -190814,7 +198167,7 @@ } }, { - "id": "8b7e44af-24d6-4834-8e87-7cdaccbbffce", + "id": "69a05afa-2c81-4885-a356-3541a8808e68", "name": "Delete Workflow By Id", "request": { "name": "Delete Workflow By Id", @@ -190834,7 +198187,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", "key": "id", "disabled": true, "description": { @@ -190855,7 +198208,7 @@ }, "response": [ { - "id": "8321a742-ab59-489e-9bf4-a811623e2618", + "id": "b0323115-40bc-4aac-8cbd-4cc679315f56", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -190889,7 +198242,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3f98ac90-0d80-4488-aae9-68a9088f26d8", + "id": "f259ab32-94c2-4e12-a58b-57b2498ed6ee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -190928,12 +198281,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "28c53851-f1f3-47cf-b572-d110ee5a1d92", + "id": "cdd00e7e-37c7-44e2-99cf-6ac69e729707", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -190972,12 +198325,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "48ca6f4e-5800-4045-9892-c635571e57a8", + "id": "01b2b37d-9024-420d-bb79-1380541374fc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191016,12 +198369,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "5167c622-368c-4c4d-9908-f3bcc0db33a9", + "id": "697dca8e-5dbd-4fc6-b3ae-470e3b49b335", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -191060,12 +198413,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9c5c58ec-c188-454f-99ea-773110c804f1", + "id": "0b0de552-c492-4f2e-a1df-d4e86efb3e4a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -191104,7 +198457,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -191115,7 +198468,7 @@ } }, { - "id": "5c526b93-ff1a-44c5-beaf-91bbf13b029d", + "id": "ae844ed4-4ce2-40da-8ac0-60d4efd518e1", "name": "Test Workflow By Id", "request": { "name": "Test Workflow By Id", @@ -191136,7 +198489,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", "key": "id", "disabled": true, "description": { @@ -191159,7 +198512,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"identity\": {\n \"id\": \"ee769173319b41d19ccec6cea52f237b\",\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n },\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"oldValue\": \"sales\",\n \"newValue\": \"marketing\"\n },\n {\n \"attribute\": \"manager\",\n \"oldValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423237b\",\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n },\n \"newValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423236c\",\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"oldValue\": \"john.doe@hotmail.com\",\n \"newValue\": \"john.doe@gmail.com\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -191170,7 +198523,7 @@ }, "response": [ { - "id": "657cd0d5-c2fb-487d-a7b4-e9f0bb3ef8cb", + "id": "fb3b0435-78f2-418c-bce2-cf6e02ca422d", "name": "The Workflow object", "originalRequest": { "url": { @@ -191206,7 +198559,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"identity\": {\n \"id\": \"ee769173319b41d19ccec6cea52f237b\",\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n },\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"oldValue\": \"sales\",\n \"newValue\": \"marketing\"\n },\n {\n \"attribute\": \"manager\",\n \"oldValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423237b\",\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n },\n \"newValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423236c\",\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"oldValue\": \"john.doe@hotmail.com\",\n \"newValue\": \"john.doe@gmail.com\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -191223,12 +198576,12 @@ "value": "application/json" } ], - "body": "{\n \"workflowExecutionId\": \"\"\n}", + "body": "{\n \"workflowExecutionId\": \"0e11cefa-96e7-4b67-90d0-065bc1da5753\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3185fbab-9623-4482-a82e-bf82ffe5882f", + "id": "06a9b925-a7d7-465f-be17-ad29bdbdda7f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191264,7 +198617,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"identity\": {\n \"id\": \"ee769173319b41d19ccec6cea52f237b\",\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n },\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"oldValue\": \"sales\",\n \"newValue\": \"marketing\"\n },\n {\n \"attribute\": \"manager\",\n \"oldValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423237b\",\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n },\n \"newValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423236c\",\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"oldValue\": \"john.doe@hotmail.com\",\n \"newValue\": \"john.doe@gmail.com\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -191281,12 +198634,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "59a79498-ca0d-40e0-b332-19a556318727", + "id": "3b986b48-7d40-4e2d-aef5-4b2a97964c59", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -191322,7 +198675,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"identity\": {\n \"id\": \"ee769173319b41d19ccec6cea52f237b\",\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n },\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"oldValue\": \"sales\",\n \"newValue\": \"marketing\"\n },\n {\n \"attribute\": \"manager\",\n \"oldValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423237b\",\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n },\n \"newValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423236c\",\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"oldValue\": \"john.doe@hotmail.com\",\n \"newValue\": \"john.doe@gmail.com\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -191339,12 +198692,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "774e7cb1-6393-4c39-ab36-7b3c99a64ea3", + "id": "197e8376-8e35-4b8b-842e-26e1148955c1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191380,7 +198733,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"identity\": {\n \"id\": \"ee769173319b41d19ccec6cea52f237b\",\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n },\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"oldValue\": \"sales\",\n \"newValue\": \"marketing\"\n },\n {\n \"attribute\": \"manager\",\n \"oldValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423237b\",\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n },\n \"newValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423236c\",\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"oldValue\": \"john.doe@hotmail.com\",\n \"newValue\": \"john.doe@gmail.com\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -191397,12 +198750,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c99ac0ab-0b2a-4717-91dc-fa9b4480511b", + "id": "b249754c-79db-477c-85f1-78d0862f1da8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -191438,7 +198791,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"identity\": {\n \"id\": \"ee769173319b41d19ccec6cea52f237b\",\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n },\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"oldValue\": \"sales\",\n \"newValue\": \"marketing\"\n },\n {\n \"attribute\": \"manager\",\n \"oldValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423237b\",\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n },\n \"newValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423236c\",\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"oldValue\": \"john.doe@hotmail.com\",\n \"newValue\": \"john.doe@gmail.com\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -191455,12 +198808,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6f217e5b-78fc-462b-bbc8-76ed02723596", + "id": "d0f4d343-8952-4fba-800e-b520adaa0ada", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -191496,7 +198849,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"identity\": {\n \"id\": \"ee769173319b41d19ccec6cea52f237b\",\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n },\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"oldValue\": \"sales\",\n \"newValue\": \"marketing\"\n },\n {\n \"attribute\": \"manager\",\n \"oldValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423237b\",\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n },\n \"newValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423236c\",\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"oldValue\": \"john.doe@hotmail.com\",\n \"newValue\": \"john.doe@gmail.com\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -191513,7 +198866,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -191524,7 +198877,7 @@ } }, { - "id": "c3bff9fc-0b66-4b72-8516-bec8a5009664", + "id": "669e5c28-a545-447e-bce8-f22331e1e211", "name": "List Workflow Executions", "request": { "name": "List Workflow Executions", @@ -191567,7 +198920,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -191576,13 +198929,13 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "status eq \"Failed\"" } ], "variable": [ { "type": "any", - "value": "", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", "key": "id", "disabled": true, "description": { @@ -191603,7 +198956,7 @@ }, "response": [ { - "id": "4aa5efd5-e0d0-4fb2-bdc2-03e62c8d5312", + "id": "415bcb76-456f-4af4-843b-e7fe78321d5c", "name": "List of workflow executions for the given workflow", "originalRequest": { "url": { @@ -191641,7 +198994,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -191650,7 +199003,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "status eq \"Failed\"" } ], "variable": [] @@ -191680,12 +199033,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"workflowId\": \"\",\n \"requestId\": \"\",\n \"startTime\": \"\",\n \"closeTime\": \"\",\n \"status\": \"Failed\"\n },\n {\n \"id\": \"\",\n \"workflowId\": \"\",\n \"requestId\": \"\",\n \"startTime\": \"\",\n \"closeTime\": \"\",\n \"status\": \"Failed\"\n }\n]", + "body": "[\n {\n \"id\": \"b393f4e2-4785-4d7f-ab27-3a6b8ded4c81\",\n \"workflowId\": \"d201c5d9-d37b-4a2f-af14-66414f39d568\",\n \"requestId\": \"41e12a74fa7b4a6a98ae47887b64acdb\",\n \"startTime\": \"2022-02-07T20:13:29.356648026Z\",\n \"closeTime\": \"2022-02-07T20:13:31.682410165Z\",\n \"status\": \"Completed\"\n },\n {\n \"id\": \"b393f4e2-4785-4d7f-ab27-3a6b8ded4c81\",\n \"workflowId\": \"d201c5d9-d37b-4a2f-af14-66414f39d568\",\n \"requestId\": \"41e12a74fa7b4a6a98ae47887b64acdb\",\n \"startTime\": \"2022-02-07T20:13:29.356648026Z\",\n \"closeTime\": \"2022-02-07T20:13:31.682410165Z\",\n \"status\": \"Completed\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "070f2da3-73ba-468f-aa02-562eeefddef1", + "id": "9425ceac-c58d-4f38-a2da-234e31bfed7c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191723,7 +199076,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -191732,7 +199085,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "status eq \"Failed\"" } ], "variable": [] @@ -191762,12 +199115,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "22c07c89-a581-45e4-8625-ab08aad7d55d", + "id": "fd913066-d072-4817-9a49-3164be80856e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -191805,7 +199158,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -191814,7 +199167,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "status eq \"Failed\"" } ], "variable": [] @@ -191844,12 +199197,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b04c8998-2a3b-4fd4-8073-7afa38aa2256", + "id": "d2d45a93-dbcd-4ae6-911a-cc4fb78dc8b0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191887,7 +199240,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -191896,7 +199249,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "status eq \"Failed\"" } ], "variable": [] @@ -191926,12 +199279,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "da40f17a-4e14-4ec9-b661-5aa24a2b9e69", + "id": "4be26a26-0a1e-4fc2-ac8b-498b3bf95ab2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -191969,7 +199322,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -191978,7 +199331,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "status eq \"Failed\"" } ], "variable": [] @@ -192008,12 +199361,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "6c9a8ca0-933c-475d-832b-a748ace530bc", + "id": "5fa732e4-a626-4fa6-a0c0-fc6636efc199", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -192051,7 +199404,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -192060,7 +199413,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "status eq \"Failed\"" } ], "variable": [] @@ -192090,12 +199443,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "148cb0c5-36c7-440f-882f-3f8582b2c2bf", + "id": "3354f4ac-75dd-48c9-9bd4-63cbc49409f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -192133,7 +199486,7 @@ "type": "text/plain" }, "key": "count", - "value": "false" + "value": "true" }, { "disabled": true, @@ -192142,7 +199495,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "status eq \"Failed\"" } ], "variable": [] @@ -192172,7 +199525,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -192183,7 +199536,7 @@ } }, { - "id": "0acb19ef-b3c9-4c91-b1b2-3a294c36c241", + "id": "a020514b-8172-4785-a79f-2db0c83fb9e1", "name": "Get a Workflow Execution", "request": { "name": "Get a Workflow Execution", @@ -192203,7 +199556,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", "key": "id", "disabled": true, "description": { @@ -192224,7 +199577,7 @@ }, "response": [ { - "id": "8d04b539-6c02-4098-9297-0a48e1e9ca4f", + "id": "b3f77aff-2a14-4616-850b-741f5b9eacc9", "name": "The workflow execution", "originalRequest": { "url": { @@ -192263,12 +199616,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"velit sit\",\n \"workflowId\": \"qui proident\",\n \"requestId\": \"Lorem in enim\",\n \"startTime\": \"1968-07-10T22:50:57.870Z\",\n \"closeTime\": \"1950-04-30T15:43:01.203Z\",\n \"status\": \"Canceled\"\n },\n {\n \"id\": \"labo\",\n \"workflowId\": \"non irure\",\n \"requestId\": \"nostru\",\n \"startTime\": \"1993-05-06T20:49:06.593Z\",\n \"closeTime\": \"1948-12-01T12:01:36.093Z\",\n \"status\": \"Running\"\n }\n]", + "body": "[\n {\n \"id\": \"b393f4e2-4785-4d7f-ab27-3a6b8ded4c81\",\n \"workflowId\": \"d201c5d9-d37b-4a2f-af14-66414f39d568\",\n \"requestId\": \"41e12a74fa7b4a6a98ae47887b64acdb\",\n \"startTime\": \"2022-02-07T20:13:29.356648026Z\",\n \"closeTime\": \"2022-02-07T20:13:31.682410165Z\",\n \"status\": \"Completed\"\n },\n {\n \"id\": \"b393f4e2-4785-4d7f-ab27-3a6b8ded4c81\",\n \"workflowId\": \"d201c5d9-d37b-4a2f-af14-66414f39d568\",\n \"requestId\": \"41e12a74fa7b4a6a98ae47887b64acdb\",\n \"startTime\": \"2022-02-07T20:13:29.356648026Z\",\n \"closeTime\": \"2022-02-07T20:13:31.682410165Z\",\n \"status\": \"Completed\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c78c9ae3-9afb-4528-a395-606eba25bda5", + "id": "912b273b-7869-4c74-b0a5-e2a1f5bb5dea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192307,12 +199660,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3cb08bf5-b2bb-457d-81f0-d9db992b7d66", + "id": "d0185627-31ba-4c72-aa84-f73e1d30de55", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -192351,12 +199704,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb459b3d-32b6-4d0c-9200-9eefdcf8f637", + "id": "4ad5ed88-b9b6-4e6a-a963-50811d6b44a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192395,12 +199748,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8e4f4760-8214-4461-9cfe-04edfe042be5", + "id": "5c3c2923-a374-4984-a0dd-721ee1b622f3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -192439,12 +199792,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9b4f2ba8-e426-46e2-b806-b106627e4129", + "id": "60df1d6a-e730-4983-8e7e-4b6028d94356", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -192483,12 +199836,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cbfe2fa0-b3e9-4129-9f48-6f345d69d9e5", + "id": "749faad1-88a3-4cf3-8128-625a24eb405b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -192527,7 +199880,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -192538,7 +199891,7 @@ } }, { - "id": "5baeb9bc-5be7-41fc-9996-cc51e3aee052", + "id": "1e90f978-23bc-46ef-93ae-b957932afc28", "name": "Get Workflow Execution History", "request": { "name": "Get Workflow Execution History", @@ -192559,7 +199912,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", "key": "id", "disabled": true, "description": { @@ -192580,7 +199933,7 @@ }, "response": [ { - "id": "d7284030-e518-470b-b3cd-e52735a8a28e", + "id": "036a41e4-4c0b-4acf-be06-8f66edd24892", "name": "List of workflow execution events for the given workflow execution", "originalRequest": { "url": { @@ -192620,12 +199973,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"type\": \"WorkflowExecutionScheduled\",\n \"timestamp\": \"\",\n \"attributes\": {}\n },\n {\n \"type\": \"ActivityTaskFailed\",\n \"timestamp\": \"\",\n \"attributes\": {}\n }\n]", + "body": "[\n {\n \"type\": \"WorkflowTaskScheduled\",\n \"timestamp\": \"2022-02-07T20:13:31.640618296Z\",\n \"attributes\": {}\n },\n {\n \"type\": \"WorkflowTaskScheduled\",\n \"timestamp\": \"2022-02-07T20:13:31.640618296Z\",\n \"attributes\": {}\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7446e633-5c07-4479-ae75-d5679df9ca17", + "id": "22444a39-e83e-437d-822a-9af562d5678c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192665,12 +200018,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d624b3c4-5d9e-4b55-a073-60e029294c9f", + "id": "8bb6262a-e735-44a9-ba01-ef48808b1cd9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -192710,12 +200063,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1b46eb54-e9cd-4fa0-9ca9-6cf90b4ce96a", + "id": "be189cc9-e9c9-4602-acc1-d358cbe8869f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192755,12 +200108,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "da98e400-08a7-4f16-863f-ea74f48848a3", + "id": "97cad669-6148-473f-b942-b5186c00133c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -192800,12 +200153,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b2ee243b-ca43-4429-9a39-798bc58f874d", + "id": "7c6fbba9-adcf-4a65-bf03-f907d7d85a0a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -192845,12 +200198,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "944e387c-f877-475c-a12c-990b75a12e4e", + "id": "fe7fe0bd-a207-408f-94f7-539e4d6012fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -192890,7 +200243,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -192901,7 +200254,7 @@ } }, { - "id": "2594d9a1-690d-4683-b4b6-f3a77049d75e", + "id": "6870644e-a2fe-4bdc-ab80-dba1731be130", "name": "Cancel Workflow Execution by ID", "request": { "name": "Cancel Workflow Execution by ID", @@ -192922,7 +200275,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", "key": "id", "disabled": true, "description": { @@ -192943,7 +200296,7 @@ }, "response": [ { - "id": "28c31c71-df54-4c33-941c-4ec25cc3d5bd", + "id": "dafe5b6d-02ff-4929-b020-53c1a17749fe", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -192978,7 +200331,7 @@ "_postman_previewlanguage": "text" }, { - "id": "fd3a52e3-2807-4053-af6c-1064dd96be46", + "id": "b6a2dc12-b60b-4d4d-9c23-160bfb3e142c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193018,12 +200371,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "54a4ec57-da3d-40f8-b6ca-42efbb744a93", + "id": "221f43cd-066e-4b99-9a94-c5411384e10d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -193063,12 +200416,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12c838f8-37c8-437a-8f90-3163f51404b3", + "id": "7b06a641-6000-4740-80dd-4df728c75f20", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193108,12 +200461,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "86173b0c-6d88-4eb9-a509-6ac33b122767", + "id": "c92861af-0ac9-494d-a4f6-09e2ef72f71e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -193153,12 +200506,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "a071e715-d1dc-4bb2-982f-c3724044693c", + "id": "c8e12625-9d7f-4014-b33a-8d7460d43fbe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -193198,12 +200551,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1d86b6b7-906c-4423-9815-9d266f23170e", + "id": "749c4c6f-03c8-4da5-b179-738f2e02cd6c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -193243,7 +200596,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -193254,7 +200607,7 @@ } }, { - "id": "40d97331-00a3-4074-a247-4fbb46d79d01", + "id": "e49b8939-dd95-41f5-aa68-635ecae6d066", "name": "List Complete Workflow Library", "request": { "name": "List Complete Workflow Library", @@ -193302,7 +200655,7 @@ }, "response": [ { - "id": "e8034b60-e1fc-41e6-9a53-73205e84e137", + "id": "c8eba48d-219e-41bb-9c7c-17ba1b040d4d", "name": "List of workflow steps", "originalRequest": { "url": { @@ -193359,12 +200712,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"text\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"checkbox\"\n }\n ],\n \"isDynamicSchema\": \"\",\n \"outputSchema\": {}\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"email\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"json\"\n }\n ],\n \"isDynamicSchema\": \"\",\n \"outputSchema\": {}\n }\n]", + "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c90137f-e716-4e45-8553-518d0e9d95cd", + "id": "3821727c-6b49-4306-9198-55fd0ba0c5a9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193421,12 +200774,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "c8fc6ddf-fa62-41de-bd26-95b104882168", + "id": "e126f1c7-aa81-452b-8d38-71481f2cd858", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -193483,12 +200836,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "61c6c8b9-f75f-483b-adeb-b0ea68977ce8", + "id": "5ceb0ca6-9a33-48e1-910e-637ae5ddf8a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193545,12 +200898,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "bd06f5a7-fcd9-4007-a593-dfcda8c9a87d", + "id": "c731a6ca-a3a9-4700-8807-240f98ae4f9a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -193607,12 +200960,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fc65221f-a8f8-4bb6-937e-a2c47e060856", + "id": "42cade14-f662-41d7-a0fc-4c0f247fe15c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -193669,7 +201022,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -193680,7 +201033,7 @@ } }, { - "id": "0ee705a1-a1ff-4208-ba15-e419cfd24b53", + "id": "70b7d293-4652-4979-b5dc-ba2b1eecb6dd", "name": "List Workflow Library Actions", "request": { "name": "List Workflow Library Actions", @@ -193722,7 +201075,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"sp:create-campaign\"" } ], "variable": [] @@ -193738,7 +201091,7 @@ }, "response": [ { - "id": "95ba88ea-2dfa-4051-b9bb-4f9bfd365ac8", + "id": "e04a978b-b734-4d73-ab50-5982814c9fb3", "name": "List of workflow actions", "originalRequest": { "url": { @@ -193775,7 +201128,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"sp:create-campaign\"" } ], "variable": [] @@ -193805,12 +201158,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"text\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"checkbox\"\n }\n ],\n \"isDynamicSchema\": \"\",\n \"outputSchema\": {}\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"email\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"json\"\n }\n ],\n \"isDynamicSchema\": \"\",\n \"outputSchema\": {}\n }\n]", + "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd75b147-e4ef-4250-9331-4746e01e2b79", + "id": "2e7cc790-7624-4717-ad3e-8d820a7468fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193847,7 +201200,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"sp:create-campaign\"" } ], "variable": [] @@ -193877,12 +201230,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "99239261-db77-4182-b22d-0dc7c3382869", + "id": "9661223d-49ec-465d-9bab-5b2b837f454e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -193919,7 +201272,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"sp:create-campaign\"" } ], "variable": [] @@ -193949,12 +201302,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "77c2446e-d6f4-4d0e-8268-e8f188f1eef6", + "id": "aff1e35e-39da-4d55-be5a-628df7670d14", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193991,7 +201344,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"sp:create-campaign\"" } ], "variable": [] @@ -194021,12 +201374,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "03818a53-722e-4f3f-80fc-6e07da9117f9", + "id": "a395241c-ee4e-450c-92b2-406d6b41621a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -194063,7 +201416,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"sp:create-campaign\"" } ], "variable": [] @@ -194093,12 +201446,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af981013-4cf5-4bca-9b82-3f98e04c0de5", + "id": "997e25ac-dabf-435b-b61b-77eae0e7af9f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -194135,7 +201488,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"sp:create-campaign\"" } ], "variable": [] @@ -194165,7 +201518,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -194176,7 +201529,7 @@ } }, { - "id": "351ea134-dd3f-49c3-8ddb-22b754f02400", + "id": "7142666f-d3e1-4dca-a419-0caf9315af9a", "name": "List Workflow Library Triggers", "request": { "name": "List Workflow Library Triggers", @@ -194218,7 +201571,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"idn:identity-attributes-changed\"" } ], "variable": [] @@ -194234,7 +201587,7 @@ }, "response": [ { - "id": "29410fdf-76f5-4c9b-b6ec-e5b783530415", + "id": "a8f8270e-3dab-4980-b4aa-cb423d006117", "name": "List of workflow triggers", "originalRequest": { "url": { @@ -194271,7 +201624,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"idn:identity-attributes-changed\"" } ], "variable": [] @@ -194301,12 +201654,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"type\": \"EVENT\",\n \"name\": \"\",\n \"description\": \"\",\n \"isDynamicSchema\": \"\",\n \"inputExample\": {},\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"keyValuePairs\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"json\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"type\": \"EVENT\",\n \"name\": \"\",\n \"description\": \"\",\n \"isDynamicSchema\": \"\",\n \"inputExample\": {},\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"jsonpath\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"emailPicker\"\n }\n ]\n }\n]", + "body": "[\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n },\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec2c1111-4fed-41b7-a787-f1dce8467497", + "id": "1c050255-1ec5-48de-9d8c-f147ba534934", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194343,7 +201696,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"idn:identity-attributes-changed\"" } ], "variable": [] @@ -194373,12 +201726,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "b99981f8-a9ff-4c0f-b0eb-52d95b3c3acf", + "id": "24d05d6d-c48c-49b5-b16e-b5ad15fb6e9e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -194415,7 +201768,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"idn:identity-attributes-changed\"" } ], "variable": [] @@ -194445,12 +201798,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c3f75bcb-38fa-4416-b0ca-2a7441c1c248", + "id": "ce9ea47f-cd19-44ad-aef0-0fb201b5be53", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194487,7 +201840,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"idn:identity-attributes-changed\"" } ], "variable": [] @@ -194517,12 +201870,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "8466ebc0-a0e4-4113-ba66-6207ef4225ca", + "id": "3cbd45d7-9736-4170-953a-9573cba974ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -194559,7 +201912,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"idn:identity-attributes-changed\"" } ], "variable": [] @@ -194589,12 +201942,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9e7c936d-e3f6-4afd-b5dd-67db3abc0387", + "id": "690397eb-31c6-4ff8-9f2b-7b2dcdc70728", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -194631,7 +201984,7 @@ "type": "text/plain" }, "key": "filters", - "value": "" + "value": "id eq \"idn:identity-attributes-changed\"" } ], "variable": [] @@ -194661,7 +202014,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -194672,7 +202025,7 @@ } }, { - "id": "40237deb-be9f-43a8-81e0-1526ab6874b3", + "id": "f8815d35-49a0-4822-b5f2-16c7938dfb04", "name": "List Workflow Library Operators", "request": { "name": "List Workflow Library Operators", @@ -194702,7 +202055,7 @@ }, "response": [ { - "id": "2949dcd4-2e63-40b7-9d07-b15689b63e13", + "id": "05601830-d85a-4e41-a491-055c19b3aa92", "name": "List of workflow operators", "originalRequest": { "url": { @@ -194741,12 +202094,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"multiType\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"identityPicker\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"url\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"object\"\n }\n ]\n }\n]", + "body": "[\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n },\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a08259d6-f97a-4799-bbe1-ad4928d09ca1", + "id": "8ae30b66-68b9-4a3d-867f-8496f5add9bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194785,12 +202138,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9b64ce2c-c7ee-4964-a9e5-beba87ea69c5", + "id": "cca7fba2-e136-4b26-856c-c43404fb5fd7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -194829,12 +202182,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "741b2770-86f9-4faf-919a-5409491d197b", + "id": "6484329f-971a-421d-a862-997776a99b88", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194873,12 +202226,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "d43d25e8-3ac9-4689-b979-c14d8dffe13b", + "id": "8fbe6c9f-0ece-421a-a8e2-185958117743", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -194917,12 +202270,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8505f98b-a822-4943-b16c-d7e8e2445edf", + "id": "6ed76a41-f11b-4327-a545-553ba332d165", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -194961,7 +202314,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -194972,7 +202325,7 @@ } }, { - "id": "45b5b65e-36f3-4d3b-a50e-3ec0bda2662d", + "id": "add20d79-7ae6-4b70-bc68-bfb7bad69d4b", "name": "Generate External Trigger OAuth Client", "request": { "name": "Generate External Trigger OAuth Client", @@ -194994,7 +202347,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", "key": "id", "disabled": true, "description": { @@ -195015,7 +202368,7 @@ }, "response": [ { - "id": "3ddd9610-82a6-432c-bc23-df391c39b029", + "id": "991e7c99-ad36-4add-9ad5-f9eb47c482cd", "name": "The OAuth Client object", "originalRequest": { "url": { @@ -195056,12 +202409,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"secret\": \"\",\n \"url\": \"\"\n}", + "body": "{\n \"id\": \"1a58c03a6bf64dc2876f6988c6e2c7b7\",\n \"secret\": \"00cc24a7fe810fe06a7cb38bc168ae104d703c7abb296f9944dc68e69ddb578b\",\n \"url\": \"https://tenant.api.identitynow.com/beta/workflows/execute/external/c17bea3a-574d-453c-9e04-4365fbf5af0b\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ada0ec73-edfe-4562-b754-53a37b16de53", + "id": "c83a2692-d0e2-42d6-839c-df43e779be4a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195102,12 +202455,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "3825c10e-5601-4e98-93df-c7bb74f61ca7", + "id": "9734d487-30f7-4780-91f5-7af09ac69524", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195148,12 +202501,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8a23b820-f8eb-4211-9247-88faeced7130", + "id": "e30c94b4-1075-4ab7-9c0d-954eb47aa6ce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195194,12 +202547,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "46643a1c-95c5-4467-ae88-9ecaec7b47aa", + "id": "77000b87-3130-4844-a3dd-cce00f995d2c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195240,12 +202593,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "361e915a-deca-450f-8a51-03e0c55838b1", + "id": "c5dfa437-cec3-4070-a415-a451d45326ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -195286,7 +202639,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -195297,7 +202650,7 @@ } }, { - "id": "35b89704-5943-401a-8ab2-cbd12c23bae7", + "id": "f4596ead-1e52-42a1-af07-fbf066390ac3", "name": "Execute Workflow via External Trigger", "request": { "name": "Execute Workflow via External Trigger", @@ -195319,7 +202672,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", "key": "id", "disabled": true, "description": { @@ -195342,7 +202695,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"customAttribute1\": \"value1\",\n \"customAttribute2\": \"value2\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -195353,7 +202706,7 @@ }, "response": [ { - "id": "3341c777-ce99-4254-8034-16c80ec5fe2d", + "id": "befd9dfe-9e6e-4430-b70c-5e722e603d89", "name": "The Workflow object", "originalRequest": { "url": { @@ -195390,7 +202743,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"customAttribute1\": \"value1\",\n \"customAttribute2\": \"value2\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -195407,12 +202760,12 @@ "value": "application/json" } ], - "body": "{\n \"workflowExecutionId\": \"\",\n \"message\": \"\"\n}", + "body": "{\n \"workflowExecutionId\": \"0e11cefa-96e7-4b67-90d0-065bc1da5753\",\n \"message\": \"Workflow was not executed externally. Check enabled flag on workflow definition\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "69d04ce1-a446-4750-a6af-f86544e43acb", + "id": "72fd4547-65bb-4aee-89dc-80fa521b790e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195449,7 +202802,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"customAttribute1\": \"value1\",\n \"customAttribute2\": \"value2\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -195466,12 +202819,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "217ad003-ee74-4d59-9112-78ab22c58733", + "id": "b50f590a-5811-4bd5-a0bb-c82915110cba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195508,7 +202861,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"customAttribute1\": \"value1\",\n \"customAttribute2\": \"value2\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -195525,12 +202878,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2681ecb4-8ab4-40a9-bade-73eb31e6fcbf", + "id": "5652b98c-5d48-4a90-9ac1-709e7e210dbb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195567,7 +202920,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"customAttribute1\": \"value1\",\n \"customAttribute2\": \"value2\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -195584,12 +202937,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "50797196-d62e-4df1-a519-b1e51928c798", + "id": "c599726e-5563-4b87-b736-9ec1dd287987", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195626,7 +202979,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"customAttribute1\": \"value1\",\n \"customAttribute2\": \"value2\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -195643,12 +202996,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f1c30115-4cca-4201-a925-8ae657dea4ab", + "id": "71534f83-b915-4841-beae-913890c2cc91", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -195685,7 +203038,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"customAttribute1\": \"value1\",\n \"customAttribute2\": \"value2\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -195702,7 +203055,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -195713,7 +203066,7 @@ } }, { - "id": "442390a9-80ef-4096-aa6c-bfc5e4b7d523", + "id": "96fdcbda-74e3-44cd-a0d6-0bc29e081fb3", "name": "Test Workflow via External Trigger", "request": { "name": "Test Workflow via External Trigger", @@ -195736,7 +203089,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", "key": "id", "disabled": true, "description": { @@ -195759,7 +203112,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"test\": \"hello world\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -195770,7 +203123,7 @@ }, "response": [ { - "id": "1f1668ad-85f3-4a54-a620-ac36dd83c9cf", + "id": "b12c218e-bda3-42a1-a7eb-9f4582a74b13", "name": "Responds with the test input", "originalRequest": { "url": { @@ -195808,7 +203161,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"test\": \"hello world\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -195825,12 +203178,12 @@ "value": "application/json" } ], - "body": "{\n \"payload\": {}\n}", + "body": "{\n \"payload\": {\n \"test\": \"hello world\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9422ff17-35bc-44a6-9eab-7ff8f2bcb3dc", + "id": "e2aea54e-6122-4f02-98fc-814a41e25101", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195868,7 +203221,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"test\": \"hello world\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -195885,12 +203238,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "ee723f44-17e6-4949-8d00-459f8f38e567", + "id": "178c6226-dd50-473d-b468-5cb22785e3ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195928,7 +203281,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"test\": \"hello world\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -195945,12 +203298,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e01c3fb3-c006-4320-8baa-ff96d9593155", + "id": "dffb8d50-289c-4e0a-b210-7d690b5d8492", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195988,7 +203341,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"test\": \"hello world\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -196005,12 +203358,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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": "9c62e6b8-bd2b-43d9-b043-8dc65a676048", + "id": "39f9c966-4981-423c-a52c-f44e8e1e8f39", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -196048,7 +203401,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"test\": \"hello world\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -196065,12 +203418,12 @@ "value": "application/json" } ], - "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7b2e28a4-2f47-4d7c-b5bd-0ee56bcdbee6", + "id": "36234389-2e08-4f5f-9f84-ac9aeffcc500", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -196108,7 +203461,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"input\": {}\n}", + "raw": "{\n \"input\": {\n \"test\": \"hello world\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -196125,7 +203478,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n}", + "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" } @@ -196216,7 +203569,7 @@ } ], "info": { - "_postman_id": "a1d9d483-937a-4ab9-8b67-516f52d1dbb7", + "_postman_id": "327d6ab8-91f4-4916-b600-65986f8af7c1", "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 78b47da..69ce67d 100644 --- a/postman/collections/sailpoint-api-nerm.json +++ b/postman/collections/sailpoint-api-nerm.json @@ -5,7 +5,7 @@ "description": "", "item": [ { - "id": "8e84e680-58c2-4e09-8bec-63a21544aa35", + "id": "47585f7d-595d-4b49-9e9d-ee4630552e4e", "name": "Create a new user", "request": { "name": "Create a new user", @@ -36,7 +36,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user\": {\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n}", + "raw": "{\n \"user\": {\n \"name\": \"Bob\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"my_user_title\",\n \"status\": \"Active\",\n \"login\": \"my_user\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -48,7 +48,7 @@ }, "response": [ { - "id": "5e8a22cc-2595-4bc2-a2e5-50f8ef183a5a", + "id": "d73ea5bd-6692-49d9-98ff-11077e49c185", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -82,7 +82,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user\": {\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n}", + "raw": "{\n \"user\": {\n \"name\": \"Bob\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"my_user_title\",\n \"status\": \"Active\",\n \"login\": \"my_user\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -99,12 +99,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"title\": \"\",\n \"status\": \"Disabled\",\n \"login\": \"\",\n \"last_login\": \"\",\n \"cookies_accepted_at\": \"\",\n \"preferred_language\": \"\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"9f91e801-85a0-d99e-c2da-57e6073d0bb5\",\n \"uid\": \"id in ut dolore estirure amet do\",\n \"name\": \"irure \",\n \"email\": \"DrjA0mDgoUujZ@lbZLhQHaIKKxqkhSIqIrWIOqV.gv\",\n \"type\": \"NeprofileUser\",\n \"title\": \"cillum irure eu commodo\",\n \"status\": \"Disabled\",\n \"login\": \"est pariatur\",\n \"last_login\": \"1970-10-10T10:56:41.478Z\",\n \"cookies_accepted_at\": \"1959-05-25T07:56:33.932Z\",\n \"preferred_language\": \"voluptate incididunt ut\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f7bffa44-304c-49c0-bb6d-69c9ce43e629", + "id": "76597caa-55b4-4f15-9963-a33626f481f4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -138,7 +138,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user\": {\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n}", + "raw": "{\n \"user\": {\n \"name\": \"Bob\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"my_user_title\",\n \"status\": \"Active\",\n \"login\": \"my_user\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -155,12 +155,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a928ddf8-3a8e-42fb-b80b-4878199978b9", + "id": "7b6bd858-1d8b-412e-b090-cfa89dba1f2f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -194,7 +194,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user\": {\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n}", + "raw": "{\n \"user\": {\n \"name\": \"Bob\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"my_user_title\",\n \"status\": \"Active\",\n \"login\": \"my_user\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -211,7 +211,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -222,7 +222,7 @@ } }, { - "id": "d4955afd-5149-489b-a637-3e4a4bf4098e", + "id": "e8a00206-aa31-4eaa-9195-5c82c66954fb", "name": "Get users", "request": { "name": "Get users", @@ -245,7 +245,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -254,7 +254,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -263,7 +263,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -272,7 +272,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -281,7 +281,7 @@ "type": "text/plain" }, "key": "login", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -290,7 +290,7 @@ "type": "text/plain" }, "key": "title", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -308,7 +308,7 @@ "type": "text/plain" }, "key": "email", - "value": "" + "value": "c8dv4TmTBpr8@eNzMrXvuftOyCByoigJnOKgRJdDqg.wg" }, { "disabled": false, @@ -317,7 +317,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -334,7 +334,7 @@ }, "response": [ { - "id": "5e0c4c2f-214e-4800-8608-076b2c3f2440", + "id": "602d5d26-0ccd-4937-a0d1-6000aaa45793", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -352,7 +352,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -361,7 +361,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -370,7 +370,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -379,7 +379,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -388,7 +388,7 @@ "type": "text/plain" }, "key": "login", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -397,7 +397,7 @@ "type": "text/plain" }, "key": "title", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -415,7 +415,7 @@ "type": "text/plain" }, "key": "email", - "value": "" + "value": "c8dv4TmTBpr8@eNzMrXvuftOyCByoigJnOKgRJdDqg.wg" }, { "disabled": false, @@ -424,7 +424,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -454,12 +454,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"title\": \"\",\n \"status\": \"Disabled\",\n \"login\": \"\",\n \"last_login\": \"\",\n \"cookies_accepted_at\": \"\",\n \"preferred_language\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"title\": \"\",\n \"status\": \"Disabled\",\n \"login\": \"\",\n \"last_login\": \"\",\n \"cookies_accepted_at\": \"\",\n \"preferred_language\": \"\"\n }\n ],\n \"_metadata\": {\n \"limit\": \"\",\n \"offset\": \"\",\n \"total\": \"\",\n \"next\": \"\",\n \"previous\": \"\"\n }\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"70fe2a31-0f41-c221-5e41-f01fb07c57e5\",\n \"uid\": \"et aliqua ullamco ipsum dolorsed\",\n \"name\": \"ut\",\n \"email\": \"9eN7j@isLCfnClfi.kk\",\n \"type\": \"NeprofileUser\",\n \"title\": \"ipsum non quis\",\n \"status\": \"Active\",\n \"login\": \"voluptate\",\n \"last_login\": \"2013-06-03T18:04:34.969Z\",\n \"cookies_accepted_at\": \"2004-05-26T15:09:03.681Z\",\n \"preferred_language\": \"veniam officia dolor v\"\n },\n {\n \"id\": \"d8dbf660-8599-23fe-2508-fb29b945f6e0\",\n \"uid\": \"dolordolore consequatproident nu\",\n \"name\": \"culpa qui\",\n \"email\": \"lgfDJ@qvJzoBHVvywxYghGIuEX.ckz\",\n \"type\": \"NeprofileUser\",\n \"title\": \"dolor ipsum anim\",\n \"status\": \"Disabled\",\n \"login\": \"et cillum incididunt labore\",\n \"last_login\": \"1945-07-17T18:36:38.341Z\",\n \"cookies_accepted_at\": \"2003-01-09T03:44:27.050Z\",\n \"preferred_language\": \"sunt occaecat Ut sed anim\"\n }\n ],\n \"_metadata\": {\n \"limit\": -47117736,\n \"offset\": 1341882,\n \"total\": 82593641,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "41733448-b410-444b-b6ed-1758a208ca6f", + "id": "12aff32c-2e6a-4afd-b055-ab6684e5347c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -477,7 +477,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -486,7 +486,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -495,7 +495,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -504,7 +504,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -513,7 +513,7 @@ "type": "text/plain" }, "key": "login", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -522,7 +522,7 @@ "type": "text/plain" }, "key": "title", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -540,7 +540,7 @@ "type": "text/plain" }, "key": "email", - "value": "" + "value": "c8dv4TmTBpr8@eNzMrXvuftOyCByoigJnOKgRJdDqg.wg" }, { "disabled": false, @@ -549,7 +549,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -579,12 +579,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "62a00ca3-60f3-4094-b659-b1a011114261", + "id": "16bcddc9-19b6-4151-898a-2db57dd30e99", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -602,7 +602,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -611,7 +611,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -620,7 +620,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -629,7 +629,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -638,7 +638,7 @@ "type": "text/plain" }, "key": "login", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -647,7 +647,7 @@ "type": "text/plain" }, "key": "title", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -665,7 +665,7 @@ "type": "text/plain" }, "key": "email", - "value": "" + "value": "c8dv4TmTBpr8@eNzMrXvuftOyCByoigJnOKgRJdDqg.wg" }, { "disabled": false, @@ -674,7 +674,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -704,7 +704,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -715,7 +715,7 @@ } }, { - "id": "cf7b8141-19f5-4744-ac39-3d676ed8e94a", + "id": "bda6a10d-722b-4754-915b-7c5b10788931", "name": "Create multiple new users", "request": { "name": "Create multiple new users", @@ -746,7 +746,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"users\": [\n {\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n },\n {\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n ]\n}", + "raw": "{\n \"users\": [\n {\n \"name\": \"Bob\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"my_user_title\",\n \"status\": \"Active\",\n \"login\": \"my_user\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n },\n {\n \"name\": \"Bob\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"my_user_title\",\n \"status\": \"Active\",\n \"login\": \"my_user\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -758,7 +758,7 @@ }, "response": [ { - "id": "0ae4cefb-bf8e-4940-9124-50559393de3b", + "id": "9287ac06-2569-490b-b822-6be7047f142c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -792,7 +792,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"users\": [\n {\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n },\n {\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n ]\n}", + "raw": "{\n \"users\": [\n {\n \"name\": \"Bob\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"my_user_title\",\n \"status\": \"Active\",\n \"login\": \"my_user\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n },\n {\n \"name\": \"Bob\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"my_user_title\",\n \"status\": \"Active\",\n \"login\": \"my_user\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -809,12 +809,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"title\": \"\",\n \"status\": \"Disabled\",\n \"login\": \"\",\n \"last_login\": \"\",\n \"cookies_accepted_at\": \"\",\n \"preferred_language\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"title\": \"\",\n \"status\": \"Disabled\",\n \"login\": \"\",\n \"last_login\": \"\",\n \"cookies_accepted_at\": \"\",\n \"preferred_language\": \"\"\n }\n ]\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"6edd9e80-3e4d-8634-868b-157fd9fa0363\",\n \"uid\": \"nulla in deseruntoccaecat adipis\",\n \"name\": \"Ut Duis ut\",\n \"email\": \"hTGI@LSPTPEktsZSOTtTCMQaGBodmAmPFWR.fhk\",\n \"type\": \"NeprofileUser\",\n \"title\": \"mollit exercitation\",\n \"status\": \"Disabled\",\n \"login\": \"nisi\",\n \"last_login\": \"1962-06-07T09:31:49.203Z\",\n \"cookies_accepted_at\": \"1964-07-04T03:30:13.290Z\",\n \"preferred_language\": \"ullamco occaecat culpa dolor\"\n },\n {\n \"id\": \"urn:uuid:9f479b17-3203-6612-46c7-34404866c1de\",\n \"uid\": \"ut exercitation Ut ipsumnon aliq\",\n \"name\": \"dolore nisi\",\n \"email\": \"dehDqg@AJHpKTlxTAwpRfMvlurBdrTCNQoLJsACu.wvcy\",\n \"type\": \"NeprofileUser\",\n \"title\": \"amet ad ipsum tempor\",\n \"status\": \"Active\",\n \"login\": \"velit\",\n \"last_login\": \"1976-02-07T22:16:36.714Z\",\n \"cookies_accepted_at\": \"1948-10-14T03:05:23.050Z\",\n \"preferred_language\": \"sed sit mollit aliqua Ut\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5b63e0d8-b960-4a15-83de-59e162c9c3fe", + "id": "846a81a2-6fa8-4382-9835-aef4a6e74930", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -848,7 +848,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"users\": [\n {\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n },\n {\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n ]\n}", + "raw": "{\n \"users\": [\n {\n \"name\": \"Bob\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"my_user_title\",\n \"status\": \"Active\",\n \"login\": \"my_user\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n },\n {\n \"name\": \"Bob\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"my_user_title\",\n \"status\": \"Active\",\n \"login\": \"my_user\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -865,12 +865,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "89bbd76c-a19d-4ad2-b874-3a3b800f22c0", + "id": "da41571a-790c-47b0-9bc3-0fc618fca7f6", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -904,7 +904,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"users\": [\n {\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n },\n {\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n ]\n}", + "raw": "{\n \"users\": [\n {\n \"name\": \"Bob\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"my_user_title\",\n \"status\": \"Active\",\n \"login\": \"my_user\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n },\n {\n \"name\": \"Bob\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"my_user_title\",\n \"status\": \"Active\",\n \"login\": \"my_user\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -921,7 +921,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -932,7 +932,7 @@ } }, { - "id": "69f00755-e6f2-4d3c-a4bd-dcbf6df2345f", + "id": "3842596d-1420-42ef-94dd-88c0a9ec3a52", "name": "Update multiple users", "request": { "name": "Update multiple users", @@ -963,7 +963,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"users\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Disabled\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n ]\n}", + "raw": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -975,7 +975,7 @@ }, "response": [ { - "id": "411cac4a-1c1e-47ea-9c20-00ad932ec94b", + "id": "10b89374-77bb-4c36-b2ce-7dbcccd7de9b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1009,7 +1009,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"users\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Disabled\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n ]\n}", + "raw": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1026,12 +1026,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"title\": \"\",\n \"status\": \"Disabled\",\n \"login\": \"\",\n \"last_login\": \"\",\n \"cookies_accepted_at\": \"\",\n \"preferred_language\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"title\": \"\",\n \"status\": \"Disabled\",\n \"login\": \"\",\n \"last_login\": \"\",\n \"cookies_accepted_at\": \"\",\n \"preferred_language\": \"\"\n }\n ]\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"6edd9e80-3e4d-8634-868b-157fd9fa0363\",\n \"uid\": \"nulla in deseruntoccaecat adipis\",\n \"name\": \"Ut Duis ut\",\n \"email\": \"hTGI@LSPTPEktsZSOTtTCMQaGBodmAmPFWR.fhk\",\n \"type\": \"NeprofileUser\",\n \"title\": \"mollit exercitation\",\n \"status\": \"Disabled\",\n \"login\": \"nisi\",\n \"last_login\": \"1962-06-07T09:31:49.203Z\",\n \"cookies_accepted_at\": \"1964-07-04T03:30:13.290Z\",\n \"preferred_language\": \"ullamco occaecat culpa dolor\"\n },\n {\n \"id\": \"urn:uuid:9f479b17-3203-6612-46c7-34404866c1de\",\n \"uid\": \"ut exercitation Ut ipsumnon aliq\",\n \"name\": \"dolore nisi\",\n \"email\": \"dehDqg@AJHpKTlxTAwpRfMvlurBdrTCNQoLJsACu.wvcy\",\n \"type\": \"NeprofileUser\",\n \"title\": \"amet ad ipsum tempor\",\n \"status\": \"Active\",\n \"login\": \"velit\",\n \"last_login\": \"1976-02-07T22:16:36.714Z\",\n \"cookies_accepted_at\": \"1948-10-14T03:05:23.050Z\",\n \"preferred_language\": \"sed sit mollit aliqua Ut\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f8c33ddb-000e-45dd-925f-46a23473cc16", + "id": "9be44659-e058-41a6-83d9-b9a17cdb6148", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1065,7 +1065,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"users\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Disabled\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n ]\n}", + "raw": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1082,12 +1082,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a176463f-2dfe-439e-8307-8addbbce1478", + "id": "ee581998-6bf8-404d-b391-c37df80a3dec", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1121,7 +1121,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"users\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Disabled\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n ]\n}", + "raw": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1138,7 +1138,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -1149,7 +1149,7 @@ } }, { - "id": "60d85cc3-68dd-4b93-8fbd-4fe6700893ae", + "id": "c429307c-27d5-4799-b803-f27088adaa88", "name": "Find user by id", "request": { "name": "Find user by id", @@ -1169,7 +1169,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -1191,7 +1191,7 @@ }, "response": [ { - "id": "df6d1642-4062-415b-8f31-c1ae789226bd", + "id": "7d776afb-cea5-479c-b2ff-4bfec3bd51d8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1230,12 +1230,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"title\": \"\",\n \"status\": \"Disabled\",\n \"login\": \"\",\n \"last_login\": \"\",\n \"cookies_accepted_at\": \"\",\n \"preferred_language\": \"\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"9f91e801-85a0-d99e-c2da-57e6073d0bb5\",\n \"uid\": \"id in ut dolore estirure amet do\",\n \"name\": \"irure \",\n \"email\": \"DrjA0mDgoUujZ@lbZLhQHaIKKxqkhSIqIrWIOqV.gv\",\n \"type\": \"NeprofileUser\",\n \"title\": \"cillum irure eu commodo\",\n \"status\": \"Disabled\",\n \"login\": \"est pariatur\",\n \"last_login\": \"1970-10-10T10:56:41.478Z\",\n \"cookies_accepted_at\": \"1959-05-25T07:56:33.932Z\",\n \"preferred_language\": \"voluptate incididunt ut\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2817dd7f-cad3-454c-a1a6-d583a24a4dde", + "id": "b84f41fe-ea38-4362-8d7a-67f1098366f8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1274,12 +1274,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cf70e364-0fea-4c2f-859b-cdeeb9ce623f", + "id": "ec0d6c4e-74ab-40c9-89f4-14ee662d4e65", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1318,7 +1318,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -1329,7 +1329,7 @@ } }, { - "id": "27ab2e13-5747-4924-8389-5ea3c7951727", + "id": "c39a593a-ef3c-4311-9e28-38c887e65640", "name": "Update a user by id", "request": { "name": "Update a user by id", @@ -1349,7 +1349,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -1372,7 +1372,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user\": {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n}", + "raw": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -1384,7 +1384,7 @@ }, "response": [ { - "id": "f3c089d1-86e4-4a5f-a425-cab15d1ec199", + "id": "1c40dc09-529d-4081-95df-f291d7b9acd2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1419,7 +1419,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user\": {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n}", + "raw": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -1436,12 +1436,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"title\": \"\",\n \"status\": \"Disabled\",\n \"login\": \"\",\n \"last_login\": \"\",\n \"cookies_accepted_at\": \"\",\n \"preferred_language\": \"\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"9f91e801-85a0-d99e-c2da-57e6073d0bb5\",\n \"uid\": \"id in ut dolore estirure amet do\",\n \"name\": \"irure \",\n \"email\": \"DrjA0mDgoUujZ@lbZLhQHaIKKxqkhSIqIrWIOqV.gv\",\n \"type\": \"NeprofileUser\",\n \"title\": \"cillum irure eu commodo\",\n \"status\": \"Disabled\",\n \"login\": \"est pariatur\",\n \"last_login\": \"1970-10-10T10:56:41.478Z\",\n \"cookies_accepted_at\": \"1959-05-25T07:56:33.932Z\",\n \"preferred_language\": \"voluptate incididunt ut\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db942320-b20d-45cc-ae89-0e536cea3e0d", + "id": "6c3cc8f0-cfc0-4597-a66a-7b3e0a46d690", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1476,7 +1476,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user\": {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n}", + "raw": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -1493,12 +1493,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8603c837-9d09-4273-9820-7a4674733358", + "id": "8cf07ef8-e626-499f-bf94-32f520786a6d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1533,7 +1533,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user\": {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"title\": \"\",\n \"status\": \"Active\",\n \"login\": \"\",\n \"group_strings\": \"\"\n }\n}", + "raw": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"profile_id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"group_strings\": \"Administrator_group,Developer_group\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -1550,7 +1550,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -1561,7 +1561,7 @@ } }, { - "id": "f35c9d83-447a-43b7-846f-1324c30a2027", + "id": "e3d0e0cf-9eb4-499e-9732-04b8c6298035", "name": "Delete a user", "request": { "name": "Delete a user", @@ -1581,7 +1581,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -1603,7 +1603,7 @@ }, "response": [ { - "id": "4a2804b9-2374-4760-9493-7fdf1103a011", + "id": "7d04effe-1c9b-4c7e-a40b-23108a8e3363", "name": "Info about the operation", "originalRequest": { "url": { @@ -1642,12 +1642,12 @@ "value": "application/json" } ], - "body": "{\n \"info\": {\n \"description\": \"A message confirming the operation\",\n \"example\": \"object deleted\"\n }\n}", + "body": "{\n \"info\": \"object deleted\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "782e9353-0cd2-4d4a-a8cc-918c96f87a62", + "id": "4c182966-2ab0-48e5-8d7d-96b89fa3f9f2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1686,12 +1686,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b61df3cb-f88e-42a6-8419-675937720e49", + "id": "c86c0586-8bf6-4cd9-aeb3-3af382085146", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1730,7 +1730,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -1741,7 +1741,7 @@ } }, { - "id": "9a8698f0-ee49-4cd9-9093-2a35da745c67", + "id": "56b9e85e-b558-4340-8cd3-52c383562236", "name": "Retrieves the URL of the user avatar", "request": { "name": "Retrieves the URL of the user avatar", @@ -1762,7 +1762,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -1784,7 +1784,7 @@ }, "response": [ { - "id": "9ace7657-b17f-497a-8fcb-9700a41e15d4", + "id": "d72ba961-3c91-447c-8d44-2615e52675dd", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1824,12 +1824,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"\"\n}", + "body": "{\n \"url\": \"laboris anim\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a0218380-0776-4073-bc24-1b6dceacae91", + "id": "2a3796c5-dffd-4ddc-9a2e-ece798e75f10", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1869,12 +1869,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a04ec445-2d82-4a5a-9b8b-e1c0267fa916", + "id": "9e125b24-f4e0-485e-992f-0cb5c2f65b29", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1914,7 +1914,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -1925,7 +1925,7 @@ } }, { - "id": "5363b0bb-bc0c-4935-bd4d-138ad1da04c2", + "id": "fed350de-3c7f-4ccd-b458-5f99999b8329", "name": "Uploads a new user avatar", "request": { "name": "Uploads a new user avatar", @@ -1946,7 +1946,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -1976,7 +1976,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -1985,7 +1985,7 @@ }, "response": [ { - "id": "32899375-39ab-4006-8786-ca16f3c96cf8", + "id": "a1a10089-d96e-457f-8d26-298d1f9c30e5", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2028,7 +2028,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -2042,12 +2042,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"\"\n}", + "body": "{\n \"url\": \"laboris anim\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e97154e-d286-475a-b76d-4a48ab3937de", + "id": "ef34cf6a-27cf-49ce-a55f-154d2cbf5e1e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2090,7 +2090,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -2104,12 +2104,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb7e0d08-a6db-4b7e-a6e7-c92d3449ee02", + "id": "6b799809-9215-475b-982a-9c0f506d314f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2152,7 +2152,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -2166,7 +2166,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -2183,7 +2183,7 @@ "description": "", "item": [ { - "id": "780e943d-8a61-4caa-9989-e00467afa0ba", + "id": "9320b379-11fa-4633-95fc-bfcb003fb46a", "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\": \"\",\n \"manager_id\": \"\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f687ab1e-f0b7-7eeb-d891-cb6700771ba5\",\n \"manager_id\": \"3cc8bab2-3581-52fc-82f4-07b9951232fd\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2226,7 +2226,7 @@ }, "response": [ { - "id": "9c3da248-4289-4768-8cbd-352c7b5c6248", + "id": "69ecea55-23f9-4c24-8fe7-cb747df9542a", "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\": \"\",\n \"manager_id\": \"\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f687ab1e-f0b7-7eeb-d891-cb6700771ba5\",\n \"manager_id\": \"3cc8bab2-3581-52fc-82f4-07b9951232fd\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2277,12 +2277,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"urn:uuid:bd43a541-a0e1-1814-fc77-96fea13d4cfa\",\n \"uid\": \"magna aliqua eiusmod involuptate\",\n \"user_id\": \"urn:uuid:700f7cce-2dd6-039c-39ad-a401a081ac57\",\n \"manager_id\": \"086fa464-3373-3682-ddc3-0d4f9debf852\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c279aa0b-4c5c-4cf6-bcd1-714d77e7f2cf", + "id": "ff2860de-c6b2-40db-ab3a-2da2ea9c154d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2316,7 +2316,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f687ab1e-f0b7-7eeb-d891-cb6700771ba5\",\n \"manager_id\": \"3cc8bab2-3581-52fc-82f4-07b9951232fd\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2333,12 +2333,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ff44bb4-b294-4629-af01-24be8fb44f6a", + "id": "913c8222-dae3-4360-b07b-10fbad2c76a7", "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\": \"\",\n \"manager_id\": \"\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f687ab1e-f0b7-7eeb-d891-cb6700771ba5\",\n \"manager_id\": \"3cc8bab2-3581-52fc-82f4-07b9951232fd\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2389,7 +2389,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -2400,7 +2400,7 @@ } }, { - "id": "c7180288-9acf-4fc7-88b9-306f93b9f2ac", + "id": "26d83cb6-2848-43bb-b0ec-cf0706424602", "name": "Get user-manager relationships", "request": { "name": "Get user-manager relationships", @@ -2423,7 +2423,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -2432,7 +2432,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -2441,7 +2441,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -2450,7 +2450,7 @@ "type": "text/plain" }, "key": "user_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -2459,7 +2459,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -2468,7 +2468,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -2485,7 +2485,7 @@ }, "response": [ { - "id": "a6b46ff9-b03d-404a-9117-626c9f8b1247", + "id": "6936ff26-c861-4f89-a7c1-6fdaae3e1f59", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2503,7 +2503,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -2512,7 +2512,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -2521,7 +2521,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -2530,7 +2530,7 @@ "type": "text/plain" }, "key": "user_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -2539,7 +2539,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -2548,7 +2548,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -2578,12 +2578,12 @@ "value": "application/json" } ], - "body": "{\n \"user_managers\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"manager_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n ],\n \"_metadata\": {\n \"limit\": \"\",\n \"offset\": \"\",\n \"total\": \"\",\n \"next\": \"\",\n \"previous\": \"\"\n }\n}", + "body": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:22acbd5c-8c75-d9fb-5e38-7bf3219b7e61\",\n \"uid\": \"aliquipsit mollitUt id Excepteur\",\n \"user_id\": \"urn:uuid:4a5e059e-25cd-4d9e-5b08-b66879c2df49\",\n \"manager_id\": \"urn:uuid:444bd657-04ad-01f2-54f7-805e75e72958\"\n },\n {\n \"id\": \"ee621a56-915f-ffb5-5cd5-9fcd56ad74b5\",\n \"uid\": \"aliqua ideiusmod idin nulla cupi\",\n \"user_id\": \"urn:uuid:d68e070f-c5f8-7fe1-2cd0-75e94ff5f12b\",\n \"manager_id\": \"e3f7d978-6522-c0b4-8ce1-3575ef874ad6\"\n }\n ],\n \"_metadata\": {\n \"limit\": 20064355,\n \"offset\": 78247309,\n \"total\": -94346657,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0628f456-59c9-496d-a828-887b25c03c1e", + "id": "38766e2b-ba92-4b2b-b052-37aa14dcae24", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2601,7 +2601,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -2610,7 +2610,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -2619,7 +2619,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -2628,7 +2628,7 @@ "type": "text/plain" }, "key": "user_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -2637,7 +2637,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -2646,7 +2646,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -2676,12 +2676,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8ac83470-32bc-412d-b0f3-2e2f278b8c9c", + "id": "ada3ca26-3012-4c98-bc33-1b2c368e6cc9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2699,7 +2699,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -2708,7 +2708,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -2717,7 +2717,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -2726,7 +2726,7 @@ "type": "text/plain" }, "key": "user_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -2735,7 +2735,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -2744,7 +2744,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -2774,7 +2774,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -2785,7 +2785,7 @@ } }, { - "id": "a1ea4fa3-8417-4bc1-a4fc-e1224fb98633", + "id": "f9d5f6dc-6065-48b4-867c-43aad62907f6", "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\": \"\",\n \"manager_id\": \"\"\n },\n {\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"3dfd50f7-26cc-815c-34ea-5ac200515658\",\n \"manager_id\": \"ba8b271d-1054-1031-bf8e-2d67ac98a048\"\n },\n {\n \"user_id\": \"8648ed22-a016-7a15-dc0f-5cfb3482232d\",\n \"manager_id\": \"urn:uuid:8dde1978-e4d5-72e6-6906-869d60dda43a\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2828,7 +2828,7 @@ }, "response": [ { - "id": "702100b0-eaae-45ff-aaea-41a4364bc3f7", + "id": "eef0c843-6b4e-4b09-95f6-37282393e1c2", "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\": \"\",\n \"manager_id\": \"\"\n },\n {\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"3dfd50f7-26cc-815c-34ea-5ac200515658\",\n \"manager_id\": \"ba8b271d-1054-1031-bf8e-2d67ac98a048\"\n },\n {\n \"user_id\": \"8648ed22-a016-7a15-dc0f-5cfb3482232d\",\n \"manager_id\": \"urn:uuid:8dde1978-e4d5-72e6-6906-869d60dda43a\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2879,12 +2879,12 @@ "value": "application/json" } ], - "body": "{\n \"info\": \"\",\n \"job_status\": {\n \"job_id\": \"\",\n \"status\": \"\"\n },\n \"status\": \"\"\n}", + "body": "{\n \"info\": \"job has started\",\n \"job_status\": {\n \"job_id\": \"3ce88e47ad6dba2ddf349d21\",\n \"status\": \"queued\"\n },\n \"status\": 200\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4d85d202-1812-4c61-aa14-7107e49dc2a0", + "id": "893d1e2e-3c9b-40c2-96c2-5e0d40cb31c3", "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\": \"\",\n \"manager_id\": \"\"\n },\n {\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"3dfd50f7-26cc-815c-34ea-5ac200515658\",\n \"manager_id\": \"ba8b271d-1054-1031-bf8e-2d67ac98a048\"\n },\n {\n \"user_id\": \"8648ed22-a016-7a15-dc0f-5cfb3482232d\",\n \"manager_id\": \"urn:uuid:8dde1978-e4d5-72e6-6906-869d60dda43a\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2935,12 +2935,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec35a7f2-b5bf-4514-9c1a-7fb220f2bb96", + "id": "bb25243d-a71f-4a7d-a176-095804a30eb7", "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\": \"\",\n \"manager_id\": \"\"\n },\n {\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"3dfd50f7-26cc-815c-34ea-5ac200515658\",\n \"manager_id\": \"ba8b271d-1054-1031-bf8e-2d67ac98a048\"\n },\n {\n \"user_id\": \"8648ed22-a016-7a15-dc0f-5cfb3482232d\",\n \"manager_id\": \"urn:uuid:8dde1978-e4d5-72e6-6906-869d60dda43a\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2991,7 +2991,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3002,7 +3002,7 @@ } }, { - "id": "064cc0fa-0c58-4c2c-b0c6-f3c0db4b8fe6", + "id": "d44b9ae3-659b-4b79-a643-aac393f0f3ed", "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\": \"\",\n \"user_id\": \"\",\n \"manager_id\": \"\"\n },\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"4269fe0e-23ea-57ed-755c-b1e1e672c64c\",\n \"user_id\": \"urn:uuid:34809dfe-f482-6abc-5186-0197ac347f52\",\n \"manager_id\": \"4e25fa7e-27f9-204b-239d-046c3b27ae27\"\n },\n {\n \"id\": \"urn:uuid:b71bc5af-bbc5-cbd4-6913-9a35b9756552\",\n \"user_id\": \"6e9ff37a-1aae-0f94-9e67-d4c3de8b377b\",\n \"manager_id\": \"5128ab22-0ff0-e3f3-23b5-12763f248811\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3045,7 +3045,7 @@ }, "response": [ { - "id": "a2688452-2698-4de4-8ff3-2cf081e07358", + "id": "8f4e671f-9ab8-4649-ac9b-7ae28d185a37", "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\": \"\",\n \"user_id\": \"\",\n \"manager_id\": \"\"\n },\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"4269fe0e-23ea-57ed-755c-b1e1e672c64c\",\n \"user_id\": \"urn:uuid:34809dfe-f482-6abc-5186-0197ac347f52\",\n \"manager_id\": \"4e25fa7e-27f9-204b-239d-046c3b27ae27\"\n },\n {\n \"id\": \"urn:uuid:b71bc5af-bbc5-cbd4-6913-9a35b9756552\",\n \"user_id\": \"6e9ff37a-1aae-0f94-9e67-d4c3de8b377b\",\n \"manager_id\": \"5128ab22-0ff0-e3f3-23b5-12763f248811\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3096,12 +3096,12 @@ "value": "application/json" } ], - "body": "{\n \"info\": \"\",\n \"job_status\": {\n \"job_id\": \"\",\n \"status\": \"\"\n },\n \"status\": \"\"\n}", + "body": "{\n \"info\": \"job has started\",\n \"job_status\": {\n \"job_id\": \"3ce88e47ad6dba2ddf349d21\",\n \"status\": \"queued\"\n },\n \"status\": 200\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0e099725-703c-4361-8caa-b94823d964d2", + "id": "d08976c3-2712-4c23-9ab4-b2b0f85acec7", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3135,7 +3135,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"manager_id\": \"\"\n },\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"4269fe0e-23ea-57ed-755c-b1e1e672c64c\",\n \"user_id\": \"urn:uuid:34809dfe-f482-6abc-5186-0197ac347f52\",\n \"manager_id\": \"4e25fa7e-27f9-204b-239d-046c3b27ae27\"\n },\n {\n \"id\": \"urn:uuid:b71bc5af-bbc5-cbd4-6913-9a35b9756552\",\n \"user_id\": \"6e9ff37a-1aae-0f94-9e67-d4c3de8b377b\",\n \"manager_id\": \"5128ab22-0ff0-e3f3-23b5-12763f248811\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3152,12 +3152,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c9696383-0c7d-4d2d-a89b-b3c1680aa2d9", + "id": "9c06b1fd-af83-4c37-bdb6-026dbf1a4a65", "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\": \"\",\n \"user_id\": \"\",\n \"manager_id\": \"\"\n },\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"4269fe0e-23ea-57ed-755c-b1e1e672c64c\",\n \"user_id\": \"urn:uuid:34809dfe-f482-6abc-5186-0197ac347f52\",\n \"manager_id\": \"4e25fa7e-27f9-204b-239d-046c3b27ae27\"\n },\n {\n \"id\": \"urn:uuid:b71bc5af-bbc5-cbd4-6913-9a35b9756552\",\n \"user_id\": \"6e9ff37a-1aae-0f94-9e67-d4c3de8b377b\",\n \"manager_id\": \"5128ab22-0ff0-e3f3-23b5-12763f248811\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3208,7 +3208,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3219,7 +3219,7 @@ } }, { - "id": "e3027c22-2158-4c36-939d-09c5d594c348", + "id": "f93209d0-cb74-4cb5-9727-eefd2e4e1299", "name": "Find user-manager relationship by id", "request": { "name": "Find user-manager relationship by id", @@ -3239,7 +3239,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -3261,7 +3261,7 @@ }, "response": [ { - "id": "a5f05dac-d293-4255-a204-a7b5e324574f", + "id": "eaeb89b5-b56a-4773-b241-49cb6e6f033f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3300,12 +3300,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"urn:uuid:bd43a541-a0e1-1814-fc77-96fea13d4cfa\",\n \"uid\": \"magna aliqua eiusmod involuptate\",\n \"user_id\": \"urn:uuid:700f7cce-2dd6-039c-39ad-a401a081ac57\",\n \"manager_id\": \"086fa464-3373-3682-ddc3-0d4f9debf852\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e92d61ca-1223-444a-ac77-b80317831f7a", + "id": "56044fae-1aa6-4871-8055-d3de08d0d4ea", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3344,12 +3344,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec71c7d1-069c-456d-9d8b-40d51cec1638", + "id": "f44a0988-683c-4416-88d6-517913e89557", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3388,7 +3388,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3399,7 +3399,7 @@ } }, { - "id": "bcd763c2-af0f-440f-829d-c02416cd9b33", + "id": "ea84874b-6a0a-4037-a8f7-e84953613630", "name": "Update a user-manager relationship by id", "request": { "name": "Update a user-manager relationship by id", @@ -3419,7 +3419,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -3442,7 +3442,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f687ab1e-f0b7-7eeb-d891-cb6700771ba5\",\n \"manager_id\": \"3cc8bab2-3581-52fc-82f4-07b9951232fd\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3454,7 +3454,7 @@ }, "response": [ { - "id": "b376779f-b36b-412a-b104-5dd3434918fa", + "id": "213fbb4a-cf6d-490f-b09e-3e577b96231a", "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\": \"\",\n \"manager_id\": \"\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f687ab1e-f0b7-7eeb-d891-cb6700771ba5\",\n \"manager_id\": \"3cc8bab2-3581-52fc-82f4-07b9951232fd\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3506,12 +3506,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"urn:uuid:bd43a541-a0e1-1814-fc77-96fea13d4cfa\",\n \"uid\": \"magna aliqua eiusmod involuptate\",\n \"user_id\": \"urn:uuid:700f7cce-2dd6-039c-39ad-a401a081ac57\",\n \"manager_id\": \"086fa464-3373-3682-ddc3-0d4f9debf852\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "84a6eb32-068d-4e1a-ae68-461b4d56890d", + "id": "99def2c9-9122-47b1-b3e3-d91442116af8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3546,7 +3546,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"\",\n \"manager_id\": \"\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f687ab1e-f0b7-7eeb-d891-cb6700771ba5\",\n \"manager_id\": \"3cc8bab2-3581-52fc-82f4-07b9951232fd\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3563,12 +3563,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "14aa556b-a06d-40f1-afd9-e7387057169a", + "id": "0ff42705-61bf-4dfa-a1da-ffa21ac205ef", "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\": \"\",\n \"manager_id\": \"\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f687ab1e-f0b7-7eeb-d891-cb6700771ba5\",\n \"manager_id\": \"3cc8bab2-3581-52fc-82f4-07b9951232fd\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3620,7 +3620,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3637,7 +3637,7 @@ "description": "", "item": [ { - "id": "9d0fe9e6-da7b-4a74-aad6-132788f59fcd", + "id": "7351c62c-2010-43cc-be76-2f57af087cac", "name": "Get roles", "request": { "name": "Get roles", @@ -3660,7 +3660,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -3669,7 +3669,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -3678,7 +3678,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -3687,7 +3687,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -3704,7 +3704,7 @@ }, "response": [ { - "id": "7e8d6a79-89ad-4cda-b149-6df20b66c6da", + "id": "5d86d641-3513-410d-be06-51e202705f7d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3722,7 +3722,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -3731,7 +3731,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -3740,7 +3740,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -3749,7 +3749,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -3779,12 +3779,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": \"\",\n \"offset\": \"\",\n \"total\": \"\",\n \"next\": \"\",\n \"previous\": \"\"\n }\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"urn:uuid:60f27ab7-0462-f834-2914-7638fd579674\",\n \"uid\": \"veniam eiusmod laborum auteut id\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"urn:uuid:7499cbe8-7508-ad75-a2da-ce8c2023b943\",\n \"uid\": \"culpanostrudad nostrud eiusmod s\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": 60887234,\n \"offset\": -22965986,\n \"total\": -18387009,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8aebea5c-49ab-4ee1-b86f-62f248773b6c", + "id": "698fec69-7ebd-40c6-bf5b-8d5fc901e471", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3802,7 +3802,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -3811,7 +3811,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -3820,7 +3820,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -3829,7 +3829,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -3859,12 +3859,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eb973a2c-d7a0-4a32-a679-e10c53f4f4a9", + "id": "4c3bfe6b-c240-410d-9ab6-686ef340c52a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3882,7 +3882,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -3891,7 +3891,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -3900,7 +3900,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -3909,7 +3909,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -3939,7 +3939,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3950,7 +3950,7 @@ } }, { - "id": "1b17b465-98ac-4334-b8b8-7f9d03d236ac", + "id": "87f156ba-b764-48bb-80c7-487b32d7b9a2", "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\": \"\",\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n },\n {\n \"uid\": \"\",\n \"type\": \"NeaccessRole\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"nulla cillumirure fugiat aliqua \",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"ea dolorlabore esse elit commodo\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3993,7 +3993,7 @@ }, "response": [ { - "id": "4f76ea1b-00ed-4cab-9fc4-f8a249f990a7", + "id": "affc0632-6b9b-4f25-9ed4-c2f9a48eacd5", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4027,7 +4027,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"\",\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n },\n {\n \"uid\": \"\",\n \"type\": \"NeaccessRole\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"nulla cillumirure fugiat aliqua \",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"ea dolorlabore esse elit commodo\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4044,12 +4044,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n ]\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"81933e0e-06c6-755b-fb62-6a664b8287b2\",\n \"uid\": \"idminim voluptate cupidatatUtadi\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"d394e652-d919-0c80-a745-596ca13f8c1a\",\n \"uid\": \"aliquip enimdeserunt eiusmod rep\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d9f87246-40c4-46a6-941c-abf51559f5b1", + "id": "d8b944f2-43b9-42bf-9ed1-6efcef0f57b9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4083,7 +4083,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"\",\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n },\n {\n \"uid\": \"\",\n \"type\": \"NeaccessRole\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"nulla cillumirure fugiat aliqua \",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"ea dolorlabore esse elit commodo\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4100,12 +4100,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "193b630b-8aea-4c1f-9b6b-72555a7371e0", + "id": "f75f9211-b553-4cec-9b55-96039232db2b", "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\": \"\",\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n },\n {\n \"uid\": \"\",\n \"type\": \"NeaccessRole\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"nulla cillumirure fugiat aliqua \",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"ea dolorlabore esse elit commodo\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4156,7 +4156,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -4167,7 +4167,7 @@ } }, { - "id": "ddf6508f-85c3-462c-8c52-a2a960884df8", + "id": "492a28b5-62fe-4c63-8dbb-8c00a0f81d02", "name": "Update multiple roles", "request": { "name": "Update multiple roles", @@ -4198,7 +4198,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"archived\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"archived\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"archived\": true,\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"archived\": true,\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4210,7 +4210,7 @@ }, "response": [ { - "id": "1ba65991-3b99-4d7f-ac19-d7734589e9e0", + "id": "1276d35d-baf5-4aa9-8e0a-82392ba29dab", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4244,7 +4244,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"archived\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"archived\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"archived\": true,\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"archived\": true,\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4261,12 +4261,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n ]\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"81933e0e-06c6-755b-fb62-6a664b8287b2\",\n \"uid\": \"idminim voluptate cupidatatUtadi\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"d394e652-d919-0c80-a745-596ca13f8c1a\",\n \"uid\": \"aliquip enimdeserunt eiusmod rep\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bbaee215-4d62-48ce-9b4d-b43c8de3acb2", + "id": "a055224b-710b-496c-8c47-ed3843219108", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4300,7 +4300,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"archived\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"archived\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"archived\": true,\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"archived\": true,\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4317,12 +4317,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2a415be-d42c-47cd-b622-16a35fad813c", + "id": "fa724ef0-8566-4efb-92a2-909bb677a1fe", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4356,7 +4356,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"archived\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"archived\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"archived\": true,\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"archived\": true,\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4373,7 +4373,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -4384,7 +4384,7 @@ } }, { - "id": "19ab6eb1-fcb0-45dc-b0b6-6cda1f12e995", + "id": "dfc477bd-c939-4118-877c-afaf8a3d80a6", "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\": \"\",\n \"type\": \"NeaccessRole\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"elit Utexercitation anim Utauter\",\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": "5f644045-b95a-4632-9938-65e217e5484d", + "id": "0d26b4e5-f3fd-4c4b-adf7-785c56d55d69", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4461,7 +4461,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"\",\n \"type\": \"NeaccessRole\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"elit Utexercitation anim Utauter\",\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\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"998843c4-9665-c8fd-7bc1-883156ee62d7\",\n \"uid\": \"cupidatat sit anim dolornisivolu\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "19efe1a2-5f40-4715-8f35-9015fa6a85e7", + "id": "ac355c2d-3208-4672-aa89-b91565038943", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4517,7 +4517,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"\",\n \"type\": \"NeaccessRole\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"elit Utexercitation anim Utauter\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4534,12 +4534,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3da760cb-76d5-4963-b574-779f0625a8c2", + "id": "b0f2b2fd-fce7-4255-aaaa-81923f041119", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4573,7 +4573,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"\",\n \"type\": \"NeaccessRole\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"elit Utexercitation anim Utauter\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4590,7 +4590,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -4601,7 +4601,7 @@ } }, { - "id": "cbd76c56-0c5a-40f0-a35a-7519547242cf", + "id": "9dce084b-850b-4b78-a9d5-e41077e8dd43", "name": "Find role by id", "request": { "name": "Find role by id", @@ -4621,7 +4621,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -4643,7 +4643,7 @@ }, "response": [ { - "id": "8836d75b-bd15-41cf-b219-75dc9182dd31", + "id": "c3e467aa-e89a-4a30-a0d2-d5726d0eeb1a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4682,12 +4682,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"998843c4-9665-c8fd-7bc1-883156ee62d7\",\n \"uid\": \"cupidatat sit anim dolornisivolu\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9675bc64-8a77-42ef-81a5-b47cd9eaa68f", + "id": "c4612e82-f7fa-49fc-afc4-1c501e056cfc", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4726,12 +4726,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "535e4446-9b96-429b-9349-b0567a628f5c", + "id": "a0958ef1-661c-41d6-b864-7969f712264d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4770,7 +4770,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -4781,7 +4781,7 @@ } }, { - "id": "25bc8771-5af6-4253-a11c-5c7213e4fa45", + "id": "580f78b8-b419-4379-be11-49eb22093b6d", "name": "Update an existing role", "request": { "name": "Update an existing role", @@ -4801,7 +4801,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -4824,7 +4824,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"archived\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"archived\": true,\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4836,7 +4836,7 @@ }, "response": [ { - "id": "dfcb78fe-c1e3-4da6-87fb-944bebe260b5", + "id": "2d60a149-3ea4-4e2e-9d7c-6c64782623b8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4871,7 +4871,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"archived\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"archived\": true,\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4888,12 +4888,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"998843c4-9665-c8fd-7bc1-883156ee62d7\",\n \"uid\": \"cupidatat sit anim dolornisivolu\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9c2a571c-7462-4f5f-9cbc-73db1cbd41c4", + "id": "176ac909-fd32-4542-b8ee-7a40fa27281e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4928,7 +4928,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"archived\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"archived\": true,\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4945,12 +4945,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb42e3d0-87f8-496f-953a-e1c19cf6fa10", + "id": "870e2043-e451-4815-a8f8-39e9fda0c8f5", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4985,7 +4985,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"type\": \"NeprofileRole\",\n \"name\": \"\",\n \"archived\": \"\",\n \"groups\": [\n \"\",\n \"\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"archived\": true,\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5002,7 +5002,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -5019,7 +5019,7 @@ "description": "", "item": [ { - "id": "7232f571-1f73-42c0-bb0e-53ad863408cd", + "id": "424335be-49cd-45b3-9a9a-452f010bde73", "name": "Create a permission", "request": { "name": "Create a permission", @@ -5050,7 +5050,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"permission\": {\n \"role_id\": \"\",\n \"subject_id\": \"\",\n \"value\": 5,\n \"subject\": 16\n }\n}", + "raw": "{\n \"permission\": {\n \"role_id\": \"ef5d413f-ba18-49e6-9a72-bb115aa133ff\",\n \"subject_id\": \"db3d85ef-c324-458b-b206-58debaa96419\",\n \"value\": 1,\n \"subject\": 0\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5062,7 +5062,7 @@ }, "response": [ { - "id": "0d3f151f-7852-4eb4-afe1-c25860664174", + "id": "332c2449-1eb3-4e28-a496-9a0c29edf08c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5096,7 +5096,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"permission\": {\n \"role_id\": \"\",\n \"subject_id\": \"\",\n \"value\": 5,\n \"subject\": 16\n }\n}", + "raw": "{\n \"permission\": {\n \"role_id\": \"ef5d413f-ba18-49e6-9a72-bb115aa133ff\",\n \"subject_id\": \"db3d85ef-c324-458b-b206-58debaa96419\",\n \"value\": 1,\n \"subject\": 0\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5113,12 +5113,12 @@ "value": "application/json" } ], - "body": "{\n \"permission\": {\n \"id\": \"\",\n \"role_id\": \"\",\n \"value\": \"\",\n \"subject\": \"\",\n \"subject_id\": \"\"\n }\n}", + "body": "{\n \"permission\": {\n \"id\": \"2e06b876-f456-473d-bd65-b6435e0b6b2d\",\n \"role_id\": \"ef5d413f-ba18-49e6-9a72-bb115aa133ff\",\n \"value\": 1,\n \"subject\": 1,\n \"subject_id\": \"db3d85ef-c324-458b-b206-58debaa96419\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "27f49cd7-d1f5-42e1-ae55-ab19d627baa8", + "id": "26591042-81bb-4b05-bdc1-d382f4279e8f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5152,7 +5152,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"permission\": {\n \"role_id\": \"\",\n \"subject_id\": \"\",\n \"value\": 5,\n \"subject\": 16\n }\n}", + "raw": "{\n \"permission\": {\n \"role_id\": \"ef5d413f-ba18-49e6-9a72-bb115aa133ff\",\n \"subject_id\": \"db3d85ef-c324-458b-b206-58debaa96419\",\n \"value\": 1,\n \"subject\": 0\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5169,12 +5169,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9cf1bf58-bee8-447c-a689-6b0846e4c869", + "id": "e576f73a-b9fe-44f7-be16-5779af06e5d2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5208,7 +5208,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"permission\": {\n \"role_id\": \"\",\n \"subject_id\": \"\",\n \"value\": 5,\n \"subject\": 16\n }\n}", + "raw": "{\n \"permission\": {\n \"role_id\": \"ef5d413f-ba18-49e6-9a72-bb115aa133ff\",\n \"subject_id\": \"db3d85ef-c324-458b-b206-58debaa96419\",\n \"value\": 1,\n \"subject\": 0\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5225,7 +5225,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -5242,7 +5242,7 @@ "description": "", "item": [ { - "id": "b0b8f513-4998-418e-b81c-145251229860", + "id": "4ea11e6c-c06b-4c38-a224-9cae01d46b30", "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\": \"\",\n \"role_id\": \"\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:5916aaa5-338d-8ff4-0306-bd486a8cb148\",\n \"role_id\": \"5510da74-6762-6ffa-f44a-34c73c0055e0\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5285,7 +5285,7 @@ }, "response": [ { - "id": "9e492871-43f7-4e09-b247-c3659b48edc9", + "id": "c2d3f308-7ac8-43e4-8657-e06b3de07d07", "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\": \"\",\n \"role_id\": \"\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:5916aaa5-338d-8ff4-0306-bd486a8cb148\",\n \"role_id\": \"5510da74-6762-6ffa-f44a-34c73c0055e0\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5336,12 +5336,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:bab16ad6-6b01-62a9-cf10-47ab1517a732\",\n \"uid\": \"commodo ipsum cillumveniam dolor\",\n \"user_id\": \"urn:uuid:8a43b1ec-a287-1c63-81a4-20d8e317aa84\",\n \"role_id\": \"urn:uuid:f0be1dc3-efbe-1df7-88ab-02159b550dc1\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7a6d2d54-5b16-4945-8efc-d09a9039a996", + "id": "e74e0a03-b724-4f76-bc97-4a7aafedfc81", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5375,7 +5375,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:5916aaa5-338d-8ff4-0306-bd486a8cb148\",\n \"role_id\": \"5510da74-6762-6ffa-f44a-34c73c0055e0\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5392,12 +5392,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d29f876a-3cd7-478e-a65c-8b40bfaa272d", + "id": "dcc92147-02fd-4aac-b7d3-6649ac9d8eeb", "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\": \"\",\n \"role_id\": \"\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:5916aaa5-338d-8ff4-0306-bd486a8cb148\",\n \"role_id\": \"5510da74-6762-6ffa-f44a-34c73c0055e0\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5448,7 +5448,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -5459,7 +5459,7 @@ } }, { - "id": "e0b61cff-8613-4d9f-8a93-31c957ce7402", + "id": "5b557b16-7f91-44a1-89f1-030abd1792c4", "name": "Get user role pairings", "request": { "name": "Get user role pairings", @@ -5482,7 +5482,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -5491,7 +5491,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -5500,7 +5500,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -5509,7 +5509,7 @@ "type": "text/plain" }, "key": "user_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -5518,7 +5518,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -5527,7 +5527,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -5544,7 +5544,7 @@ }, "response": [ { - "id": "73333970-579d-402f-b316-a9294d289bc3", + "id": "218326fc-3325-4d39-a0a2-6cd92702f848", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5562,7 +5562,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -5571,7 +5571,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -5580,7 +5580,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -5589,7 +5589,7 @@ "type": "text/plain" }, "key": "user_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -5598,7 +5598,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -5607,7 +5607,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -5637,12 +5637,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n ],\n \"_metadata\": {\n \"limit\": \"\",\n \"offset\": \"\",\n \"total\": \"\",\n \"next\": \"\",\n \"previous\": \"\"\n }\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:f4fde585-a860-cd6a-92e0-5d05d6f82a95\",\n \"uid\": \"veniam ipsum pariatur sedculpa p\",\n \"user_id\": \"urn:uuid:0fbc8373-ce6a-27e1-ea7f-376550e5e349\",\n \"role_id\": \"urn:uuid:b7bf8d66-512e-68c6-3f43-fb429376b4e4\"\n },\n {\n \"id\": \"3f28933c-6fbd-a4cf-04dd-25a1d5ce577e\",\n \"uid\": \"in dolore inelit aliquip laboris\",\n \"user_id\": \"3a6e8a92-3abc-13dc-512a-3e0d3ebda980\",\n \"role_id\": \"416fae7c-011c-ea46-8111-4f7ed4349ff8\"\n }\n ],\n \"_metadata\": {\n \"limit\": -11941651,\n \"offset\": 88727193,\n \"total\": -89635602,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "76abb168-f4d7-4da7-ad42-51f690fe51e8", + "id": "1e428ecd-817e-4427-8520-3ce4ff9ca3c8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5660,7 +5660,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -5669,7 +5669,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -5678,7 +5678,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -5687,7 +5687,7 @@ "type": "text/plain" }, "key": "user_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -5696,7 +5696,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -5705,7 +5705,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -5735,12 +5735,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "84e9e180-9660-4bb7-91d9-cf655f514655", + "id": "3a814e7c-a966-4f6a-a19f-e3cb150b86ed", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5758,7 +5758,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -5767,7 +5767,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -5776,7 +5776,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -5785,7 +5785,7 @@ "type": "text/plain" }, "key": "user_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -5794,7 +5794,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -5803,7 +5803,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -5833,7 +5833,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -5844,7 +5844,7 @@ } }, { - "id": "cbe19bc5-9468-49df-a3ea-cebf6e5ec77e", + "id": "c3e9d49c-4eaa-4efc-8763-ecb54439e529", "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\": \"\",\n \"role_id\": \"\"\n },\n {\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:a0192054-bf81-f18c-eba9-a88ddb8e1965\",\n \"role_id\": \"urn:uuid:c37e6cf3-ed90-521a-1147-436a20d92ae9\"\n },\n {\n \"user_id\": \"urn:uuid:ec3dee21-1d64-f8cb-ef9e-c69bfd076111\",\n \"role_id\": \"ae03e0f5-1e41-8b7b-7499-95a89ae341e9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -5887,7 +5887,7 @@ }, "response": [ { - "id": "3c5f3d4c-b403-433d-b720-40435ca2301f", + "id": "15f74d45-e41b-45ac-ae97-028b77459a3a", "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\": \"\",\n \"role_id\": \"\"\n },\n {\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:a0192054-bf81-f18c-eba9-a88ddb8e1965\",\n \"role_id\": \"urn:uuid:c37e6cf3-ed90-521a-1147-436a20d92ae9\"\n },\n {\n \"user_id\": \"urn:uuid:ec3dee21-1d64-f8cb-ef9e-c69bfd076111\",\n \"role_id\": \"ae03e0f5-1e41-8b7b-7499-95a89ae341e9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -5938,12 +5938,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n ]\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"1ae49da7-f9bc-f227-0d91-d15acc6ceaea\",\n \"uid\": \"et culpaex siteuirure commodo in\",\n \"user_id\": \"urn:uuid:50346e74-4c9f-17f5-6900-b11196c53be8\",\n \"role_id\": \"607f573c-1941-1ed5-665b-d758e5ad5d68\"\n },\n {\n \"id\": \"6ab64180-db4c-ba06-0a51-a0c1e82eaeab\",\n \"uid\": \"essequi consequatdolor proident \",\n \"user_id\": \"urn:uuid:5a4b7a45-a700-d742-3313-b956d98f116e\",\n \"role_id\": \"b930895c-9868-0df5-b9f8-a81d934ee323\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26a1d532-910f-4eea-962f-8514876e9688", + "id": "35ad2343-4a7e-4160-b098-15d7f8e0766f", "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\": \"\",\n \"role_id\": \"\"\n },\n {\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:a0192054-bf81-f18c-eba9-a88ddb8e1965\",\n \"role_id\": \"urn:uuid:c37e6cf3-ed90-521a-1147-436a20d92ae9\"\n },\n {\n \"user_id\": \"urn:uuid:ec3dee21-1d64-f8cb-ef9e-c69bfd076111\",\n \"role_id\": \"ae03e0f5-1e41-8b7b-7499-95a89ae341e9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -5994,12 +5994,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7276c51e-8221-4f48-8320-806986ce73bb", + "id": "ce6993c6-6330-48f7-80d6-2eb9228971bd", "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\": \"\",\n \"role_id\": \"\"\n },\n {\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:a0192054-bf81-f18c-eba9-a88ddb8e1965\",\n \"role_id\": \"urn:uuid:c37e6cf3-ed90-521a-1147-436a20d92ae9\"\n },\n {\n \"user_id\": \"urn:uuid:ec3dee21-1d64-f8cb-ef9e-c69bfd076111\",\n \"role_id\": \"ae03e0f5-1e41-8b7b-7499-95a89ae341e9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6050,7 +6050,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -6061,7 +6061,7 @@ } }, { - "id": "c7592526-c2b6-483e-b766-8d69e2cf70ad", + "id": "538f8d86-447a-46d4-a3a3-ab260850450d", "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\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n },\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:8858554a-4afa-317c-e94b-ac5992d0bd76\",\n \"user_id\": \"urn:uuid:85e36495-4666-3932-78b6-4374a4b932de\",\n \"role_id\": \"6e56c364-708c-b617-b0dc-b312aca1dfa9\"\n },\n {\n \"id\": \"urn:uuid:209603da-2cd0-0088-2ff8-4bfcd9d27b9c\",\n \"user_id\": \"09ba922c-eb66-9f01-c063-938582d580d3\",\n \"role_id\": \"urn:uuid:5fee0140-0c12-1210-33fe-35f2f6258377\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6104,7 +6104,7 @@ }, "response": [ { - "id": "507e8d3d-10dd-4ce8-8f44-a43df5e59127", + "id": "784a7ecf-a72f-4ca5-a032-3edd01f8be30", "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\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n },\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:8858554a-4afa-317c-e94b-ac5992d0bd76\",\n \"user_id\": \"urn:uuid:85e36495-4666-3932-78b6-4374a4b932de\",\n \"role_id\": \"6e56c364-708c-b617-b0dc-b312aca1dfa9\"\n },\n {\n \"id\": \"urn:uuid:209603da-2cd0-0088-2ff8-4bfcd9d27b9c\",\n \"user_id\": \"09ba922c-eb66-9f01-c063-938582d580d3\",\n \"role_id\": \"urn:uuid:5fee0140-0c12-1210-33fe-35f2f6258377\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6155,12 +6155,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n ]\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"1ae49da7-f9bc-f227-0d91-d15acc6ceaea\",\n \"uid\": \"et culpaex siteuirure commodo in\",\n \"user_id\": \"urn:uuid:50346e74-4c9f-17f5-6900-b11196c53be8\",\n \"role_id\": \"607f573c-1941-1ed5-665b-d758e5ad5d68\"\n },\n {\n \"id\": \"6ab64180-db4c-ba06-0a51-a0c1e82eaeab\",\n \"uid\": \"essequi consequatdolor proident \",\n \"user_id\": \"urn:uuid:5a4b7a45-a700-d742-3313-b956d98f116e\",\n \"role_id\": \"b930895c-9868-0df5-b9f8-a81d934ee323\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa718d79-ecb3-488f-a156-8e1e357fc2ba", + "id": "b423def4-e82f-45db-940d-9a817ede2e4d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6194,7 +6194,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n },\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:8858554a-4afa-317c-e94b-ac5992d0bd76\",\n \"user_id\": \"urn:uuid:85e36495-4666-3932-78b6-4374a4b932de\",\n \"role_id\": \"6e56c364-708c-b617-b0dc-b312aca1dfa9\"\n },\n {\n \"id\": \"urn:uuid:209603da-2cd0-0088-2ff8-4bfcd9d27b9c\",\n \"user_id\": \"09ba922c-eb66-9f01-c063-938582d580d3\",\n \"role_id\": \"urn:uuid:5fee0140-0c12-1210-33fe-35f2f6258377\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6211,12 +6211,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f51ac2ad-2ee7-41f8-b92d-134076de5403", + "id": "d1fba818-8091-429f-9262-d1d22b74fb19", "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\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n },\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:8858554a-4afa-317c-e94b-ac5992d0bd76\",\n \"user_id\": \"urn:uuid:85e36495-4666-3932-78b6-4374a4b932de\",\n \"role_id\": \"6e56c364-708c-b617-b0dc-b312aca1dfa9\"\n },\n {\n \"id\": \"urn:uuid:209603da-2cd0-0088-2ff8-4bfcd9d27b9c\",\n \"user_id\": \"09ba922c-eb66-9f01-c063-938582d580d3\",\n \"role_id\": \"urn:uuid:5fee0140-0c12-1210-33fe-35f2f6258377\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6267,7 +6267,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -6278,7 +6278,7 @@ } }, { - "id": "d273b895-cf5a-4d3c-a371-f69b7af299c4", + "id": "7665b579-c418-4d9f-9c5e-484b5730ee86", "name": "Find user role pairing by id", "request": { "name": "Find user role pairing by id", @@ -6298,7 +6298,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -6320,7 +6320,7 @@ }, "response": [ { - "id": "739ac402-fc05-455c-b404-1c76b5257dc4", + "id": "93b84018-6788-46e7-b035-44105281f9e3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6359,12 +6359,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:bab16ad6-6b01-62a9-cf10-47ab1517a732\",\n \"uid\": \"commodo ipsum cillumveniam dolor\",\n \"user_id\": \"urn:uuid:8a43b1ec-a287-1c63-81a4-20d8e317aa84\",\n \"role_id\": \"urn:uuid:f0be1dc3-efbe-1df7-88ab-02159b550dc1\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4676d90a-1895-4cb0-992c-c796f398a5af", + "id": "2ccf2034-6330-4e53-acf2-839b3bca37d8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6403,12 +6403,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df52d11b-18cc-4eb8-a6fc-3dc41f9871b6", + "id": "530dc4a2-8597-4ab7-9c1e-3945d68159cd", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6447,7 +6447,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -6458,7 +6458,7 @@ } }, { - "id": "a784dc73-1795-49f6-b85e-f272872ee0a2", + "id": "6d4cbe05-08b0-45f8-97fc-a1911a2bfd83", "name": "Update a user role pairing by id", "request": { "name": "Update a user role pairing by id", @@ -6478,7 +6478,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -6501,7 +6501,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:5916aaa5-338d-8ff4-0306-bd486a8cb148\",\n \"role_id\": \"5510da74-6762-6ffa-f44a-34c73c0055e0\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6513,7 +6513,7 @@ }, "response": [ { - "id": "7b1ab6c1-b1ee-43b6-ba1a-9ede4b68b856", + "id": "07060994-9150-4e6f-9d2f-758f6f110be7", "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\": \"\",\n \"role_id\": \"\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:5916aaa5-338d-8ff4-0306-bd486a8cb148\",\n \"role_id\": \"5510da74-6762-6ffa-f44a-34c73c0055e0\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6565,12 +6565,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:bab16ad6-6b01-62a9-cf10-47ab1517a732\",\n \"uid\": \"commodo ipsum cillumveniam dolor\",\n \"user_id\": \"urn:uuid:8a43b1ec-a287-1c63-81a4-20d8e317aa84\",\n \"role_id\": \"urn:uuid:f0be1dc3-efbe-1df7-88ab-02159b550dc1\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e17f42e-86a8-428f-bf44-10ea3cf70a1f", + "id": "614c87d5-ebaf-4301-8b03-518aee1ab3fa", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6605,7 +6605,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"\",\n \"role_id\": \"\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:5916aaa5-338d-8ff4-0306-bd486a8cb148\",\n \"role_id\": \"5510da74-6762-6ffa-f44a-34c73c0055e0\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6622,12 +6622,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ce4e7e09-0a85-42f2-882b-45c21fc8ce76", + "id": "048e54ad-a541-4ed2-9e2e-976996d30f35", "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\": \"\",\n \"role_id\": \"\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:5916aaa5-338d-8ff4-0306-bd486a8cb148\",\n \"role_id\": \"5510da74-6762-6ffa-f44a-34c73c0055e0\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6679,7 +6679,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -6690,7 +6690,7 @@ } }, { - "id": "8752ce44-97b4-4d6b-8e4f-1b052e34cd32", + "id": "c075a13f-ff2a-4a11-a220-ae51d3b598b8", "name": "Delete a user role assignment", "request": { "name": "Delete a user role assignment", @@ -6710,7 +6710,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -6732,7 +6732,7 @@ }, "response": [ { - "id": "5eaa07a6-525d-460a-b75b-29e5842f8345", + "id": "adf083c4-718c-4e94-8e0b-861e72793372", "name": "User role was destroyed", "originalRequest": { "url": { @@ -6776,7 +6776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecad3e60-6f5e-4ee1-bdcc-e09e359467f1", + "id": "423d8479-44b1-49d3-b2ea-e10fed343f7a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6815,12 +6815,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "94b52f5e-a92d-4e2c-ad0b-1adb92350e24", + "id": "1765106e-ac28-4aa7-ac28-f21069b94e89", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6859,7 +6859,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -6876,7 +6876,7 @@ "description": "", "item": [ { - "id": "0bd25f46-d222-4290-9c9c-163f7380fdd2", + "id": "846c6e45-a69f-4d75-a29e-fcf5190c30eb", "name": "Get attribute data in bulk", "request": { "name": "Get attribute data in bulk", @@ -6899,7 +6899,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -6908,7 +6908,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -6917,7 +6917,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -6926,7 +6926,7 @@ "type": "text/plain" }, "key": "label", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -6935,7 +6935,7 @@ "type": "text/plain" }, "key": "data_type", - "value": "owner select" + "value": "date" }, { "disabled": false, @@ -6944,7 +6944,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -6961,7 +6961,7 @@ }, "response": [ { - "id": "63b35e49-b093-40bd-92bd-eebc240d72e0", + "id": "f189a9cb-5e15-412e-8c46-03d094653d1e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6979,7 +6979,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -6988,7 +6988,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -6997,7 +6997,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -7006,7 +7006,7 @@ "type": "text/plain" }, "key": "label", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -7015,7 +7015,7 @@ "type": "text/plain" }, "key": "data_type", - "value": "owner select" + "value": "date" }, { "disabled": false, @@ -7024,7 +7024,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -7054,12 +7054,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"label\": \"\",\n \"description\": \"\",\n \"tool_tip\": \"\",\n \"crypt\": \"\",\n \"archived\": \"\",\n \"archived_on\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"date_format\": \"yyyy/mm/dd\",\n \"selectable_status\": \"\",\n \"risk_score_setting\": \"\",\n \"risk_type\": \"\",\n \"ownership_driver\": \"\",\n \"allow_multiple_selections\": \"\",\n \"filtered_by_ne_attribute\": \"\",\n \"filtering_ne_attribute_id\": \"\",\n \"ne_attribute_filter_id\": \"\",\n \"reverse_association_attribute_id\": \"\",\n \"profile_type_id\": \"\",\n \"legacy_id\": \"\",\n \"tmp_created_at\": \"\",\n \"tmp_updated_at\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"label\": \"\",\n \"description\": \"\",\n \"tool_tip\": \"\",\n \"crypt\": \"\",\n \"archived\": \"\",\n \"archived_on\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"date_format\": \"yyyy/mm/dd\",\n \"selectable_status\": \"\",\n \"risk_score_setting\": \"\",\n \"risk_type\": \"\",\n \"ownership_driver\": \"\",\n \"allow_multiple_selections\": \"\",\n \"filtered_by_ne_attribute\": \"\",\n \"filtering_ne_attribute_id\": \"\",\n \"ne_attribute_filter_id\": \"\",\n \"reverse_association_attribute_id\": \"\",\n \"profile_type_id\": \"\",\n \"legacy_id\": \"\",\n \"tmp_created_at\": \"\",\n \"tmp_updated_at\": \"\"\n }\n ],\n \"_metadata\": {\n \"limit\": \"\",\n \"offset\": \"\",\n \"total\": \"\",\n \"next\": \"\",\n \"previous\": \"\"\n }\n}", + "body": "{\n \"ne_attributes\": [\n {\n \"id\": \"urn:uuid:3e248967-510c-a65d-dd25-545a5e642efb\",\n \"uid\": \"aute dolor nisi Excepteur Duisve\",\n \"label\": \"in\",\n \"description\": \"enim magna in esse\",\n \"tool_tip\": \"anim adipisicing\",\n \"crypt\": false,\n \"archived\": true,\n \"archived_on\": \"1952-03-23T12:52:30.899Z\",\n \"created_at\": \"1990-09-03T23:29:45.785Z\",\n \"updated_at\": \"1952-07-21T16:45:23.999Z\",\n \"date_format\": \"dd/mm/yyyy\",\n \"selectable_status\": \"qui nulla\",\n \"risk_score_setting\": \"non ad et amet Ut\",\n \"risk_type\": \"voluptate sint deserunt\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": false,\n \"filtering_ne_attribute_id\": \"d69977a4-7003-dfac-fd6f-aa2b7d7ede2b\",\n \"ne_attribute_filter_id\": \"d8d8389e-0bf8-fba0-9e75-5ba55ced62bf\",\n \"reverse_association_attribute_id\": \"urn:uuid:9480d424-1ca8-4ffd-e7d2-7c43c0f5ff6f\",\n \"profile_type_id\": \"urn:uuid:205d2eaf-b00c-d6b2-9575-225b0f77c274\",\n \"legacy_id\": -70688402,\n \"tmp_created_at\": \"2011-10-08T00:28:42.473Z\",\n \"tmp_updated_at\": \"1946-11-14T02:05:33.040Z\"\n },\n {\n \"id\": \"urn:uuid:37938782-a75c-7600-a066-7483008882db\",\n \"uid\": \"seddolore elit idconsectetur Exc\",\n \"label\": \"in velit quis\",\n \"description\": \"adipisicing et\",\n \"tool_tip\": \"deserunt est\",\n \"crypt\": true,\n \"archived\": false,\n \"archived_on\": \"2009-05-23T09:23:30.844Z\",\n \"created_at\": \"1982-09-24T15:44:35.617Z\",\n \"updated_at\": \"2021-11-28T17:07:48.177Z\",\n \"date_format\": \"yyyy/mm/dd\",\n \"selectable_status\": \"elit enim\",\n \"risk_score_setting\": \"qui\",\n \"risk_type\": \"in eu in dolore\",\n \"ownership_driver\": false,\n \"allow_multiple_selections\": false,\n \"filtered_by_ne_attribute\": false,\n \"filtering_ne_attribute_id\": \"urn:uuid:8bbf227e-721d-a0e3-efa8-fef9cea99a8a\",\n \"ne_attribute_filter_id\": \"6231ab58-bf1d-cae0-d3ea-fc3167fb57e3\",\n \"reverse_association_attribute_id\": \"e478b241-6723-948b-dea6-e9a2aa34bba6\",\n \"profile_type_id\": \"674a1b41-d05f-096b-9699-79bdaf3a2c4b\",\n \"legacy_id\": 33083241,\n \"tmp_created_at\": \"1973-07-01T10:25:38.666Z\",\n \"tmp_updated_at\": \"1978-04-19T16:13:19.144Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": 44810843,\n \"offset\": 6885838,\n \"total\": -59344888,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ee294654-b08f-4b69-9cca-527605bffd4b", + "id": "5217abd5-4371-4f47-9f54-013302b8b592", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7077,7 +7077,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -7086,7 +7086,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -7095,7 +7095,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -7104,7 +7104,7 @@ "type": "text/plain" }, "key": "label", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -7113,7 +7113,7 @@ "type": "text/plain" }, "key": "data_type", - "value": "owner select" + "value": "date" }, { "disabled": false, @@ -7122,7 +7122,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -7152,12 +7152,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04abf229-9a2e-4578-b7c6-476d5b418160", + "id": "d671fd02-2d3f-4739-859d-ee4047dfb958", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7175,7 +7175,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -7184,7 +7184,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -7193,7 +7193,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -7202,7 +7202,7 @@ "type": "text/plain" }, "key": "label", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -7211,7 +7211,7 @@ "type": "text/plain" }, "key": "data_type", - "value": "owner select" + "value": "date" }, { "disabled": false, @@ -7220,7 +7220,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -7250,7 +7250,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -7261,7 +7261,7 @@ } }, { - "id": "4434d36a-70dc-4433-9c77-2516a504a538", + "id": "bbaeada8-db00-470b-8f63-0e6e9c651ac4", "name": "Find attribute data by id", "request": { "name": "Find attribute data by id", @@ -7281,7 +7281,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -7303,7 +7303,7 @@ }, "response": [ { - "id": "9399147f-a096-4701-a5ae-98a51b5eed98", + "id": "75cd3ce6-e85a-4a6e-bbee-b8b1d1560d50", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7342,12 +7342,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"label\": \"\",\n \"description\": \"\",\n \"tool_tip\": \"\",\n \"crypt\": \"\",\n \"archived\": \"\",\n \"archived_on\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"\",\n \"risk_score_setting\": \"\",\n \"risk_type\": \"\",\n \"ownership_driver\": \"\",\n \"allow_multiple_selections\": \"\",\n \"filtered_by_ne_attribute\": \"\",\n \"filtering_ne_attribute_id\": \"\",\n \"ne_attribute_filter_id\": \"\",\n \"reverse_association_attribute_id\": \"\",\n \"profile_type_id\": \"\",\n \"legacy_id\": \"\",\n \"tmp_created_at\": \"\",\n \"tmp_updated_at\": \"\"\n }\n}", + "body": "{\n \"ne_attribute\": {\n \"id\": \"urn:uuid:f3373a64-216d-38de-4379-d3450b73f61e\",\n \"uid\": \"proident in magna culpain ea non\",\n \"label\": \"sit voluptate\",\n \"description\": \"nostrud enim do temp\",\n \"tool_tip\": \"occaecat dolore\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1948-02-26T13:16:32.053Z\",\n \"created_at\": \"2008-05-08T20:04:46.960Z\",\n \"updated_at\": \"2022-12-11T01:16:21.450Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"ea in do magna aliqua\",\n \"risk_score_setting\": \"do ea et reprehenderit\",\n \"risk_type\": \"irure aliqua sed\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": false,\n \"filtered_by_ne_attribute\": false,\n \"filtering_ne_attribute_id\": \"urn:uuid:c3c6fe11-9b6f-32a1-4591-82494f6bfbf0\",\n \"ne_attribute_filter_id\": \"88f54f34-b1b8-96d5-b120-36ff4d17db60\",\n \"reverse_association_attribute_id\": \"c9ddf2e1-6cf1-810e-9235-c3668e798148\",\n \"profile_type_id\": \"urn:uuid:ca1c2d25-9eb1-b132-b1be-1362caa940f8\",\n \"legacy_id\": -42331584,\n \"tmp_created_at\": \"1964-05-15T14:03:39.373Z\",\n \"tmp_updated_at\": \"1984-10-04T00:30:55.983Z\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4ff211cd-c6dd-49c9-8a2a-a89ffab6d903", + "id": "b1fa6b74-f815-4544-b0d2-ec2c8f776eb1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7386,12 +7386,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "00da5ba9-fdaf-4c50-8443-76ab65c27f7c", + "id": "ad86b874-ca1f-424c-9c3b-9bb7be203c03", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7430,7 +7430,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -7447,7 +7447,7 @@ "description": "", "item": [ { - "id": "a009e472-4cff-46ad-a8c9-b5272cff329e", + "id": "7799c2af-be37-49ba-b20c-82a26cffe606", "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\": \"\",\n \"option\": \"\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:14e0d1c2-6f00-6ec8-1a63-b9328ebc0477\",\n \"option\": \"enim\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7490,7 +7490,7 @@ }, "response": [ { - "id": "c009938a-bfb0-43a3-bec6-be3bbcfaf809", + "id": "e401b003-6ef6-4c24-86b9-9bc65cdf93a4", "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\": \"\",\n \"option\": \"\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:14e0d1c2-6f00-6ec8-1a63-b9328ebc0477\",\n \"option\": \"enim\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7541,12 +7541,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:f890536f-a1af-b117-c5da-1ae9abb9e8ba\",\n \"uid\": \"in quiexex tempor eiusmod inin a\",\n \"ne_attribute_id\": \"c4399adf-7435-c9d6-9890-36246b558bde\",\n \"option\": \"Ut occaecat\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "518cb525-5aca-4fb2-8436-907a75c96be6", + "id": "d169674e-dac0-48f7-b211-3e09a8dcbcc0", "name": "Invalid input", "originalRequest": { "url": { @@ -7576,7 +7576,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:14e0d1c2-6f00-6ec8-1a63-b9328ebc0477\",\n \"option\": \"enim\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7598,7 +7598,7 @@ } }, { - "id": "8367f162-9e35-4fa8-8ccd-674b42d65b05", + "id": "359e7707-4ee3-45d1-8b00-d88e63e27f20", "name": "Get option based attribute values", "request": { "name": "Get option based attribute values", @@ -7621,7 +7621,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -7630,7 +7630,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -7639,7 +7639,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -7648,7 +7648,7 @@ "type": "text/plain" }, "key": "ne_attribute_id", - "value": "" + "value": "33f072dd-13b4-41e1-8ea0-16f2a59b57c8" }, { "disabled": false, @@ -7657,7 +7657,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -7674,7 +7674,7 @@ }, "response": [ { - "id": "13399dcc-6b62-448f-82aa-d00086fe0e5f", + "id": "3e113c47-9d14-484b-8e87-e3f43529eae2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7692,7 +7692,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -7701,7 +7701,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -7710,7 +7710,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -7719,7 +7719,7 @@ "type": "text/plain" }, "key": "ne_attribute_id", - "value": "" + "value": "33f072dd-13b4-41e1-8ea0-16f2a59b57c8" }, { "disabled": false, @@ -7728,7 +7728,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -7758,12 +7758,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n ],\n \"_metadata\": {\n \"limit\": \"\",\n \"offset\": \"\",\n \"total\": \"\",\n \"next\": \"\",\n \"previous\": \"\"\n }\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"c6f791b4-415c-934b-bbc6-77ab8803beb3\",\n \"uid\": \"labore deserunt aliqua et doDuis\",\n \"ne_attribute_id\": \"urn:uuid:33688b3a-3c65-821e-1bed-ba66ad97f591\",\n \"option\": \"aliqua dolore Lorem adipisicing est\"\n },\n {\n \"id\": \"urn:uuid:9309ecc9-07c2-a5e8-3991-9396361f1dfe\",\n \"uid\": \"ea officiaeiusmod ex ullamconull\",\n \"ne_attribute_id\": \"urn:uuid:7e6d3e8f-fdde-b369-11d4-69018d565d1b\",\n \"option\": \"nostrud\"\n }\n ],\n \"_metadata\": {\n \"limit\": -66553439,\n \"offset\": -65497786,\n \"total\": -36009425,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "18c85cf1-5209-4f5e-bef7-ab9fc7157377", + "id": "07b0575f-1ff4-42dd-8e30-0e41967e6c13", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7781,7 +7781,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -7790,7 +7790,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -7799,7 +7799,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -7808,7 +7808,7 @@ "type": "text/plain" }, "key": "ne_attribute_id", - "value": "" + "value": "33f072dd-13b4-41e1-8ea0-16f2a59b57c8" }, { "disabled": false, @@ -7817,7 +7817,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -7847,12 +7847,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f67768a9-cfc9-43b3-bb21-1bb46c885a07", + "id": "050815bf-dfe7-4b19-9cf8-c12d8bb5f28a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7870,7 +7870,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -7879,7 +7879,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -7888,7 +7888,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -7897,7 +7897,7 @@ "type": "text/plain" }, "key": "ne_attribute_id", - "value": "" + "value": "33f072dd-13b4-41e1-8ea0-16f2a59b57c8" }, { "disabled": false, @@ -7906,7 +7906,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -7936,7 +7936,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -7947,7 +7947,7 @@ } }, { - "id": "8991f09f-2dd8-49a6-ada0-bc17c6cc465d", + "id": "5f264073-5581-49a5-9e04-ad9257ff0f38", "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\": \"\",\n \"option\": \"\"\n },\n {\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"urn:uuid:44f5ed8b-7959-3fac-70b6-d85bd0ed3344\",\n \"option\": \"aliquip\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:ddf86309-98dc-a58b-e102-b9686703edca\",\n \"option\": \"id veniam in pariatur\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -7990,7 +7990,7 @@ }, "response": [ { - "id": "fb990593-518c-4019-aa00-2dea9d43cb03", + "id": "abf96b15-b4c5-4125-8f66-a0b85d035a3e", "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\": \"\",\n \"option\": \"\"\n },\n {\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"urn:uuid:44f5ed8b-7959-3fac-70b6-d85bd0ed3344\",\n \"option\": \"aliquip\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:ddf86309-98dc-a58b-e102-b9686703edca\",\n \"option\": \"id veniam in pariatur\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8041,12 +8041,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n ]\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:13652d8c-06d1-b57a-cb12-9a78af9e969f\",\n \"uid\": \"deserunt Excepteuramet veniam de\",\n \"ne_attribute_id\": \"8439e5c5-5046-0296-114e-44945f660d28\",\n \"option\": \"elit eiusmod incididunt eu\"\n },\n {\n \"id\": \"urn:uuid:99c0a4de-5cd4-4747-16e5-0705d2a36dfb\",\n \"uid\": \"ex consectetur fugiat magna amet\",\n \"ne_attribute_id\": \"urn:uuid:e56a5cb8-35eb-2709-11f1-1e8740b497f2\",\n \"option\": \"irure labore\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "01d51b60-1eee-418d-aadf-c2f7fd115ebf", + "id": "c43df20a-de02-4d9e-9c59-75ae2540d382", "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\": \"\",\n \"option\": \"\"\n },\n {\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"urn:uuid:44f5ed8b-7959-3fac-70b6-d85bd0ed3344\",\n \"option\": \"aliquip\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:ddf86309-98dc-a58b-e102-b9686703edca\",\n \"option\": \"id veniam in pariatur\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8097,12 +8097,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "37fad7f3-c8d1-4d9e-90f3-a167e8136229", + "id": "0f458d17-a0bc-4ce8-80c0-474032de4101", "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\": \"\",\n \"option\": \"\"\n },\n {\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"urn:uuid:44f5ed8b-7959-3fac-70b6-d85bd0ed3344\",\n \"option\": \"aliquip\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:ddf86309-98dc-a58b-e102-b9686703edca\",\n \"option\": \"id veniam in pariatur\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8153,7 +8153,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -8164,7 +8164,7 @@ } }, { - "id": "deeb0798-fadc-4d64-b20e-5e2d53db6751", + "id": "83a45abf-b1fe-4cc1-9f6e-9af6bdeb75af", "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\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n },\n {\n \"id\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:93605321-b981-5efd-4d03-9ac8af17f506\",\n \"ne_attribute_id\": \"3cb43f0c-212f-69b1-c18f-83b20fa9de90\",\n \"option\": \"reprehend\"\n },\n {\n \"id\": \"fbe27a7f-dbaa-88e6-e328-21fb00709692\",\n \"ne_attribute_id\": \"urn:uuid:8daf6aaa-4fe4-9777-2bcb-c445f573fd23\",\n \"option\": \"nostrud\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8207,7 +8207,7 @@ }, "response": [ { - "id": "c3151c33-0cad-40a9-9470-ed81c4f67a4e", + "id": "b27f255a-a7b2-4da4-87c6-d7486320d6ce", "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\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n },\n {\n \"id\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:93605321-b981-5efd-4d03-9ac8af17f506\",\n \"ne_attribute_id\": \"3cb43f0c-212f-69b1-c18f-83b20fa9de90\",\n \"option\": \"reprehend\"\n },\n {\n \"id\": \"fbe27a7f-dbaa-88e6-e328-21fb00709692\",\n \"ne_attribute_id\": \"urn:uuid:8daf6aaa-4fe4-9777-2bcb-c445f573fd23\",\n \"option\": \"nostrud\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8258,12 +8258,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n ]\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:13652d8c-06d1-b57a-cb12-9a78af9e969f\",\n \"uid\": \"deserunt Excepteuramet veniam de\",\n \"ne_attribute_id\": \"8439e5c5-5046-0296-114e-44945f660d28\",\n \"option\": \"elit eiusmod incididunt eu\"\n },\n {\n \"id\": \"urn:uuid:99c0a4de-5cd4-4747-16e5-0705d2a36dfb\",\n \"uid\": \"ex consectetur fugiat magna amet\",\n \"ne_attribute_id\": \"urn:uuid:e56a5cb8-35eb-2709-11f1-1e8740b497f2\",\n \"option\": \"irure labore\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "797f687b-d6c0-435a-933e-5a9daa2085ec", + "id": "0049efb9-cc5e-4918-a977-01b2fbd585e8", "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\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n },\n {\n \"id\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:93605321-b981-5efd-4d03-9ac8af17f506\",\n \"ne_attribute_id\": \"3cb43f0c-212f-69b1-c18f-83b20fa9de90\",\n \"option\": \"reprehend\"\n },\n {\n \"id\": \"fbe27a7f-dbaa-88e6-e328-21fb00709692\",\n \"ne_attribute_id\": \"urn:uuid:8daf6aaa-4fe4-9777-2bcb-c445f573fd23\",\n \"option\": \"nostrud\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8314,12 +8314,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "58e27d61-cf20-42ba-8aea-790c1209768f", + "id": "0d93ad0d-4f14-4526-aed7-0f5cb4a72d32", "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\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n },\n {\n \"id\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:93605321-b981-5efd-4d03-9ac8af17f506\",\n \"ne_attribute_id\": \"3cb43f0c-212f-69b1-c18f-83b20fa9de90\",\n \"option\": \"reprehend\"\n },\n {\n \"id\": \"fbe27a7f-dbaa-88e6-e328-21fb00709692\",\n \"ne_attribute_id\": \"urn:uuid:8daf6aaa-4fe4-9777-2bcb-c445f573fd23\",\n \"option\": \"nostrud\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8370,7 +8370,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -8381,7 +8381,7 @@ } }, { - "id": "982e366b-ea92-4c0f-93a7-d43460bd34b6", + "id": "a8618f47-b9fa-413a-b48f-fd2746fd8704", "name": "Find option based attribute value by id", "request": { "name": "Find option based attribute value by id", @@ -8401,7 +8401,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -8423,7 +8423,7 @@ }, "response": [ { - "id": "070ce6f5-36c3-44b5-9ae8-97c3ad938a62", + "id": "bd1c3866-06ec-4100-bd22-1f7d49d6d464", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8462,12 +8462,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:f890536f-a1af-b117-c5da-1ae9abb9e8ba\",\n \"uid\": \"in quiexex tempor eiusmod inin a\",\n \"ne_attribute_id\": \"c4399adf-7435-c9d6-9890-36246b558bde\",\n \"option\": \"Ut occaecat\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9eaa4df0-8bda-44d4-a41d-28018146cea0", + "id": "43f0d235-9d5b-4c6e-9620-6d935f85d884", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8506,12 +8506,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1b09f34a-d8b3-4879-a789-a3f7f4b55dd9", + "id": "29895c1a-5359-46fb-9b54-90b036a0372e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8550,7 +8550,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -8561,7 +8561,7 @@ } }, { - "id": "9c73ec7e-b59f-448d-b98b-0dd9e1faa307", + "id": "dd7e0e36-b11c-4f4c-900e-2393dd142e48", "name": "Update a option based attribute value by id", "request": { "name": "Update a option based attribute value by id", @@ -8581,7 +8581,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -8604,7 +8604,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:14e0d1c2-6f00-6ec8-1a63-b9328ebc0477\",\n \"option\": \"enim\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8616,7 +8616,7 @@ }, "response": [ { - "id": "c3fdb2b6-b3b9-4ff2-9483-1addf4285a35", + "id": "11cde36a-9047-46f4-9b3a-783e692f8d64", "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\": \"\",\n \"option\": \"\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:14e0d1c2-6f00-6ec8-1a63-b9328ebc0477\",\n \"option\": \"enim\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8668,12 +8668,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"ne_attribute_id\": \"\",\n \"option\": \"\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:f890536f-a1af-b117-c5da-1ae9abb9e8ba\",\n \"uid\": \"in quiexex tempor eiusmod inin a\",\n \"ne_attribute_id\": \"c4399adf-7435-c9d6-9890-36246b558bde\",\n \"option\": \"Ut occaecat\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "642afd29-ff5a-4d95-9cb9-d34263ecd188", + "id": "bac3de10-3c94-4c07-8059-f4956d06a2fa", "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\": \"\",\n \"option\": \"\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:14e0d1c2-6f00-6ec8-1a63-b9328ebc0477\",\n \"option\": \"enim\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8725,12 +8725,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ba3ef5e-b8e5-42f1-b4ef-3965521d5fe3", + "id": "80752a9b-0fc1-423c-ac0d-eb41ff15f025", "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\": \"\",\n \"option\": \"\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:14e0d1c2-6f00-6ec8-1a63-b9328ebc0477\",\n \"option\": \"enim\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8782,7 +8782,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -8793,7 +8793,7 @@ } }, { - "id": "7fea03ff-6734-4433-a6e2-50e044c60fe0", + "id": "30c36849-fb9a-4b19-bde6-891551c82a14", "name": "Delete a option based attribute value by id", "request": { "name": "Delete a option based attribute value by id", @@ -8813,7 +8813,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -8835,7 +8835,7 @@ }, "response": [ { - "id": "0fcf605a-2325-4372-ba13-b7e50fd20ae8", + "id": "2f36dfb2-79df-4d1b-9097-6a51980b9dea", "name": "Confirmation of a deleted object", "originalRequest": { "url": { @@ -8879,7 +8879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34bd1cf8-4a93-4868-a43b-c37f1d4e86e9", + "id": "32223371-1f4f-4538-bbf4-67b5742fb09c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8918,12 +8918,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87d7bc1d-8c21-468f-82e0-11989d3d59af", + "id": "d7893bed-3d33-4cc1-a6c9-131d5401a5ca", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8962,7 +8962,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -8979,7 +8979,7 @@ "description": "", "item": [ { - "id": "d862f7fa-9b20-401b-b01c-09ae63f76318", + "id": "4f224e7b-1cf2-40b6-9105-36359ecb0fc4", "name": "Create a profile page", "request": { "name": "Create a profile page", @@ -9011,7 +9011,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"page\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\"\n }\n}", + "raw": "{\n \"page\": {\n \"uid\": \"page_uid\",\n \"description\": \"Page for workflow\",\n \"name\": \"My Page Name\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9023,7 +9023,7 @@ }, "response": [ { - "id": "85a1ed5a-c104-4a95-8dc2-2c7de3724adf", + "id": "2f72a198-33ad-460a-aa36-3c897c34528a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9058,7 +9058,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"page\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\"\n }\n}", + "raw": "{\n \"page\": {\n \"uid\": \"page_uid\",\n \"description\": \"Page for workflow\",\n \"name\": \"My Page Name\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9075,12 +9075,12 @@ "value": "application/json" } ], - "body": "{\n \"page\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\",\n \"id\": \"\"\n }\n}", + "body": "{\n \"page\": {\n \"uid\": \"page_uid\",\n \"description\": \"Page for workflow\",\n \"name\": \"My Page Name\",\n \"archived\": false,\n \"id\": \"2e06b876-f456-473d-bd65-b6435e0b6b2d\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d263715f-61b3-48ca-a013-cecff74fc55d", + "id": "78ba77b8-666e-45a9-9424-630cc31dce9e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9115,7 +9115,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"page\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\"\n }\n}", + "raw": "{\n \"page\": {\n \"uid\": \"page_uid\",\n \"description\": \"Page for workflow\",\n \"name\": \"My Page Name\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9132,12 +9132,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "131eff7c-7850-445f-b015-67f7dd129b5c", + "id": "6f115434-f514-4fa3-8978-ab110f14e4f7", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9172,7 +9172,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"page\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\"\n }\n}", + "raw": "{\n \"page\": {\n \"uid\": \"page_uid\",\n \"description\": \"Page for workflow\",\n \"name\": \"My Page Name\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9189,7 +9189,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -9200,7 +9200,7 @@ } }, { - "id": "d14ae130-0084-4d29-a347-b0d4dd691f2a", + "id": "4bc0f5e1-0b3f-4b5d-a63c-22c5b0e5a45b", "name": "Create a workflow page", "request": { "name": "Create a workflow page", @@ -9232,7 +9232,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"page\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\",\n \"id\": \"\"\n }\n}", + "raw": "{\n \"page\": {\n \"uid\": \"page_uid\",\n \"description\": \"Page for workflow\",\n \"name\": \"My Page Name\",\n \"archived\": false,\n \"id\": \"2e06b876-f456-473d-bd65-b6435e0b6b2d\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9244,7 +9244,7 @@ }, "response": [ { - "id": "c5a124e0-2b17-4fb7-bff2-8590dd35c601", + "id": "1078b581-f645-4a4b-a233-540ea47f7911", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9279,7 +9279,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"page\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\",\n \"id\": \"\"\n }\n}", + "raw": "{\n \"page\": {\n \"uid\": \"page_uid\",\n \"description\": \"Page for workflow\",\n \"name\": \"My Page Name\",\n \"archived\": false,\n \"id\": \"2e06b876-f456-473d-bd65-b6435e0b6b2d\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9296,12 +9296,12 @@ "value": "application/json" } ], - "body": "{\n \"page\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\",\n \"id\": \"\"\n }\n}", + "body": "{\n \"page\": {\n \"uid\": \"page_uid\",\n \"description\": \"Page for workflow\",\n \"name\": \"My Page Name\",\n \"archived\": false,\n \"id\": \"2e06b876-f456-473d-bd65-b6435e0b6b2d\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "49ab0568-5569-48fd-9433-8b9445a74896", + "id": "f0738bbb-e051-4cb1-b7dc-56e0751cc2ee", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9336,7 +9336,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"page\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\",\n \"id\": \"\"\n }\n}", + "raw": "{\n \"page\": {\n \"uid\": \"page_uid\",\n \"description\": \"Page for workflow\",\n \"name\": \"My Page Name\",\n \"archived\": false,\n \"id\": \"2e06b876-f456-473d-bd65-b6435e0b6b2d\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9353,12 +9353,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d1bd4604-0cd5-4814-8aaa-50979d641630", + "id": "d345c442-6e12-46de-9152-15438c9d9812", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9393,7 +9393,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"page\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\",\n \"id\": \"\"\n }\n}", + "raw": "{\n \"page\": {\n \"uid\": \"page_uid\",\n \"description\": \"Page for workflow\",\n \"name\": \"My Page Name\",\n \"archived\": false,\n \"id\": \"2e06b876-f456-473d-bd65-b6435e0b6b2d\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9410,7 +9410,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -9427,7 +9427,7 @@ "description": "", "item": [ { - "id": "cf6c9344-bac6-4a8d-b233-b8425fa7f747", + "id": "721a0a57-ee99-494a-9c58-f0315d0e98c0", "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\": \"\",\n \"category\": \"non-employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"\",\n \"\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\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\": \"inlaboris enimminim dolor 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\": \"aliqua quis laboris aute inid do\",\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\": \"Loremminimesse magna irure Duis \",\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 incididuntquis ipsum iru\",\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": "fec5009c-5955-4c3c-9400-b781af58103f", + "id": "4d67c087-0a87-4537-8355-e46780873bd8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9504,7 +9504,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"\",\n \"category\": \"non-employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"\",\n \"\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\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\": \"inlaboris enimminim dolor 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\": \"aliqua quis laboris aute inid do\",\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\": \"Loremminimesse magna irure Duis \",\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 incididuntquis ipsum iru\",\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\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"category\": \"organization\",\n \"bypass_dup_protection\": \"\",\n \"archived\": \"\",\n \"permitted_role_ids\": [\n \"\",\n \"\"\n ],\n \"isc_synced\": \"\",\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n }\n ]\n }\n}", + "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sit Lorem occaecat doproident se\",\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 magna proident mollitsite\",\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 enim occaecatvelit irure\",\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\": \"occaecatdolor incididunt culpa e\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut exercitation occaecatinet sin\",\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": "40c6b0b9-8bff-48ad-a8d3-b90561e0a450", + "id": "1f80ddeb-d9a6-4387-83dc-e753e901e9b8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9560,7 +9560,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"\",\n \"category\": \"non-employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"\",\n \"\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\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\": \"inlaboris enimminim dolor 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\": \"aliqua quis laboris aute inid do\",\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\": \"Loremminimesse magna irure Duis \",\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 incididuntquis ipsum iru\",\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", @@ -9577,12 +9577,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "43de4bcf-ec9a-429e-83d0-68bb90e9b922", + "id": "89feb2dc-ed00-453b-8e8a-178ac6c60af9", "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\": \"\",\n \"category\": \"non-employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"\",\n \"\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\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\": \"inlaboris enimminim dolor 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\": \"aliqua quis laboris aute inid do\",\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\": \"Loremminimesse magna irure Duis \",\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 incididuntquis ipsum iru\",\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", @@ -9633,7 +9633,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -9644,7 +9644,7 @@ } }, { - "id": "406cb536-b433-4e98-94de-76a597f171a5", + "id": "8846d4ba-e517-47f7-bd5d-82f4c82ad06d", "name": "Get profile types", "request": { "name": "Get profile types", @@ -9667,7 +9667,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -9676,7 +9676,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -9685,7 +9685,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -9694,7 +9694,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -9712,7 +9712,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -9729,7 +9729,7 @@ }, "response": [ { - "id": "f5a2ef52-8f6a-45a4-bcf5-5981628279ca", + "id": "1f289a6d-8b92-4517-b227-c0b7eecb33f9", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9747,7 +9747,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -9756,7 +9756,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -9765,7 +9765,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -9774,7 +9774,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -9792,7 +9792,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -9822,12 +9822,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_types\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"category\": \"organization\",\n \"bypass_dup_protection\": \"\",\n \"archived\": \"\",\n \"permitted_role_ids\": [\n \"\",\n \"\"\n ],\n \"isc_synced\": \"\",\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"category\": \"non-employee\",\n \"bypass_dup_protection\": \"\",\n \"archived\": \"\",\n \"permitted_role_ids\": [\n \"\",\n \"\"\n ],\n \"isc_synced\": \"\",\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n }\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": \"\",\n \"offset\": \"\",\n \"total\": \"\",\n \"next\": \"\",\n \"previous\": \"\"\n }\n}", + "body": "{\n \"profile_types\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolore aliquip consectetur eu ul\",\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\": \"deserunt amet officiasunt ut con\",\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\": \"adipisicing nisi dolore sunt mag\",\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\": \"aliqua proident Duisut in non ni\",\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\": \"cupidatat ut qui reprehenderit 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 },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in labore officia laborumeu veli\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sed eadolore ipsum etveniamLorem\",\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\": \"pariatur doloreLorem reprehender\",\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\": \"proident adsint tempor estadanim\",\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\": \"sitiddo pariatur fugiat sit dolo\",\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\": -78489866,\n \"offset\": 57356330,\n \"total\": -46316564,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ddc48b53-c521-494f-ade7-d789afced0ed", + "id": "4c6fa1d6-3b55-4107-8fdd-860bda0c0871", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9845,7 +9845,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -9854,7 +9854,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -9863,7 +9863,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -9872,7 +9872,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -9890,7 +9890,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -9920,12 +9920,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ab5053d-ef07-4703-890b-1e64714ffe19", + "id": "ddd372c0-5169-427f-9442-3cfad681d9d6", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9943,7 +9943,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -9952,7 +9952,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -9961,7 +9961,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -9970,7 +9970,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -9988,7 +9988,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -10018,7 +10018,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -10029,7 +10029,7 @@ } }, { - "id": "f48a3725-3989-4b1d-9c37-5affc372d8e9", + "id": "d221d1f6-3af0-46d2-9c0a-eff81e74a1e6", "name": "Find profile type by id", "request": { "name": "Find profile type by id", @@ -10049,7 +10049,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -10071,7 +10071,7 @@ }, "response": [ { - "id": "796a7b06-4de7-4384-b5f3-de0e0226d7ef", + "id": "e88663d4-2fdf-47e4-b39b-b747368799e0", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10110,12 +10110,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"category\": \"organization\",\n \"bypass_dup_protection\": \"\",\n \"archived\": \"\",\n \"permitted_role_ids\": [\n \"\",\n \"\"\n ],\n \"isc_synced\": \"\",\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n }\n ]\n }\n}", + "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sit Lorem occaecat doproident se\",\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 magna proident mollitsite\",\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 enim occaecatvelit irure\",\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\": \"occaecatdolor incididunt culpa e\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut exercitation occaecatinet sin\",\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": "e22255fe-4b01-4a88-8649-30d90d1ad626", + "id": "157462eb-f8aa-4f10-bdad-9fb06f94061e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10154,12 +10154,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "294d93a7-cfc1-4ad4-90b7-b7c2dd759f70", + "id": "0332f0f9-432b-42f1-8e42-7191558aee7b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10198,7 +10198,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -10209,7 +10209,7 @@ } }, { - "id": "1fc830cb-4e4b-45f8-b241-568ab4f76aec", + "id": "996f39ff-cb3a-470c-8c7b-980e8f06aa56", "name": "Update a profile type by id", "request": { "name": "Update a profile type by id", @@ -10229,7 +10229,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -10252,7 +10252,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"\",\n \"category\": \"other\",\n \"bypass_dup_protection\": \"\",\n \"archived\": \"\",\n \"permitted_role_ids\": [\n \"\",\n \"\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\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\": \"reprehenderit pariatur nulla off\",\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\": \"quisofficia exercitation Excepte\",\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 culpa nisi veniamesse Ut\",\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\": \"mollit commodo suntaute cillumes\",\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": "f9f5966a-d777-48d2-a2ed-89bec31b0813", + "id": "014892bc-9e4f-4116-b80a-67e016604983", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10299,7 +10299,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"\",\n \"category\": \"other\",\n \"bypass_dup_protection\": \"\",\n \"archived\": \"\",\n \"permitted_role_ids\": [\n \"\",\n \"\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\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\": \"reprehenderit pariatur nulla off\",\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\": \"quisofficia exercitation Excepte\",\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 culpa nisi veniamesse Ut\",\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\": \"mollit commodo suntaute cillumes\",\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\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"category\": \"organization\",\n \"bypass_dup_protection\": \"\",\n \"archived\": \"\",\n \"permitted_role_ids\": [\n \"\",\n \"\"\n ],\n \"isc_synced\": \"\",\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n }\n ]\n }\n}", + "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sit Lorem occaecat doproident se\",\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 magna proident mollitsite\",\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 enim occaecatvelit irure\",\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\": \"occaecatdolor incididunt culpa e\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut exercitation occaecatinet sin\",\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": "0340f4d0-f1b3-4b90-95e3-50f67603b088", + "id": "e78d0972-85ba-4558-8176-919928775ee3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10356,7 +10356,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"\",\n \"category\": \"other\",\n \"bypass_dup_protection\": \"\",\n \"archived\": \"\",\n \"permitted_role_ids\": [\n \"\",\n \"\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\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\": \"reprehenderit pariatur nulla off\",\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\": \"quisofficia exercitation Excepte\",\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 culpa nisi veniamesse Ut\",\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\": \"mollit commodo suntaute cillumes\",\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", @@ -10373,12 +10373,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "96c0d2bd-509f-496d-bc77-8abcc8383136", + "id": "2702c8b1-afa9-4225-acd8-66b95af765d6", "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\": \"\",\n \"category\": \"other\",\n \"bypass_dup_protection\": \"\",\n \"archived\": \"\",\n \"permitted_role_ids\": [\n \"\",\n \"\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"order\": \"\"\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\": \"reprehenderit pariatur nulla off\",\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\": \"quisofficia exercitation Excepte\",\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 culpa nisi veniamesse Ut\",\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\": \"mollit commodo suntaute cillumes\",\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", @@ -10430,7 +10430,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -10441,7 +10441,7 @@ } }, { - "id": "0a4d6e1a-8ea8-413d-944d-b7fdd1f147fb", + "id": "3c7c578f-f5d7-4e54-8cdc-5be199e3b7f5", "name": "Delete profile type", "request": { "name": "Delete profile type", @@ -10461,7 +10461,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -10483,7 +10483,7 @@ }, "response": [ { - "id": "46d5dc26-90f4-467b-99f6-af3794947de8", + "id": "01ae0d5f-8f15-4246-8c4f-850fa21cdb2c", "name": "Info about the operation", "originalRequest": { "url": { @@ -10522,12 +10522,12 @@ "value": "application/json" } ], - "body": "{\n \"info\": {\n \"description\": \"A message confirming the operation\",\n \"example\": \"object deleted\"\n }\n}", + "body": "{\n \"info\": \"object deleted\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f9c31afe-db64-4bee-b8f7-91dff8e250ff", + "id": "3ceb9b17-3aa9-4e7a-ad56-67cfd1aa5645", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10566,12 +10566,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ce0e4877-172c-4f5e-bc6f-f07de7b263b8", + "id": "435c65c6-cb7e-41b3-ae14-b981706a85cf", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10610,7 +10610,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -10627,7 +10627,7 @@ "description": "", "item": [ { - "id": "8b7ffd22-8490-4c8f-9e37-b5eae4813922", + "id": "a9681366-dc3d-4887-bed5-a11f59e56377", "name": "profile_types/ne_attributes synced status", "request": { "name": "profile_types/ne_attributes synced status", @@ -10652,7 +10652,7 @@ "type": "text/plain" }, "key": "active_filter", - "value": "synced" + "value": "all" }, { "disabled": false, @@ -10661,7 +10661,7 @@ "type": "text/plain" }, "key": "search", - "value": "" + "value": "search" }, { "disabled": false, @@ -10670,7 +10670,7 @@ "type": "text/plain" }, "key": "page", - "value": "" + "value": "5" }, { "disabled": false, @@ -10679,7 +10679,7 @@ "type": "text/plain" }, "key": "page", - "value": "" + "value": "5" }, { "disabled": false, @@ -10688,7 +10688,7 @@ "type": "text/plain" }, "key": "attr", - "value": "" + "value": "sync" }, { "disabled": false, @@ -10697,13 +10697,13 @@ "type": "text/plain" }, "key": "order", - "value": "desc" + "value": "asc" } ], "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "profile_type_id", "disabled": false, "description": { @@ -10725,7 +10725,7 @@ }, "response": [ { - "id": "ac40a08b-a40f-4bba-a387-b694d7279599", + "id": "508bc84e-6dcd-4af0-9fa4-0e899e28215b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10745,7 +10745,7 @@ "type": "text/plain" }, "key": "active_filter", - "value": "synced" + "value": "all" }, { "disabled": false, @@ -10754,7 +10754,7 @@ "type": "text/plain" }, "key": "search", - "value": "" + "value": "search" }, { "disabled": false, @@ -10763,7 +10763,7 @@ "type": "text/plain" }, "key": "page", - "value": "" + "value": "5" }, { "disabled": false, @@ -10772,7 +10772,7 @@ "type": "text/plain" }, "key": "attr", - "value": "" + "value": "sync" }, { "disabled": false, @@ -10781,7 +10781,7 @@ "type": "text/plain" }, "key": "order", - "value": "desc" + "value": "asc" } ], "variable": [] @@ -10811,12 +10811,12 @@ "value": "application/json" } ], - "body": "{\n \"form\": {\n \"count\": \"\",\n \"records\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"label\": \"\",\n \"synced\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"label\": \"\",\n \"synced\": \"\"\n }\n ]\n }\n}", + "body": "{\n \"form\": {\n \"count\": 5,\n \"records\": [\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"sunt anim ipsum mollitenim culpa\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n },\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"consequatUt pariaturveniamnon in\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ee00e51-ca30-4a9d-9f77-6450caff2529", + "id": "25fd8558-7707-41dc-9937-aeb7cf1bf921", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10836,7 +10836,7 @@ "type": "text/plain" }, "key": "active_filter", - "value": "synced" + "value": "all" }, { "disabled": false, @@ -10845,7 +10845,7 @@ "type": "text/plain" }, "key": "search", - "value": "" + "value": "search" }, { "disabled": false, @@ -10854,7 +10854,7 @@ "type": "text/plain" }, "key": "page", - "value": "" + "value": "5" }, { "disabled": false, @@ -10863,7 +10863,7 @@ "type": "text/plain" }, "key": "attr", - "value": "" + "value": "sync" }, { "disabled": false, @@ -10872,7 +10872,7 @@ "type": "text/plain" }, "key": "order", - "value": "desc" + "value": "asc" } ], "variable": [] @@ -10902,12 +10902,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bc40c4e5-4495-4035-9649-b5b3febd63c0", + "id": "0e613b67-ce4c-4f9b-a14d-6099fdddcdaa", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10927,7 +10927,7 @@ "type": "text/plain" }, "key": "active_filter", - "value": "synced" + "value": "all" }, { "disabled": false, @@ -10936,7 +10936,7 @@ "type": "text/plain" }, "key": "search", - "value": "" + "value": "search" }, { "disabled": false, @@ -10945,7 +10945,7 @@ "type": "text/plain" }, "key": "page", - "value": "" + "value": "5" }, { "disabled": false, @@ -10954,7 +10954,7 @@ "type": "text/plain" }, "key": "attr", - "value": "" + "value": "sync" }, { "disabled": false, @@ -10963,7 +10963,7 @@ "type": "text/plain" }, "key": "order", - "value": "desc" + "value": "asc" } ], "variable": [] @@ -10993,7 +10993,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -11004,7 +11004,7 @@ } }, { - "id": "191a1008-0b8f-4ce9-a45d-1eb6915b534f", + "id": "2456b44a-0665-472f-97bb-7fbfb5a88ec2", "name": "Create a synced attribute", "request": { "name": "Create a synced attribute", @@ -11042,7 +11042,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_id\": \"\"\n}", + "raw": "{\n \"ne_attribute_id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n}", "options": { "raw": { "headerFamily": "json", @@ -11054,7 +11054,7 @@ }, "response": [ { - "id": "83ffa4ae-0e74-4ccf-bc60-8fe6031e0e08", + "id": "1dd9365d-4c4c-45c6-ae0b-4a8f04569abd", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11090,7 +11090,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_id\": \"\"\n}", + "raw": "{\n \"ne_attribute_id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n}", "options": { "raw": { "headerFamily": "json", @@ -11107,12 +11107,12 @@ "value": "application/json" } ], - "body": "{\n \"synced_attribute\": {\n \"id\": \"\",\n \"profile_type_id\": \"\",\n \"ne_attribute_id\": \"\"\n }\n}", + "body": "{\n \"synced_attribute\": {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"profile_type_id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"ne_attribute_id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12dc48af-3546-4f9d-a887-3739b5f2191c", + "id": "2413431a-0050-418a-a72f-81d2fbb9389b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11148,7 +11148,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_id\": \"\"\n}", + "raw": "{\n \"ne_attribute_id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n}", "options": { "raw": { "headerFamily": "json", @@ -11165,12 +11165,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0871099b-dd97-4626-9870-91cb2507fb1a", + "id": "3a0e0906-56f5-4a1b-bae4-b08466f18a84", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11206,7 +11206,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_id\": \"\"\n}", + "raw": "{\n \"ne_attribute_id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n}", "options": { "raw": { "headerFamily": "json", @@ -11223,7 +11223,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -11234,7 +11234,7 @@ } }, { - "id": "4e27462f-2090-446d-81cd-7b3a796d1c06", + "id": "2cd2de1e-501c-4fb9-a6da-342e0ad0a776", "name": "Delete synced attribute", "request": { "name": "Delete synced attribute", @@ -11256,7 +11256,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "profile_type_id", "disabled": false, "description": { @@ -11266,7 +11266,7 @@ }, { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "ne_attribute_id", "disabled": false, "description": { @@ -11288,7 +11288,7 @@ }, "response": [ { - "id": "139b6962-a171-444d-958d-82c13a1d39f4", + "id": "30f70ce0-22d6-48d2-b5b8-5b41964a3855", "name": "Info about the operation", "originalRequest": { "url": { @@ -11329,12 +11329,12 @@ "value": "application/json" } ], - "body": "{\n \"info\": {\n \"description\": \"A message confirming the operation\",\n \"example\": \"object deleted\"\n }\n}", + "body": "{\n \"info\": \"object deleted\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d90277a7-5e6f-467b-a035-4b76e574a536", + "id": "c914ef1c-d043-4e38-b3a9-778b613437e4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11375,12 +11375,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e0058c5-88f7-4dcb-9d08-ac2f18ea31e9", + "id": "953f07d6-b93a-4015-a6c9-766ba496181e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11421,7 +11421,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -11438,7 +11438,7 @@ "description": "", "item": [ { - "id": "fb8b4be6-92c5-46bf-8e5a-ea05b76a9cf9", + "id": "4f7acf16-dc90-4f00-a09d-8664f3c88deb", "name": "Create a profile type role", "request": { "name": "Create a profile type role", @@ -11469,7 +11469,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"form\": {\n \"profile_type_id\": \"\",\n \"role_id\": \"\"\n }\n}", + "raw": "{\n \"form\": {\n \"profile_type_id\": \"2eb5773f-2486-452f-bdb3-796133b30862\",\n \"role_id\": \"2eb5773f-2486-452f-bdb3-796133b30862\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -11481,7 +11481,7 @@ }, "response": [ { - "id": "c2515f8f-1f58-4c86-a651-fd253e75ad61", + "id": "14d2d495-de0b-46bd-9fac-5f18fdc9c79b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11515,7 +11515,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"form\": {\n \"profile_type_id\": \"\",\n \"role_id\": \"\"\n }\n}", + "raw": "{\n \"form\": {\n \"profile_type_id\": \"2eb5773f-2486-452f-bdb3-796133b30862\",\n \"role_id\": \"2eb5773f-2486-452f-bdb3-796133b30862\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -11532,12 +11532,12 @@ "value": "application/json" } ], - "body": "{\n \"form\": {\n \"profile_type_id\": \"\",\n \"role_id\": \"\",\n \"id\": \"\"\n }\n}", + "body": "{\n \"form\": {\n \"profile_type_id\": \"2eb5773f-2486-452f-bdb3-796133b30862\",\n \"role_id\": \"2eb5773f-2486-452f-bdb3-796133b30862\",\n \"id\": \"2e06b876-f456-473d-bd65-b6435e0b6b2d\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1cc6b71f-8aed-43b4-b518-c2919e38932f", + "id": "7258b9b9-2ac0-4968-a2e8-80a06ca8936d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11571,7 +11571,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"form\": {\n \"profile_type_id\": \"\",\n \"role_id\": \"\"\n }\n}", + "raw": "{\n \"form\": {\n \"profile_type_id\": \"2eb5773f-2486-452f-bdb3-796133b30862\",\n \"role_id\": \"2eb5773f-2486-452f-bdb3-796133b30862\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -11588,12 +11588,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f55cc7f6-234f-48ce-8d23-47e0dd66a7f9", + "id": "ff77e6bb-f3bb-44a1-a41f-1dd05b7775a5", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11627,7 +11627,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"form\": {\n \"profile_type_id\": \"\",\n \"role_id\": \"\"\n }\n}", + "raw": "{\n \"form\": {\n \"profile_type_id\": \"2eb5773f-2486-452f-bdb3-796133b30862\",\n \"role_id\": \"2eb5773f-2486-452f-bdb3-796133b30862\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -11644,7 +11644,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -11661,7 +11661,7 @@ "description": "", "item": [ { - "id": "1183dba1-1c89-4f69-bb1b-940248b40043", + "id": "d7bc278c-6c90-46db-8bc6-1bc65d307eda", "name": "Create a profile", "request": { "name": "Create a profile", @@ -11692,7 +11692,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"velit95\": \"\",\n \"sunt_d\": \"\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"Excepteur\",\n \"profile_type_id\": \"urn:uuid:5301aa9e-066e-0045-f738-0cbb3518b1c3\",\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", @@ -11704,7 +11704,7 @@ }, "response": [ { - "id": "c6f65b66-68d7-4815-802c-6c404ce7c10e", + "id": "d6f8a757-58ce-44a8-bac3-5f3af4cc66a4", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11738,7 +11738,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"velit95\": \"\",\n \"sunt_d\": \"\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"Excepteur\",\n \"profile_type_id\": \"urn:uuid:5301aa9e-066e-0045-f738-0cbb3518b1c3\",\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", @@ -11755,12 +11755,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"fail\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"voluptate_637\": \"\"\n }\n }\n}", + "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliqua sitLorem dolor laborum vo\",\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": "6d788247-6c6b-473d-84db-a4a56b596a05", + "id": "ea93b974-64ea-4e4d-a2e6-dedef9bdfcd6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11794,7 +11794,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"velit95\": \"\",\n \"sunt_d\": \"\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"Excepteur\",\n \"profile_type_id\": \"urn:uuid:5301aa9e-066e-0045-f738-0cbb3518b1c3\",\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", @@ -11811,12 +11811,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "29404f5a-4d28-4bf7-aacf-4b52cce7c78f", + "id": "e09b0f66-1ae2-4253-a4ed-139c427ab347", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11850,7 +11850,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"velit95\": \"\",\n \"sunt_d\": \"\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"Excepteur\",\n \"profile_type_id\": \"urn:uuid:5301aa9e-066e-0045-f738-0cbb3518b1c3\",\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", @@ -11867,7 +11867,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -11878,7 +11878,7 @@ } }, { - "id": "ada7012c-7029-48cb-8fea-a5d74b102dcb", + "id": "21d3d6f1-1ab8-4fd0-ac89-d939b945bb91", "name": "Get profiles", "request": { "name": "Get profiles", @@ -11901,7 +11901,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -11910,7 +11910,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -11919,7 +11919,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -11937,7 +11937,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -11946,7 +11946,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -11964,7 +11964,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -11981,7 +11981,7 @@ }, "response": [ { - "id": "c69afc66-af88-4de8-b5cf-f2c727ad12a2", + "id": "7cb6c42a-3909-4673-89d9-7151ed98dd63", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11999,7 +11999,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -12008,7 +12008,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -12017,7 +12017,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -12035,7 +12035,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -12044,7 +12044,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -12062,7 +12062,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -12092,12 +12092,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"occaecat9\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"nisi_d6\": \"\"\n }\n }\n ],\n \"_metadata\": {\n \"limit\": \"\",\n \"offset\": \"\",\n \"total\": \"\",\n \"next\": \"\",\n \"previous\": \"\"\n }\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"consectetur esse ipsum utadex eu\",\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\": \"in fugiat nisimagna in laborelab\",\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\": 64646297,\n \"offset\": 15872840,\n \"total\": 777257,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9666ed27-fa5d-42a7-832e-21bb211a393e", + "id": "7ab83162-f522-45f7-b906-3b35c4d7f825", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12115,7 +12115,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -12124,7 +12124,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -12133,7 +12133,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -12151,7 +12151,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -12160,7 +12160,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -12178,7 +12178,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -12208,12 +12208,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "74b49abf-373f-402d-a090-934ecbf7a633", + "id": "60e532d8-064e-4c5a-8951-da0767854dc6", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12231,7 +12231,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -12240,7 +12240,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -12249,7 +12249,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -12267,7 +12267,7 @@ "type": "text/plain" }, "key": "name", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -12276,7 +12276,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -12294,7 +12294,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -12324,7 +12324,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -12335,7 +12335,7 @@ } }, { - "id": "8d5c62ba-b983-4619-bc49-380ca3b03fe3", + "id": "9a10b25e-218a-493c-97ba-95a2a931ba1e", "name": "Create multiple profiles", "request": { "name": "Create multiple profiles", @@ -12366,7 +12366,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"non_028\": \"\",\n \"officiae5\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"et_7\": \"\",\n \"nulla_423\": \"\",\n \"exercitationd1a\": \"\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"cupidatat\",\n \"profile_type_id\": \"8fe7e3d2-46b6-84c0-e9be-0d383750c67e\",\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\": \"irure ipsum\",\n \"profile_type_id\": \"ad5ebf84-4d41-4830-b517-824128de6c59\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12378,7 +12378,7 @@ }, "response": [ { - "id": "880fa96c-1731-4c6b-bba6-d5a6cb0490e5", + "id": "a2257633-15d0-43aa-affc-07a40bb4d443", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12412,7 +12412,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"non_028\": \"\",\n \"officiae5\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"et_7\": \"\",\n \"nulla_423\": \"\",\n \"exercitationd1a\": \"\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"cupidatat\",\n \"profile_type_id\": \"8fe7e3d2-46b6-84c0-e9be-0d383750c67e\",\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\": \"irure ipsum\",\n \"profile_type_id\": \"ad5ebf84-4d41-4830-b517-824128de6c59\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12429,12 +12429,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"fail\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"consequat_b\": \"\",\n \"dolor131\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"fail\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"Utcf2\": \"\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"eafugiat cupidatat occaecatut co\",\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\": \"et aliqua magna consequatirure c\",\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": "a2d02754-43e5-4860-aae8-30e792d20051", + "id": "304e06c4-22f3-4ac2-b3c3-0932317c7e95", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12468,7 +12468,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"non_028\": \"\",\n \"officiae5\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"et_7\": \"\",\n \"nulla_423\": \"\",\n \"exercitationd1a\": \"\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"cupidatat\",\n \"profile_type_id\": \"8fe7e3d2-46b6-84c0-e9be-0d383750c67e\",\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\": \"irure ipsum\",\n \"profile_type_id\": \"ad5ebf84-4d41-4830-b517-824128de6c59\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12485,12 +12485,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35be1a7c-860e-443e-a662-5fc135e894be", + "id": "d954e701-c630-4ce3-a7d6-de488e7cbf52", "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\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"non_028\": \"\",\n \"officiae5\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"et_7\": \"\",\n \"nulla_423\": \"\",\n \"exercitationd1a\": \"\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"cupidatat\",\n \"profile_type_id\": \"8fe7e3d2-46b6-84c0-e9be-0d383750c67e\",\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\": \"irure ipsum\",\n \"profile_type_id\": \"ad5ebf84-4d41-4830-b517-824128de6c59\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12541,7 +12541,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -12552,7 +12552,7 @@ } }, { - "id": "28ac2b9e-be67-451c-afcc-84da8456b35f", + "id": "f90535c6-b09c-482b-bfc3-173127b72d88", "name": "Update multiple profiles", "request": { "name": "Update multiple profiles", @@ -12583,7 +12583,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"ullamco64\": \"\",\n \"in_88\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"nostrudbdc\": \"\",\n \"aute_49\": \"\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"1ea1e830-8462-5a95-ffd5-1070fa51dd4b\",\n \"name\": \"sed sint est sit commodo\",\n \"profile_type_id\": \"urn:uuid:289b3b5f-c8aa-02ab-d026-b6277b599eb1\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:ff1977c7-aa8c-323b-4783-31c2f98d4de9\",\n \"name\": \"mollit\",\n \"profile_type_id\": \"urn:uuid:51274556-2974-ffd5-4a44-fe8f79d9336b\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12595,7 +12595,7 @@ }, "response": [ { - "id": "31a7bdf8-6570-4e04-af9b-afa471b4e2d7", + "id": "d78c6063-e4fe-48ff-8a09-f1afae5269db", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12629,7 +12629,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"ullamco64\": \"\",\n \"in_88\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"nostrudbdc\": \"\",\n \"aute_49\": \"\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"1ea1e830-8462-5a95-ffd5-1070fa51dd4b\",\n \"name\": \"sed sint est sit commodo\",\n \"profile_type_id\": \"urn:uuid:289b3b5f-c8aa-02ab-d026-b6277b599eb1\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:ff1977c7-aa8c-323b-4783-31c2f98d4de9\",\n \"name\": \"mollit\",\n \"profile_type_id\": \"urn:uuid:51274556-2974-ffd5-4a44-fe8f79d9336b\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12646,12 +12646,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"fail\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"consequat_b\": \"\",\n \"dolor131\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"fail\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"Utcf2\": \"\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"eafugiat cupidatat occaecatut co\",\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\": \"et aliqua magna consequatirure c\",\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": "8fbd3a1d-60a6-4889-a9c8-47872fade981", + "id": "0dea79f4-0d59-4bc6-9886-844ac969d48d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12685,7 +12685,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"ullamco64\": \"\",\n \"in_88\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"nostrudbdc\": \"\",\n \"aute_49\": \"\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"1ea1e830-8462-5a95-ffd5-1070fa51dd4b\",\n \"name\": \"sed sint est sit commodo\",\n \"profile_type_id\": \"urn:uuid:289b3b5f-c8aa-02ab-d026-b6277b599eb1\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:ff1977c7-aa8c-323b-4783-31c2f98d4de9\",\n \"name\": \"mollit\",\n \"profile_type_id\": \"urn:uuid:51274556-2974-ffd5-4a44-fe8f79d9336b\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12702,12 +12702,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a22452a6-d679-4d13-a091-c99c2859be1e", + "id": "640e1ad3-589d-4ade-bd83-453db5d76e3d", "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\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"ullamco64\": \"\",\n \"in_88\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"nostrudbdc\": \"\",\n \"aute_49\": \"\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"1ea1e830-8462-5a95-ffd5-1070fa51dd4b\",\n \"name\": \"sed sint est sit commodo\",\n \"profile_type_id\": \"urn:uuid:289b3b5f-c8aa-02ab-d026-b6277b599eb1\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:ff1977c7-aa8c-323b-4783-31c2f98d4de9\",\n \"name\": \"mollit\",\n \"profile_type_id\": \"urn:uuid:51274556-2974-ffd5-4a44-fe8f79d9336b\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12758,7 +12758,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -12769,7 +12769,7 @@ } }, { - "id": "418edd33-53b3-4214-929b-74bd72f514d4", + "id": "430686b9-6d19-423a-ad88-04f0a16da589", "name": "Delete multiple profiles", "request": { "name": "Delete multiple profiles", @@ -12800,7 +12800,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:a93cda80-80ca-e9fe-2100-b6f4202a77cb\"\n },\n {\n \"id\": \"urn:uuid:552ce808-7562-845d-ce2b-adc6f4cda353\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12812,7 +12812,7 @@ }, "response": [ { - "id": "f307643e-2827-4fd6-9eb9-40145a571d84", + "id": "1d1e20bb-894e-4590-8f48-8ebde0a22daa", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12846,7 +12846,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:a93cda80-80ca-e9fe-2100-b6f4202a77cb\"\n },\n {\n \"id\": \"urn:uuid:552ce808-7562-845d-ce2b-adc6f4cda353\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12863,12 +12863,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"fail\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"consequat_b\": \"\",\n \"dolor131\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"fail\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"Utcf2\": \"\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"eafugiat cupidatat occaecatut co\",\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\": \"et aliqua magna consequatirure c\",\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": "0d0b1da9-248b-4946-982c-65b9a71e36bb", + "id": "74501a74-a298-4baf-af7e-c2958f7375b9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12902,7 +12902,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:a93cda80-80ca-e9fe-2100-b6f4202a77cb\"\n },\n {\n \"id\": \"urn:uuid:552ce808-7562-845d-ce2b-adc6f4cda353\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12919,12 +12919,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8f1b0e15-c6c1-43d0-bf92-947faf954903", + "id": "291dd1a6-353b-4d8c-85e6-7f0b8b5648c0", "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\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:a93cda80-80ca-e9fe-2100-b6f4202a77cb\"\n },\n {\n \"id\": \"urn:uuid:552ce808-7562-845d-ce2b-adc6f4cda353\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12975,7 +12975,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -12986,7 +12986,7 @@ } }, { - "id": "60da6f26-fe1f-440e-9fcb-ca7e581dae51", + "id": "1a755635-a522-48b3-881a-8fc136a213c2", "name": "Find profile by id", "request": { "name": "Find profile by id", @@ -13006,7 +13006,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -13028,7 +13028,7 @@ }, "response": [ { - "id": "6ee1323c-8dbb-4a7f-87e3-881f05c2846d", + "id": "474c372e-74a4-4fdf-b41a-ed05c9cef2d8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13067,12 +13067,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"fail\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"voluptate_637\": \"\"\n }\n }\n}", + "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliqua sitLorem dolor laborum vo\",\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": "e31a8b15-7127-4f21-809f-ba34a5ca55b4", + "id": "b08408ff-5e3f-4770-b0fb-a56055d09d6c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13111,12 +13111,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "96e8b11b-fa48-4d5c-adf3-7ec55817b4be", + "id": "144053b5-a140-428d-962e-fb584f2a86f1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13155,7 +13155,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -13166,7 +13166,7 @@ } }, { - "id": "61008285-2894-4d8b-b13c-208b8d98cc0a", + "id": "1117420e-4adf-48ad-a867-bce50f1832b8", "name": "Update a profile by id", "request": { "name": "Update a profile by id", @@ -13186,7 +13186,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -13209,7 +13209,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"dolor1f\": \"\",\n \"in5\": \"\",\n \"Excepteur__\": \"\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"nostrud incididunt in\",\n \"profile_type_id\": \"urn:uuid:4514f20c-70ca-3ab4-3383-03aeabb1dd43\",\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", @@ -13221,7 +13221,7 @@ }, "response": [ { - "id": "77487413-068f-4e2e-9274-802ea72cd2b3", + "id": "99509c17-8b8c-4566-8ca3-22ea8ee2cc64", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13256,7 +13256,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"dolor1f\": \"\",\n \"in5\": \"\",\n \"Excepteur__\": \"\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"nostrud incididunt in\",\n \"profile_type_id\": \"urn:uuid:4514f20c-70ca-3ab4-3383-03aeabb1dd43\",\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", @@ -13273,12 +13273,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"fail\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"voluptate_637\": \"\"\n }\n }\n}", + "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliqua sitLorem dolor laborum vo\",\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": "c6d343ba-4642-46ce-98d3-415ebd1761c5", + "id": "332ee95a-b8b9-4630-94ed-c4704e7890fb", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13313,7 +13313,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"dolor1f\": \"\",\n \"in5\": \"\",\n \"Excepteur__\": \"\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"nostrud incididunt in\",\n \"profile_type_id\": \"urn:uuid:4514f20c-70ca-3ab4-3383-03aeabb1dd43\",\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", @@ -13330,12 +13330,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9e8de452-c9cc-4a27-a9f0-a9a5a7e52f0e", + "id": "528ac920-185f-41c9-8efb-8051fd693645", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13370,7 +13370,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"dolor1f\": \"\",\n \"in5\": \"\",\n \"Excepteur__\": \"\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"nostrud incididunt in\",\n \"profile_type_id\": \"urn:uuid:4514f20c-70ca-3ab4-3383-03aeabb1dd43\",\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", @@ -13387,7 +13387,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -13398,7 +13398,7 @@ } }, { - "id": "b013ba4e-0461-4a27-a048-5f7dbb0fa338", + "id": "1c66e872-409a-4e8d-928c-30a7105e8811", "name": "Delete a single profile", "request": { "name": "Delete a single profile", @@ -13418,7 +13418,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -13440,7 +13440,7 @@ }, "response": [ { - "id": "961f586a-3053-42bf-a27e-24dbec8e7d3e", + "id": "fa656a71-1cc7-47dc-8632-e170d0f746d4", "name": "The Profile was successfully deleted.", "originalRequest": { "url": { @@ -13474,7 +13474,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f22f5661-33c3-464e-b2ae-208caf4c9d54", + "id": "980b91bc-fadd-4fe1-aee0-5cf61d1c6184", "name": "Error deleting Profile", "originalRequest": { "url": { @@ -13513,12 +13513,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": \"\"\n}", + "body": "{\n \"error\": \"aliquip pariatur ut magna quis\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "99d8eaac-9fdc-4d80-9f24-28534f2313ee", + "id": "d58c6dde-5f3b-4a58-939d-270032124386", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13557,7 +13557,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -13568,7 +13568,7 @@ } }, { - "id": "1fddb6f9-cce6-47ca-b84d-768703101bae", + "id": "6f1229e0-43fc-4917-a17a-a4c1639cbe54", "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", @@ -13590,7 +13590,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -13600,7 +13600,7 @@ }, { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "attribute_id", "disabled": false, "description": { @@ -13622,7 +13622,7 @@ }, "response": [ { - "id": "3b58168b-70d4-4624-840c-d5d6541d3b49", + "id": "8c0655ed-bf87-4ecc-b7c1-897c56cb6702", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13663,12 +13663,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"\"\n}", + "body": "{\n \"url\": \"laboris anim\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa0c560a-5d26-4daf-8d39-29a35f9f78cd", + "id": "31d5410b-b250-4b11-a5e6-068016118b57", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13709,12 +13709,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "83ef3cf1-3631-496c-91f3-a86f42e1d145", + "id": "8485ca29-a45d-4439-bef3-9f87d082d76e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13755,7 +13755,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -13766,7 +13766,7 @@ } }, { - "id": "e5a64ddd-e1e7-413d-814f-9640d2de2144", + "id": "25979098-b8c7-4e37-836c-1d195da1ec80", "name": "Uploads a new attachment attribute value to a profile", "request": { "name": "Uploads a new attachment attribute value to a profile", @@ -13788,7 +13788,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -13798,7 +13798,7 @@ }, { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "attribute_id", "disabled": false, "description": { @@ -13828,7 +13828,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -13837,7 +13837,7 @@ }, "response": [ { - "id": "b11c076f-8136-403a-8b9f-25704808cf7a", + "id": "6a3c8f50-5539-4efc-959b-fc4f060fca87", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13881,7 +13881,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -13895,12 +13895,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"\"\n}", + "body": "{\n \"url\": \"laboris anim\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "815945da-34ee-430e-a441-2ebfc3f947fa", + "id": "08f60752-77e7-42cc-9c26-cfdc7ce7e7cc", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13944,7 +13944,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -13958,12 +13958,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "033c9b07-237f-4568-8f22-590b42fb8ca7", + "id": "265611e7-64ad-458a-bda1-5bc04502052d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14007,7 +14007,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -14021,7 +14021,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -14032,7 +14032,7 @@ } }, { - "id": "7e27f00f-b862-4883-a9c3-e1468810a06a", + "id": "9cde91c7-9a6d-497e-9ccf-3bbc0840e694", "name": "Retrieves the URL of the profile avatar", "request": { "name": "Retrieves the URL of the profile avatar", @@ -14053,7 +14053,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -14075,7 +14075,7 @@ }, "response": [ { - "id": "894aacb5-9458-4768-aa72-e75a50abb19e", + "id": "e701eb87-b266-4623-831e-b4f55e110936", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14115,12 +14115,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"\"\n}", + "body": "{\n \"url\": \"laboris anim\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "62ddb023-0dc3-4fff-aeab-3017b450b9c9", + "id": "bdc1751d-9beb-42be-b875-827ccb8f4ffb", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14160,12 +14160,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "03d1dcda-6bc7-41fc-bbce-f79ff303b233", + "id": "c55c6cee-2695-417f-8483-87b8169c3dbe", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14205,7 +14205,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -14216,7 +14216,7 @@ } }, { - "id": "11bf2567-dbb0-44b6-b07e-2b316e63bb29", + "id": "c656e261-0035-4594-ae95-606c8ae31bf8", "name": "Uploads a new profile avatar", "request": { "name": "Uploads a new profile avatar", @@ -14237,7 +14237,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -14267,7 +14267,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -14276,7 +14276,7 @@ }, "response": [ { - "id": "f0a9a13f-2e45-4894-8a05-d76b34366072", + "id": "7e4322c6-8aed-4937-bf64-18d0a3dffad5", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14319,7 +14319,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -14333,12 +14333,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"\"\n}", + "body": "{\n \"url\": \"laboris anim\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "51874c8f-d327-4750-8807-299ef7af37da", + "id": "0d9a8aeb-0e54-4de8-aca3-22a17fbd68b9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14381,7 +14381,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -14395,12 +14395,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0875c2e9-bd4f-4e4d-adc6-85ba30c1acd4", + "id": "9fe76192-029a-44c2-8904-b686be716ab1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14443,7 +14443,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -14457,7 +14457,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -14474,7 +14474,7 @@ "description": "", "item": [ { - "id": "2a793fb8-6402-4ea8-81a3-33fca4bbed96", + "id": "233e736c-ce54-489e-80d7-f0be1a70de01", "name": "Get risk score data in bulk", "request": { "name": "Get risk score data in bulk", @@ -14497,7 +14497,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -14506,7 +14506,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -14515,7 +14515,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -14524,7 +14524,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14533,7 +14533,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "WorkflowSession" + "value": "Profile" }, { "disabled": false, @@ -14542,7 +14542,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14551,7 +14551,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14560,7 +14560,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14569,7 +14569,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -14586,7 +14586,7 @@ }, "response": [ { - "id": "a955f540-2863-46a7-a0ee-e0fcfe426993", + "id": "c39f15e3-a2bb-42ea-adf3-df5758f4ab24", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14604,7 +14604,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -14613,7 +14613,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -14622,7 +14622,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -14631,7 +14631,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14640,7 +14640,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "WorkflowSession" + "value": "Profile" }, { "disabled": false, @@ -14649,7 +14649,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14658,7 +14658,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14667,7 +14667,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14676,7 +14676,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -14706,12 +14706,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_scores\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"object_id\": \"\",\n \"object_type\": \"Profile\",\n \"overall_score\": \"\",\n \"overall_risk_level_id\": \"\",\n \"impact_score\": \"\",\n \"impact_risk_level_id\": \"\",\n \"probability_score\": \"\",\n \"probability_risk_level_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"object_id\": \"\",\n \"object_type\": \"Profile\",\n \"overall_score\": \"\",\n \"overall_risk_level_id\": \"\",\n \"impact_score\": \"\",\n \"impact_risk_level_id\": \"\",\n \"probability_score\": \"\",\n \"probability_risk_level_id\": \"\"\n }\n ],\n \"_metadata\": {\n \"limit\": \"\",\n \"offset\": \"\",\n \"total\": \"\",\n \"next\": \"\",\n \"previous\": \"\"\n }\n}", + "body": "{\n \"risk_scores\": [\n {\n \"id\": \"69ee0fff-eba3-aa90-bd06-2dfc3f24619d\",\n \"uid\": \"minim elitquis uteiusmod consequ\",\n \"object_id\": \"urn:uuid:c907f1bc-c7af-a204-a547-5cc2b391b322\",\n \"object_type\": \"Profile\",\n \"overall_score\": 191297906.54,\n \"overall_risk_level_id\": \"urn:uuid:5f1a95b3-4cbd-7646-a597-910d8fa9ab15\",\n \"impact_score\": 133568990.18,\n \"impact_risk_level_id\": \"a5b4c3bf-4e86-a665-cb99-ff9f575176e9\",\n \"probability_score\": 123124905.26,\n \"probability_risk_level_id\": \"urn:uuid:ea325487-7d17-497a-85a8-ea32103b06ca\"\n },\n {\n \"id\": \"urn:uuid:f2711e75-08f7-e7cc-b413-d611ef4d7ecd\",\n \"uid\": \"in minim mollitut quiin culpa ma\",\n \"object_id\": \"aba2499c-2271-48d3-b901-2643ce0cb7e5\",\n \"object_type\": \"Profile\",\n \"overall_score\": 23750742.36,\n \"overall_risk_level_id\": \"5566d822-6517-6543-59c6-18c559ec13f7\",\n \"impact_score\": 16119739.3,\n \"impact_risk_level_id\": \"urn:uuid:ad80d1f0-09b7-d79d-6778-286f8b438310\",\n \"probability_score\": 98372778.47,\n \"probability_risk_level_id\": \"urn:uuid:6ff9269b-145e-23a8-61ff-ceafab57b832\"\n }\n ],\n \"_metadata\": {\n \"limit\": 40510436,\n \"offset\": 69343062,\n \"total\": -35201413,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "583a3e1d-0305-4fc8-b192-3519adc05fca", + "id": "a74c643e-e58f-48b0-bb4c-9a85f30e5c90", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14729,7 +14729,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -14738,7 +14738,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -14747,7 +14747,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -14756,7 +14756,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14765,7 +14765,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "WorkflowSession" + "value": "Profile" }, { "disabled": false, @@ -14774,7 +14774,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14783,7 +14783,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14792,7 +14792,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14801,7 +14801,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -14831,12 +14831,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "901cd528-862d-46f4-adf3-91671d403ada", + "id": "85cf622b-e27e-49d6-ae1c-65f88bef91bc", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14854,7 +14854,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -14863,7 +14863,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -14872,7 +14872,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -14881,7 +14881,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14890,7 +14890,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "WorkflowSession" + "value": "Profile" }, { "disabled": false, @@ -14899,7 +14899,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14908,7 +14908,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14917,7 +14917,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -14926,7 +14926,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -14956,7 +14956,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -14967,7 +14967,7 @@ } }, { - "id": "7a8ba352-5a57-4bb4-afc2-07dbb2934f82", + "id": "e337956a-dc2c-4220-b026-3d662a99c064", "name": "Find risk score data by id", "request": { "name": "Find risk score data by id", @@ -14987,7 +14987,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -15009,7 +15009,7 @@ }, "response": [ { - "id": "17f94567-b8f3-4c1f-b5cc-65980bf2acfc", + "id": "026dcaa0-761c-487d-bfa6-fcb75901651a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15048,12 +15048,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_score\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"object_id\": \"\",\n \"object_type\": \"WorkflowSession\",\n \"overall_score\": \"\",\n \"overall_risk_level_id\": \"\",\n \"impact_score\": \"\",\n \"impact_risk_level_id\": \"\",\n \"probability_score\": \"\",\n \"probability_risk_level_id\": \"\"\n }\n}", + "body": "{\n \"risk_score\": {\n \"id\": \"6a1cdb64-3422-5cd6-100b-7ec0f7bdea17\",\n \"uid\": \"id ullamcovelit cupidatat conseq\",\n \"object_id\": \"cb44cfd3-5f23-d62c-ae52-c7967c671a55\",\n \"object_type\": \"Profile\",\n \"overall_score\": 173374986.77,\n \"overall_risk_level_id\": \"urn:uuid:8377a574-8100-c7e8-5d75-eab97dbc48ee\",\n \"impact_score\": 27398039.61,\n \"impact_risk_level_id\": \"c70238b4-c59f-4829-b112-40ffc4731289\",\n \"probability_score\": 63856593.71,\n \"probability_risk_level_id\": \"d48598d2-cd51-e8c1-90d1-f2adb77be87d\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5501df1-90ab-43f9-8ff5-f7691a3eaf59", + "id": "14f6eb90-d8a0-414a-a006-2e03f6c8f9ee", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15092,12 +15092,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5c71d5b9-c77e-42eb-974e-b2a93000c9b3", + "id": "826c947c-8a15-4e31-9bb1-bbd28080a9a7", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15136,7 +15136,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15153,7 +15153,7 @@ "description": "", "item": [ { - "id": "2a40607c-92ed-4610-970c-1e52f2b9f50d", + "id": "565cecae-fcca-4940-8092-2b9220abb6a5", "name": "Get risk level data in bulk", "request": { "name": "Get risk level data in bulk", @@ -15176,7 +15176,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -15185,7 +15185,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -15194,7 +15194,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -15203,7 +15203,7 @@ "type": "text/plain" }, "key": "label", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -15212,7 +15212,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -15229,7 +15229,7 @@ }, "response": [ { - "id": "e9f9f88b-9e3a-4f2a-8ecc-a95e430c516b", + "id": "5f556415-04b9-43b5-9f52-c4a7777a7536", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15247,7 +15247,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -15256,7 +15256,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -15265,7 +15265,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -15274,7 +15274,7 @@ "type": "text/plain" }, "key": "label", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -15283,7 +15283,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -15313,12 +15313,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_levels\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"label\": \"\",\n \"points\": \"\",\n \"order\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"label\": \"\",\n \"points\": \"\",\n \"order\": \"\"\n }\n ],\n \"_metadata\": {\n \"limit\": \"\",\n \"offset\": \"\",\n \"total\": \"\",\n \"next\": \"\",\n \"previous\": \"\"\n }\n}", + "body": "{\n \"risk_levels\": [\n {\n \"id\": \"urn:uuid:602f3d30-00b0-8c4a-1c28-d3b15e6f928b\",\n \"uid\": \"exercitation ex dolore proident \",\n \"label\": \"nulla pariatur ullamco sed nostrud\",\n \"points\": 91366687.75,\n \"order\": 79601852\n },\n {\n \"id\": \"4e8eb966-e437-6225-a95a-c246ceaa0418\",\n \"uid\": \"dolore cupidatatlaboris etlabore\",\n \"label\": \"pariatur Ut adipisicing sed\",\n \"points\": 198316390.99,\n \"order\": 63048543\n }\n ],\n \"_metadata\": {\n \"limit\": -99133741,\n \"offset\": 33227563,\n \"total\": 90493400,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "436660cf-836b-47b1-83ff-919614144b00", + "id": "5c5cf6f7-c732-4bc7-a01b-b265ad67eea9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15336,7 +15336,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -15345,7 +15345,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -15354,7 +15354,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -15363,7 +15363,7 @@ "type": "text/plain" }, "key": "label", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -15372,7 +15372,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -15402,12 +15402,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5adf2a35-29e4-400a-acc3-3a4dfa3c705d", + "id": "f5e5e0ad-8be6-4dca-8396-9417e06e35de", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15425,7 +15425,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -15434,7 +15434,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -15443,7 +15443,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -15452,7 +15452,7 @@ "type": "text/plain" }, "key": "label", - "value": "" + "value": "laboris anim aute" }, { "disabled": false, @@ -15461,7 +15461,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -15491,7 +15491,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15502,7 +15502,7 @@ } }, { - "id": "9f948256-5e18-4fdc-ac59-3123793e1cfb", + "id": "876527aa-e1cd-4de6-a6fe-2f5087b806d4", "name": "Find risk level data by id", "request": { "name": "Find risk level data by id", @@ -15522,7 +15522,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -15544,7 +15544,7 @@ }, "response": [ { - "id": "d5b96940-9425-4474-8aa3-255eb0707c8b", + "id": "739d1fc6-44de-4742-980c-4ae5095789e3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15583,12 +15583,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_level\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"label\": \"\",\n \"points\": \"\",\n \"order\": \"\"\n }\n}", + "body": "{\n \"risk_level\": {\n \"id\": \"d223bfd6-1158-0a97-b604-cd01b9128d24\",\n \"uid\": \"eiusmod labore laboris ullamcoad\",\n \"label\": \"consequat ex Duis\",\n \"points\": 75344357.51,\n \"order\": 94661379\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cf306f54-00c3-4d11-b655-2112cd28ea42", + "id": "fc53cf29-3ad8-4779-aa02-2f439258dffa", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15627,12 +15627,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c575393-a783-4c7a-944b-a0ef59038c8e", + "id": "cf24fbd5-66d7-4132-9236-57deaa9441bf", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15671,7 +15671,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15688,7 +15688,7 @@ "description": "", "item": [ { - "id": "6cce8aae-6531-4c95-b839-ba5dfbcf894e", + "id": "c4c6c4aa-ee02-4393-8340-8b103c8ef4e4", "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\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:7ec43e05-0ee2-bc14-5181-a67f4b9b701c\",\n \"profile_id\": \"afa4df58-4166-8421-3d3d-5b66c0d45c4f\",\n \"ne_attribute_id\": \"urn:uuid:605f5e8e-aad1-f0c4-634a-e4b7805c0175\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -15731,7 +15731,7 @@ }, "response": [ { - "id": "a75fbd3f-12bf-4f6a-9cc7-c179c6759eff", + "id": "729cb89b-c668-47cc-b220-424db3577f75", "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\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:7ec43e05-0ee2-bc14-5181-a67f4b9b701c\",\n \"profile_id\": \"afa4df58-4166-8421-3d3d-5b66c0d45c4f\",\n \"ne_attribute_id\": \"urn:uuid:605f5e8e-aad1-f0c4-634a-e4b7805c0175\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -15782,12 +15782,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"f27eb347-5483-d76f-4a8a-afc5e0d15b52\",\n \"uid\": \"sint estvoluptate Lorem esse inc\",\n \"user_id\": \"a71c1874-1281-27d8-1ad9-4b41fcd55f91\",\n \"profile_id\": \"f9b7d763-bf18-c44c-9d22-be132b399795\",\n \"ne_attribute_id\": \"aa76d381-f9f7-f232-f173-77435f499437\",\n \"relationship_type\": \"contributor\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cbd0aa9f-0d02-4e3a-bd80-f6d08673c714", + "id": "8a670a67-8c87-4925-97d4-1c5f05a5b0f9", "name": "Invalid input", "originalRequest": { "url": { @@ -15817,7 +15817,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:7ec43e05-0ee2-bc14-5181-a67f4b9b701c\",\n \"profile_id\": \"afa4df58-4166-8421-3d3d-5b66c0d45c4f\",\n \"ne_attribute_id\": \"urn:uuid:605f5e8e-aad1-f0c4-634a-e4b7805c0175\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -15839,7 +15839,7 @@ } }, { - "id": "9118e0e3-a714-44c4-b367-8d6d6a3396ea", + "id": "5bdc0089-3e6c-42bc-8bfb-dcae78f40193", "name": "Get user-profile contributor relationships", "request": { "name": "Get user-profile contributor relationships", @@ -15862,7 +15862,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -15871,7 +15871,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -15880,7 +15880,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -15889,7 +15889,7 @@ "type": "text/plain" }, "key": "user_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -15898,7 +15898,7 @@ "type": "text/plain" }, "key": "ne_attribute_id", - "value": "" + "value": "33f072dd-13b4-41e1-8ea0-16f2a59b57c8" }, { "disabled": false, @@ -15907,7 +15907,7 @@ "type": "text/plain" }, "key": "profile_id", - "value": "" + "value": "4e480441-451d-47d9-87c2-9a0f0fe135eb" }, { "disabled": false, @@ -15925,7 +15925,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -15942,7 +15942,7 @@ }, "response": [ { - "id": "c677e86c-febe-40a0-9362-e0d8d01dfeed", + "id": "be945e2f-10f0-45fb-8f0c-60a366ff4452", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15960,7 +15960,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -15969,7 +15969,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -15978,7 +15978,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -15987,7 +15987,7 @@ "type": "text/plain" }, "key": "user_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -15996,7 +15996,7 @@ "type": "text/plain" }, "key": "ne_attribute_id", - "value": "" + "value": "33f072dd-13b4-41e1-8ea0-16f2a59b57c8" }, { "disabled": false, @@ -16005,7 +16005,7 @@ "type": "text/plain" }, "key": "profile_id", - "value": "" + "value": "4e480441-451d-47d9-87c2-9a0f0fe135eb" }, { "disabled": false, @@ -16023,7 +16023,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -16053,12 +16053,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"owner\"\n }\n ],\n \"_metadata\": {\n \"limit\": \"\",\n \"offset\": \"\",\n \"total\": \"\",\n \"next\": \"\",\n \"previous\": \"\"\n }\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"fcd24989-d76c-a7cb-ea5f-9fbb1ebc86d0\",\n \"uid\": \"veniamincididuntreprehenderit Ex\",\n \"user_id\": \"urn:uuid:1f68f9a7-f554-ab5b-2e55-fa8f44326169\",\n \"profile_id\": \"urn:uuid:d1522d33-876e-2d12-db88-03ddd2ab366a\",\n \"ne_attribute_id\": \"c36247f2-a7ec-815f-e2f1-d1da3dc76481\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"urn:uuid:25be4a57-2c27-1624-6f8b-7283e4a115ee\",\n \"uid\": \"elitUt veniam esse dolordolordol\",\n \"user_id\": \"urn:uuid:a2f420b5-cc9b-d122-0965-20733bd0f581\",\n \"profile_id\": \"e7e26352-4823-fe72-4891-702af8b31e08\",\n \"ne_attribute_id\": \"urn:uuid:55bbdfad-1ff0-592d-9c15-42367cbb1bbd\",\n \"relationship_type\": \"owner\"\n }\n ],\n \"_metadata\": {\n \"limit\": -72035949,\n \"offset\": 79874458,\n \"total\": -29484817,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "10d04c15-ace6-4ae9-a663-7eff9c1b191c", + "id": "b09a8252-b960-48e8-bef8-1112152e3c89", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16076,7 +16076,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -16085,7 +16085,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -16094,7 +16094,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -16103,7 +16103,7 @@ "type": "text/plain" }, "key": "user_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -16112,7 +16112,7 @@ "type": "text/plain" }, "key": "ne_attribute_id", - "value": "" + "value": "33f072dd-13b4-41e1-8ea0-16f2a59b57c8" }, { "disabled": false, @@ -16121,7 +16121,7 @@ "type": "text/plain" }, "key": "profile_id", - "value": "" + "value": "4e480441-451d-47d9-87c2-9a0f0fe135eb" }, { "disabled": false, @@ -16139,7 +16139,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -16169,12 +16169,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c4878b10-6100-4d5f-a313-7ed10cb05783", + "id": "62b61a8b-e944-4150-baf8-70c00da4dbae", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16192,7 +16192,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -16201,7 +16201,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -16210,7 +16210,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -16219,7 +16219,7 @@ "type": "text/plain" }, "key": "user_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -16228,7 +16228,7 @@ "type": "text/plain" }, "key": "ne_attribute_id", - "value": "" + "value": "33f072dd-13b4-41e1-8ea0-16f2a59b57c8" }, { "disabled": false, @@ -16237,7 +16237,7 @@ "type": "text/plain" }, "key": "profile_id", - "value": "" + "value": "4e480441-451d-47d9-87c2-9a0f0fe135eb" }, { "disabled": false, @@ -16255,7 +16255,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -16285,7 +16285,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -16296,7 +16296,7 @@ } }, { - "id": "129ccac7-0868-4958-9d2c-1afb07828e1d", + "id": "6ba11bad-2b4c-4319-a7cb-0c0598458c3f", "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\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:c8762ce5-0bcc-1a27-e3eb-4826c64db0a3\",\n \"profile_id\": \"2e48f7d8-6211-9edf-eb34-f7740d38cf6b\",\n \"ne_attribute_id\": \"urn:uuid:badb4bc3-6254-a302-9f2e-79d796719075\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"cc9c3be9-c696-1b6a-8eee-c32dab1ec946\",\n \"profile_id\": \"urn:uuid:9eec89bb-7ea7-dca6-fb16-7e06bcebe6c4\",\n \"ne_attribute_id\": \"785ff46e-7749-268f-b12a-8c485ff674df\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16339,7 +16339,7 @@ }, "response": [ { - "id": "587cba6a-d21c-4a0d-becf-7072d861261a", + "id": "eab0974e-30b7-4a91-8dbd-31440830f62f", "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\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:c8762ce5-0bcc-1a27-e3eb-4826c64db0a3\",\n \"profile_id\": \"2e48f7d8-6211-9edf-eb34-f7740d38cf6b\",\n \"ne_attribute_id\": \"urn:uuid:badb4bc3-6254-a302-9f2e-79d796719075\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"cc9c3be9-c696-1b6a-8eee-c32dab1ec946\",\n \"profile_id\": \"urn:uuid:9eec89bb-7ea7-dca6-fb16-7e06bcebe6c4\",\n \"ne_attribute_id\": \"785ff46e-7749-268f-b12a-8c485ff674df\",\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\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"ea317b73-694e-7c80-fa86-3ab6e8fc1714\",\n \"uid\": \"magna Excepteurincididunt esse a\",\n \"user_id\": \"4b3d84ff-48a0-5b77-85a6-e5ec44ffac70\",\n \"profile_id\": \"98806ee8-5044-7f94-2ffb-eb2d5206f25d\",\n \"ne_attribute_id\": \"urn:uuid:ab77b3d9-6b2a-6e17-f5a9-c14eeb5fd33b\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"urn:uuid:485ce174-81f1-d789-0df4-048d4e81bad2\",\n \"uid\": \"do euin nulla nonenimofficia nul\",\n \"user_id\": \"0a3296e5-959a-8790-5718-9c4288c814fd\",\n \"profile_id\": \"urn:uuid:272798a6-b98e-7d6b-cb30-6c7cc3562b24\",\n \"ne_attribute_id\": \"920c2aee-0b15-6847-86df-7af9885b4a6c\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e1cfa5a-24a8-4fd8-9534-a1c5d12bd20e", + "id": "094a7dd5-82f3-4ff9-9d27-bf8ef8f9eb6c", "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\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:c8762ce5-0bcc-1a27-e3eb-4826c64db0a3\",\n \"profile_id\": \"2e48f7d8-6211-9edf-eb34-f7740d38cf6b\",\n \"ne_attribute_id\": \"urn:uuid:badb4bc3-6254-a302-9f2e-79d796719075\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"cc9c3be9-c696-1b6a-8eee-c32dab1ec946\",\n \"profile_id\": \"urn:uuid:9eec89bb-7ea7-dca6-fb16-7e06bcebe6c4\",\n \"ne_attribute_id\": \"785ff46e-7749-268f-b12a-8c485ff674df\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16446,12 +16446,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f53a342-3c7f-4d4d-a92f-ef246c4dcf71", + "id": "fdaef242-1244-4745-84a1-c4948bcf0056", "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\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:c8762ce5-0bcc-1a27-e3eb-4826c64db0a3\",\n \"profile_id\": \"2e48f7d8-6211-9edf-eb34-f7740d38cf6b\",\n \"ne_attribute_id\": \"urn:uuid:badb4bc3-6254-a302-9f2e-79d796719075\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"cc9c3be9-c696-1b6a-8eee-c32dab1ec946\",\n \"profile_id\": \"urn:uuid:9eec89bb-7ea7-dca6-fb16-7e06bcebe6c4\",\n \"ne_attribute_id\": \"785ff46e-7749-268f-b12a-8c485ff674df\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16502,7 +16502,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -16513,7 +16513,7 @@ } }, { - "id": "5fae9bbf-1864-4b98-a698-f16225fe8488", + "id": "f6a7ef5e-6747-461d-8911-6689cdc14128", "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\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"d626daa3-486e-1143-8757-001ee981baeb\",\n \"user_id\": \"c8fc220e-9de3-d895-8dfe-c3f3942ae8a7\",\n \"profile_id\": \"19dc98b0-7e07-9b66-7b7c-b54101d838b4\",\n \"ne_attribute_id\": \"7ddff203-4772-e60f-26a0-c42cf7c1a68c\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:87096bf3-124b-38df-fa95-645bc665c1df\",\n \"user_id\": \"ae469125-c061-1b91-e1f2-fffef7b7d4e6\",\n \"profile_id\": \"cb748883-6f4a-cee2-693a-855e65e49e7e\",\n \"ne_attribute_id\": \"5b8d1553-55b0-bb8c-815e-13a1796ce0ed\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16556,7 +16556,7 @@ }, "response": [ { - "id": "f39529a5-b847-4822-9043-fc4fab29290d", + "id": "bd4c3b70-c4ee-4bc0-9ddb-e193a4088a68", "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\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"d626daa3-486e-1143-8757-001ee981baeb\",\n \"user_id\": \"c8fc220e-9de3-d895-8dfe-c3f3942ae8a7\",\n \"profile_id\": \"19dc98b0-7e07-9b66-7b7c-b54101d838b4\",\n \"ne_attribute_id\": \"7ddff203-4772-e60f-26a0-c42cf7c1a68c\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:87096bf3-124b-38df-fa95-645bc665c1df\",\n \"user_id\": \"ae469125-c061-1b91-e1f2-fffef7b7d4e6\",\n \"profile_id\": \"cb748883-6f4a-cee2-693a-855e65e49e7e\",\n \"ne_attribute_id\": \"5b8d1553-55b0-bb8c-815e-13a1796ce0ed\",\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\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"ea317b73-694e-7c80-fa86-3ab6e8fc1714\",\n \"uid\": \"magna Excepteurincididunt esse a\",\n \"user_id\": \"4b3d84ff-48a0-5b77-85a6-e5ec44ffac70\",\n \"profile_id\": \"98806ee8-5044-7f94-2ffb-eb2d5206f25d\",\n \"ne_attribute_id\": \"urn:uuid:ab77b3d9-6b2a-6e17-f5a9-c14eeb5fd33b\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"urn:uuid:485ce174-81f1-d789-0df4-048d4e81bad2\",\n \"uid\": \"do euin nulla nonenimofficia nul\",\n \"user_id\": \"0a3296e5-959a-8790-5718-9c4288c814fd\",\n \"profile_id\": \"urn:uuid:272798a6-b98e-7d6b-cb30-6c7cc3562b24\",\n \"ne_attribute_id\": \"920c2aee-0b15-6847-86df-7af9885b4a6c\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0fcc81d9-e903-401e-90af-8523040abea5", + "id": "8bb7c3a7-d6e4-4f29-b25c-daa22e73b90c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16646,7 +16646,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"d626daa3-486e-1143-8757-001ee981baeb\",\n \"user_id\": \"c8fc220e-9de3-d895-8dfe-c3f3942ae8a7\",\n \"profile_id\": \"19dc98b0-7e07-9b66-7b7c-b54101d838b4\",\n \"ne_attribute_id\": \"7ddff203-4772-e60f-26a0-c42cf7c1a68c\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:87096bf3-124b-38df-fa95-645bc665c1df\",\n \"user_id\": \"ae469125-c061-1b91-e1f2-fffef7b7d4e6\",\n \"profile_id\": \"cb748883-6f4a-cee2-693a-855e65e49e7e\",\n \"ne_attribute_id\": \"5b8d1553-55b0-bb8c-815e-13a1796ce0ed\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16663,12 +16663,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c3c2abf7-3c02-4f46-8970-8f11adf075ed", + "id": "651cd7b4-3d46-4103-800e-d10c8b527093", "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\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"d626daa3-486e-1143-8757-001ee981baeb\",\n \"user_id\": \"c8fc220e-9de3-d895-8dfe-c3f3942ae8a7\",\n \"profile_id\": \"19dc98b0-7e07-9b66-7b7c-b54101d838b4\",\n \"ne_attribute_id\": \"7ddff203-4772-e60f-26a0-c42cf7c1a68c\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:87096bf3-124b-38df-fa95-645bc665c1df\",\n \"user_id\": \"ae469125-c061-1b91-e1f2-fffef7b7d4e6\",\n \"profile_id\": \"cb748883-6f4a-cee2-693a-855e65e49e7e\",\n \"ne_attribute_id\": \"5b8d1553-55b0-bb8c-815e-13a1796ce0ed\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16719,7 +16719,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -16730,7 +16730,7 @@ } }, { - "id": "29d8ef2d-0ad1-41b6-8c50-42c4f007057e", + "id": "941782a3-b59b-4439-859d-839494c4a550", "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\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:36cacc87-cb2a-8bb5-2ac8-b5a6c164c973\"\n },\n {\n \"id\": \"urn:uuid:a3fa21f9-5ac3-35f5-1c6a-3ebbaaddacf5\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16773,7 +16773,7 @@ }, "response": [ { - "id": "1d806f7c-dbd5-4a4c-868c-7b9b29e4a49d", + "id": "c0e210a8-2fe2-4279-9710-3e62be29b2ef", "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\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:36cacc87-cb2a-8bb5-2ac8-b5a6c164c973\"\n },\n {\n \"id\": \"urn:uuid:a3fa21f9-5ac3-35f5-1c6a-3ebbaaddacf5\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16824,12 +16824,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"ea317b73-694e-7c80-fa86-3ab6e8fc1714\",\n \"uid\": \"magna Excepteurincididunt esse a\",\n \"user_id\": \"4b3d84ff-48a0-5b77-85a6-e5ec44ffac70\",\n \"profile_id\": \"98806ee8-5044-7f94-2ffb-eb2d5206f25d\",\n \"ne_attribute_id\": \"urn:uuid:ab77b3d9-6b2a-6e17-f5a9-c14eeb5fd33b\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"urn:uuid:485ce174-81f1-d789-0df4-048d4e81bad2\",\n \"uid\": \"do euin nulla nonenimofficia nul\",\n \"user_id\": \"0a3296e5-959a-8790-5718-9c4288c814fd\",\n \"profile_id\": \"urn:uuid:272798a6-b98e-7d6b-cb30-6c7cc3562b24\",\n \"ne_attribute_id\": \"920c2aee-0b15-6847-86df-7af9885b4a6c\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b6158f55-d400-4351-a44d-f59f450fa88d", + "id": "04d3a5de-4866-4927-8a3b-d4bee7d397c6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16863,7 +16863,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:36cacc87-cb2a-8bb5-2ac8-b5a6c164c973\"\n },\n {\n \"id\": \"urn:uuid:a3fa21f9-5ac3-35f5-1c6a-3ebbaaddacf5\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16880,12 +16880,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c98634ef-57ec-410b-9776-5260be82f2a9", + "id": "391969fe-d856-44d2-918e-bdb94ad3c465", "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\": \"\"\n },\n {\n \"id\": \"\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:36cacc87-cb2a-8bb5-2ac8-b5a6c164c973\"\n },\n {\n \"id\": \"urn:uuid:a3fa21f9-5ac3-35f5-1c6a-3ebbaaddacf5\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16936,7 +16936,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -16947,7 +16947,7 @@ } }, { - "id": "c845f670-e0fd-4f40-80ea-7b9f1255bac5", + "id": "b5520d27-e321-4b21-8dc8-24f4a20a42bd", "name": "Find user-profile contributor relationship by id", "request": { "name": "Find user-profile contributor relationship by id", @@ -16967,7 +16967,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -16989,7 +16989,7 @@ }, "response": [ { - "id": "0428457b-2341-49da-ae2e-304362a56da4", + "id": "225e2efa-52a0-4e72-ae6d-26a4f3158035", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17028,12 +17028,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"f27eb347-5483-d76f-4a8a-afc5e0d15b52\",\n \"uid\": \"sint estvoluptate Lorem esse inc\",\n \"user_id\": \"a71c1874-1281-27d8-1ad9-4b41fcd55f91\",\n \"profile_id\": \"f9b7d763-bf18-c44c-9d22-be132b399795\",\n \"ne_attribute_id\": \"aa76d381-f9f7-f232-f173-77435f499437\",\n \"relationship_type\": \"contributor\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d2d3121c-5439-440a-ab7e-c23b5b031e88", + "id": "c3e35f5d-f6d9-4a49-acf5-9ed473bf3e56", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17072,12 +17072,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "47a9c708-f334-4329-9144-271f72b66ea3", + "id": "7dda8efd-9b11-4665-af6f-73bd6e13f320", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17116,7 +17116,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17127,7 +17127,7 @@ } }, { - "id": "ec89a256-00fd-45ee-9d18-d547bbdd4b28", + "id": "1d44ce7e-7348-4fcf-a004-f05ccad541b7", "name": "Update a user-profile contributor relationship by id", "request": { "name": "Update a user-profile contributor relationship by id", @@ -17147,7 +17147,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -17170,7 +17170,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:7ec43e05-0ee2-bc14-5181-a67f4b9b701c\",\n \"profile_id\": \"afa4df58-4166-8421-3d3d-5b66c0d45c4f\",\n \"ne_attribute_id\": \"urn:uuid:605f5e8e-aad1-f0c4-634a-e4b7805c0175\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17182,7 +17182,7 @@ }, "response": [ { - "id": "d873bc3f-d8f2-4c3a-b36f-7cf7094097b6", + "id": "12ce80c7-10e9-4d46-9690-2fa7800c5fe4", "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\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:7ec43e05-0ee2-bc14-5181-a67f4b9b701c\",\n \"profile_id\": \"afa4df58-4166-8421-3d3d-5b66c0d45c4f\",\n \"ne_attribute_id\": \"urn:uuid:605f5e8e-aad1-f0c4-634a-e4b7805c0175\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17234,12 +17234,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"f27eb347-5483-d76f-4a8a-afc5e0d15b52\",\n \"uid\": \"sint estvoluptate Lorem esse inc\",\n \"user_id\": \"a71c1874-1281-27d8-1ad9-4b41fcd55f91\",\n \"profile_id\": \"f9b7d763-bf18-c44c-9d22-be132b399795\",\n \"ne_attribute_id\": \"aa76d381-f9f7-f232-f173-77435f499437\",\n \"relationship_type\": \"contributor\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e8e2f2bf-4878-4e70-a32e-f753070aa0f8", + "id": "dfa94ac8-0136-4392-a9da-29df84f3e074", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17274,7 +17274,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:7ec43e05-0ee2-bc14-5181-a67f4b9b701c\",\n \"profile_id\": \"afa4df58-4166-8421-3d3d-5b66c0d45c4f\",\n \"ne_attribute_id\": \"urn:uuid:605f5e8e-aad1-f0c4-634a-e4b7805c0175\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17291,12 +17291,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c976b48-70ad-4758-ae62-4c39564a04ff", + "id": "623f25ee-e465-4681-bd37-285d0d6c05fc", "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\": \"\",\n \"profile_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"relationship_type\": \"contributor\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:7ec43e05-0ee2-bc14-5181-a67f4b9b701c\",\n \"profile_id\": \"afa4df58-4166-8421-3d3d-5b66c0d45c4f\",\n \"ne_attribute_id\": \"urn:uuid:605f5e8e-aad1-f0c4-634a-e4b7805c0175\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17348,7 +17348,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17359,7 +17359,7 @@ } }, { - "id": "cc269d8d-89bd-4ac6-ae28-64360dfeb4fa", + "id": "71a10dcd-bed5-4b2c-b7ab-72ec9c04e882", "name": "Delete a user profile assignment", "request": { "name": "Delete a user profile assignment", @@ -17379,7 +17379,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -17401,7 +17401,7 @@ }, "response": [ { - "id": "1e15d892-8e68-4152-83e1-d915a5aa7702", + "id": "5709a710-bbcd-46b1-a184-cac863f62b1a", "name": "User profile was destroyed", "originalRequest": { "url": { @@ -17445,7 +17445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31933e15-45b5-418c-ace8-6781261724d1", + "id": "b923c172-b1ea-4358-8046-c2c2106095f4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17484,12 +17484,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3b5dc567-8ec6-40fd-9539-f7ccfe0ac4b6", + "id": "d1b30b96-e72b-42b2-ba0b-724fdcd603f8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17528,7 +17528,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17545,7 +17545,7 @@ "description": "", "item": [ { - "id": "ed2f27e9-8cc4-48f4-8dad-cb6a5e8de518", + "id": "bb3c19a2-2631-468f-a3b7-3903223ec2bb", "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\": \"\",\n \"profile_id\": \"\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:c480ba0b-1f39-d7e9-7dc4-f0299b71ae25\",\n \"profile_id\": \"urn:uuid:2c375da8-56ba-3424-4ee9-e1922396322f\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17588,7 +17588,7 @@ }, "response": [ { - "id": "d64b2e6f-6aae-4370-b9ba-69ef7069dfc1", + "id": "1ecd0372-1f2f-4be4-a68b-6ff3e18a37ea", "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\": \"\",\n \"profile_id\": \"\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:c480ba0b-1f39-d7e9-7dc4-f0299b71ae25\",\n \"profile_id\": \"urn:uuid:2c375da8-56ba-3424-4ee9-e1922396322f\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17639,12 +17639,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:4dd5cb7e-7ee6-3cce-7a14-b6a5673392a5\",\n \"uid\": \"Lorem qui non DuisLorem sint sed\",\n \"role_id\": \"06edb538-0eb9-d145-8a07-e69a7e53a09c\",\n \"profile_id\": \"bef58b05-1b39-3375-88d3-b076040865f4\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e910d99c-a721-47ce-a3d6-d37d18b5acbd", + "id": "8f391aa8-f946-414c-8f6a-a9aae7f5ea11", "name": "Invalid input", "originalRequest": { "url": { @@ -17674,7 +17674,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:c480ba0b-1f39-d7e9-7dc4-f0299b71ae25\",\n \"profile_id\": \"urn:uuid:2c375da8-56ba-3424-4ee9-e1922396322f\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17696,7 +17696,7 @@ } }, { - "id": "ca46d303-7f0b-44d4-9afe-99b82f16825f", + "id": "23a42dbe-4189-4299-87a2-aaf49823a9a6", "name": "Get role-profile contributor relationships", "request": { "name": "Get role-profile contributor relationships", @@ -17719,7 +17719,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -17728,7 +17728,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -17737,7 +17737,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -17746,7 +17746,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -17755,7 +17755,7 @@ "type": "text/plain" }, "key": "profile_id", - "value": "" + "value": "4e480441-451d-47d9-87c2-9a0f0fe135eb" }, { "disabled": false, @@ -17764,7 +17764,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -17781,7 +17781,7 @@ }, "response": [ { - "id": "c026b7c8-a1b3-411f-9288-d9b7eda4db2a", + "id": "cbcdae09-591e-444e-9e22-19c55f566bdc", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17799,7 +17799,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -17808,7 +17808,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -17817,7 +17817,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -17826,7 +17826,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -17835,7 +17835,7 @@ "type": "text/plain" }, "key": "profile_id", - "value": "" + "value": "4e480441-451d-47d9-87c2-9a0f0fe135eb" }, { "disabled": false, @@ -17844,7 +17844,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -17874,12 +17874,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n ],\n \"_metadata\": {\n \"limit\": \"\",\n \"offset\": \"\",\n \"total\": \"\",\n \"next\": \"\",\n \"previous\": \"\"\n }\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:a01c0ee1-c391-4543-62b3-82eb6097e242\",\n \"uid\": \"velit reprehenderit easit fugiat\",\n \"role_id\": \"urn:uuid:a689b773-dc73-03e0-a7f0-37317898a611\",\n \"profile_id\": \"0b8e8bc2-a295-f7ab-3d20-d40aa5dd341e\"\n },\n {\n \"id\": \"eeda823e-05e1-a69e-117d-37aaad86b0cc\",\n \"uid\": \"amet eu magnaullamcoUtipsum Exce\",\n \"role_id\": \"urn:uuid:eef0bfeb-5d60-0f79-516b-e21edfeb14b6\",\n \"profile_id\": \"urn:uuid:a674f3f2-a449-117c-f737-c03ff6c65b44\"\n }\n ],\n \"_metadata\": {\n \"limit\": 97095065,\n \"offset\": 35044588,\n \"total\": -67660637,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "106840b8-37ea-4b23-ba95-2f11290980ed", + "id": "af446c11-971b-4d9d-815b-960173a123a6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17897,7 +17897,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -17906,7 +17906,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -17915,7 +17915,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -17924,7 +17924,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -17933,7 +17933,7 @@ "type": "text/plain" }, "key": "profile_id", - "value": "" + "value": "4e480441-451d-47d9-87c2-9a0f0fe135eb" }, { "disabled": false, @@ -17942,7 +17942,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -17972,12 +17972,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "66820e7c-b2db-431b-b656-2f0b2907fcf6", + "id": "f212b216-baa8-4118-a3d8-6b9a6995e89c", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17995,7 +17995,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -18004,7 +18004,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -18013,7 +18013,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -18022,7 +18022,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -18031,7 +18031,7 @@ "type": "text/plain" }, "key": "profile_id", - "value": "" + "value": "4e480441-451d-47d9-87c2-9a0f0fe135eb" }, { "disabled": false, @@ -18040,7 +18040,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -18070,7 +18070,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18081,7 +18081,7 @@ } }, { - "id": "1b0317f2-5111-40a0-9eea-e095d13ad122", + "id": "2c4b7aec-e077-40f4-8d39-a937789d2b0c", "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\": \"\",\n \"profile_id\": \"\"\n },\n {\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:66c952c0-2d10-f58a-c169-cba9d9cca927\",\n \"profile_id\": \"b824c959-cae7-4093-1e8d-7a4ed87301ca\"\n },\n {\n \"role_id\": \"941727be-ab03-a439-a0a1-0db5d20193d3\",\n \"profile_id\": \"urn:uuid:122498d0-338f-2894-7488-e05f2f83a401\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18124,7 +18124,7 @@ }, "response": [ { - "id": "dbb6b83a-472b-4c11-8f9f-1250d7cda0e5", + "id": "e3f0e60f-51c2-430e-b06e-f28191699878", "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\": \"\",\n \"profile_id\": \"\"\n },\n {\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:66c952c0-2d10-f58a-c169-cba9d9cca927\",\n \"profile_id\": \"b824c959-cae7-4093-1e8d-7a4ed87301ca\"\n },\n {\n \"role_id\": \"941727be-ab03-a439-a0a1-0db5d20193d3\",\n \"profile_id\": \"urn:uuid:122498d0-338f-2894-7488-e05f2f83a401\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18175,12 +18175,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n ]\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:7dd9912c-d943-5f0b-88a5-71d5539bdc35\",\n \"uid\": \"qui cupidatat aliqua veniamin co\",\n \"role_id\": \"urn:uuid:451678f3-d34d-c21e-3a37-5f57deb199f3\",\n \"profile_id\": \"3f3ae058-23a5-e67f-c757-7348f38dedde\"\n },\n {\n \"id\": \"urn:uuid:e769e629-0548-4ebc-88fc-3498ed6bfa6f\",\n \"uid\": \"ut ullamcoofficia eiusmodenim no\",\n \"role_id\": \"8a30f7da-5e88-f575-a9ab-1d36c983adfb\",\n \"profile_id\": \"bec3229a-e377-2a8d-bc04-756153aba062\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "64fbcdae-87c6-4735-869c-728ad12c8c1e", + "id": "f30b9825-cd7c-4e72-9eda-85f185d6f8c2", "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\": \"\",\n \"profile_id\": \"\"\n },\n {\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:66c952c0-2d10-f58a-c169-cba9d9cca927\",\n \"profile_id\": \"b824c959-cae7-4093-1e8d-7a4ed87301ca\"\n },\n {\n \"role_id\": \"941727be-ab03-a439-a0a1-0db5d20193d3\",\n \"profile_id\": \"urn:uuid:122498d0-338f-2894-7488-e05f2f83a401\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18231,12 +18231,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "507e7a94-d8d6-4f76-8d17-245b7b5c8e46", + "id": "c4716151-2e55-4336-a451-f991a5831119", "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\": \"\",\n \"profile_id\": \"\"\n },\n {\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:66c952c0-2d10-f58a-c169-cba9d9cca927\",\n \"profile_id\": \"b824c959-cae7-4093-1e8d-7a4ed87301ca\"\n },\n {\n \"role_id\": \"941727be-ab03-a439-a0a1-0db5d20193d3\",\n \"profile_id\": \"urn:uuid:122498d0-338f-2894-7488-e05f2f83a401\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18287,7 +18287,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18298,7 +18298,7 @@ } }, { - "id": "91e8a22a-f2ad-45af-aa51-1476da1adb43", + "id": "00fb2327-fadd-4502-8089-1bc06f9137f5", "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\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n },\n {\n \"id\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:9b08a0b2-7a54-ba11-1502-40eb2c6330c5\",\n \"role_id\": \"e1459c99-2dcb-82e8-f7bc-224c5e1d6151\",\n \"profile_id\": \"fecb7e70-6d9b-2e67-0a24-bf993604a43b\"\n },\n {\n \"id\": \"c4e5edff-ddb7-938c-3e83-e6a788fbc480\",\n \"role_id\": \"ca94f731-4b17-9727-dc91-f0750b2292b8\",\n \"profile_id\": \"cf89aa25-f449-4af1-30f4-d612484c749c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18341,7 +18341,7 @@ }, "response": [ { - "id": "d4050d59-c51d-4906-99ea-0a536b694174", + "id": "cad283bf-86b5-4a6b-a598-f5cc3c065e4f", "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\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n },\n {\n \"id\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:9b08a0b2-7a54-ba11-1502-40eb2c6330c5\",\n \"role_id\": \"e1459c99-2dcb-82e8-f7bc-224c5e1d6151\",\n \"profile_id\": \"fecb7e70-6d9b-2e67-0a24-bf993604a43b\"\n },\n {\n \"id\": \"c4e5edff-ddb7-938c-3e83-e6a788fbc480\",\n \"role_id\": \"ca94f731-4b17-9727-dc91-f0750b2292b8\",\n \"profile_id\": \"cf89aa25-f449-4af1-30f4-d612484c749c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18392,12 +18392,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n ]\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:7dd9912c-d943-5f0b-88a5-71d5539bdc35\",\n \"uid\": \"qui cupidatat aliqua veniamin co\",\n \"role_id\": \"urn:uuid:451678f3-d34d-c21e-3a37-5f57deb199f3\",\n \"profile_id\": \"3f3ae058-23a5-e67f-c757-7348f38dedde\"\n },\n {\n \"id\": \"urn:uuid:e769e629-0548-4ebc-88fc-3498ed6bfa6f\",\n \"uid\": \"ut ullamcoofficia eiusmodenim no\",\n \"role_id\": \"8a30f7da-5e88-f575-a9ab-1d36c983adfb\",\n \"profile_id\": \"bec3229a-e377-2a8d-bc04-756153aba062\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "508d8c6f-3b24-4448-9698-27226134e54b", + "id": "0ada4adc-36f0-43e9-9bbc-b8495a03a124", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18431,7 +18431,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n },\n {\n \"id\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:9b08a0b2-7a54-ba11-1502-40eb2c6330c5\",\n \"role_id\": \"e1459c99-2dcb-82e8-f7bc-224c5e1d6151\",\n \"profile_id\": \"fecb7e70-6d9b-2e67-0a24-bf993604a43b\"\n },\n {\n \"id\": \"c4e5edff-ddb7-938c-3e83-e6a788fbc480\",\n \"role_id\": \"ca94f731-4b17-9727-dc91-f0750b2292b8\",\n \"profile_id\": \"cf89aa25-f449-4af1-30f4-d612484c749c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18448,12 +18448,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b7b507c4-a3a1-4c28-b2d2-17e134a8be0d", + "id": "5d7491ac-c915-46d5-bb68-6977770dd0d3", "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\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n },\n {\n \"id\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:9b08a0b2-7a54-ba11-1502-40eb2c6330c5\",\n \"role_id\": \"e1459c99-2dcb-82e8-f7bc-224c5e1d6151\",\n \"profile_id\": \"fecb7e70-6d9b-2e67-0a24-bf993604a43b\"\n },\n {\n \"id\": \"c4e5edff-ddb7-938c-3e83-e6a788fbc480\",\n \"role_id\": \"ca94f731-4b17-9727-dc91-f0750b2292b8\",\n \"profile_id\": \"cf89aa25-f449-4af1-30f4-d612484c749c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18504,7 +18504,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18515,7 +18515,7 @@ } }, { - "id": "1e70dada-402e-4754-afea-a73cec705a87", + "id": "c2767f72-34bf-4cc3-b4d6-856da243ec84", "name": "Find role-profile contributor relationship by id", "request": { "name": "Find role-profile contributor relationship by id", @@ -18535,7 +18535,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -18557,7 +18557,7 @@ }, "response": [ { - "id": "733d9ec3-da6c-4dbb-b86f-d76cc2c165e4", + "id": "b53741c5-d4e1-4e87-b936-3074c56ca052", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18596,12 +18596,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:4dd5cb7e-7ee6-3cce-7a14-b6a5673392a5\",\n \"uid\": \"Lorem qui non DuisLorem sint sed\",\n \"role_id\": \"06edb538-0eb9-d145-8a07-e69a7e53a09c\",\n \"profile_id\": \"bef58b05-1b39-3375-88d3-b076040865f4\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0dbbced4-c0a3-49b1-8378-860435d41108", + "id": "01a46755-f1f7-4cf5-a20d-8c9275907903", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18640,12 +18640,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec2be437-588c-4f5f-b128-3945afdad0a7", + "id": "85630725-cfec-4847-8b1f-c92fa5b97d5d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18684,7 +18684,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18695,7 +18695,7 @@ } }, { - "id": "c3e98de3-9839-4b16-a28a-25b3294ad48c", + "id": "4e16cad0-fe2a-461b-b132-0b9451ee2875", "name": "Update a role-profile contributor relationship by id", "request": { "name": "Update a role-profile contributor relationship by id", @@ -18715,7 +18715,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -18738,7 +18738,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:c480ba0b-1f39-d7e9-7dc4-f0299b71ae25\",\n \"profile_id\": \"urn:uuid:2c375da8-56ba-3424-4ee9-e1922396322f\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18750,7 +18750,7 @@ }, "response": [ { - "id": "2051dedc-3473-44b1-a59f-61cc5beac3e4", + "id": "0b98a106-be68-4669-9734-24f520f39369", "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\": \"\",\n \"profile_id\": \"\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:c480ba0b-1f39-d7e9-7dc4-f0299b71ae25\",\n \"profile_id\": \"urn:uuid:2c375da8-56ba-3424-4ee9-e1922396322f\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18802,12 +18802,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:4dd5cb7e-7ee6-3cce-7a14-b6a5673392a5\",\n \"uid\": \"Lorem qui non DuisLorem sint sed\",\n \"role_id\": \"06edb538-0eb9-d145-8a07-e69a7e53a09c\",\n \"profile_id\": \"bef58b05-1b39-3375-88d3-b076040865f4\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3da04580-8a3a-4e03-af08-cdc13a7f187b", + "id": "435920b5-9ddc-460c-9e64-6b766faf1ae7", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18842,7 +18842,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"\",\n \"profile_id\": \"\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:c480ba0b-1f39-d7e9-7dc4-f0299b71ae25\",\n \"profile_id\": \"urn:uuid:2c375da8-56ba-3424-4ee9-e1922396322f\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18859,12 +18859,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "37ebc760-e6fd-44d8-8e1d-542fda1729d4", + "id": "321f4104-3b3a-47f5-a8fa-82b4a79f14eb", "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\": \"\",\n \"profile_id\": \"\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:c480ba0b-1f39-d7e9-7dc4-f0299b71ae25\",\n \"profile_id\": \"urn:uuid:2c375da8-56ba-3424-4ee9-e1922396322f\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18916,7 +18916,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18927,7 +18927,7 @@ } }, { - "id": "7bd9dd4f-501a-4bf6-af38-2f40ac67e8c2", + "id": "5bf8944f-efe1-44a4-bbf9-347fa7eb8e37", "name": "Delete a role profile assignment", "request": { "name": "Delete a role profile assignment", @@ -18947,7 +18947,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -18969,7 +18969,7 @@ }, "response": [ { - "id": "e81ecd27-6ac1-4a07-9e43-687fa4ef680c", + "id": "91f01293-271a-468a-aef9-49d366f85c72", "name": "Role profile was destroyed", "originalRequest": { "url": { @@ -19013,7 +19013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a0e7961-0efa-4fc0-a181-9526c007d54f", + "id": "21958463-551b-4d24-84b0-aac514277747", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19052,12 +19052,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1e257c35-3b61-469e-918b-5922d73f5eed", + "id": "fa4ed9d1-3f34-471e-91b1-0f7a42d65eff", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19096,7 +19096,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -19113,7 +19113,7 @@ "description": "", "item": [ { - "id": "c1500c6e-1d41-41d2-98f4-2ce4bda4173d", + "id": "4fb73967-166c-42b1-83a7-7038b412efa3", "name": "Create a create workflow", "request": { "name": "Create a create workflow", @@ -19145,7 +19145,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\"\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 }\n}", "options": { "raw": { "headerFamily": "json", @@ -19157,7 +19157,7 @@ }, "response": [ { - "id": "a1ee7bbc-7ccc-4263-be0f-cf6de6013d64", + "id": "f2dec639-e3d9-4c87-9d7a-c993350056dc", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19192,7 +19192,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\"\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 }\n}", "options": { "raw": { "headerFamily": "json", @@ -19209,12 +19209,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"AUTH-STATUS5\",\n \"attributes\": {\n \"ut_963\": \"\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:cf9bcc83-77cb-3ea4-587f-e5f9cbd6ffe9\",\n \"uid\": \"pariatur aliqua sed reprehenderi\",\n \"workflow_id\": \"urn:uuid:d3f47ca8-cfc1-ebfc-7df0-2f47c17c8f6b\",\n \"requester_id\": \"8e9fe412-520d-b37f-e502-d25f191d8c0e\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"4fbac6e8-6867-e4b2-cee4-160a57507cda\",\n \"profile_ids\": [\n \"urn:uuid:1a033c03-8a6f-bec3-ea52-8f8da6581811\",\n \"33ff4b40-9cef-6dbb-c9f9-889c0226eb5e\"\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": "a0d1e68a-a8b2-4a9b-a85e-7a6614f93bf4", + "id": "1995937c-0769-479e-b20e-7d785dc6365b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19249,7 +19249,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\"\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 }\n}", "options": { "raw": { "headerFamily": "json", @@ -19266,12 +19266,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e25e0b9-40d8-4d94-9ee2-8a01ab743147", + "id": "97c24a96-9fc0-46be-ac18-47fe1f263165", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19306,7 +19306,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\"\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 }\n}", "options": { "raw": { "headerFamily": "json", @@ -19323,7 +19323,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -19334,7 +19334,7 @@ } }, { - "id": "acf5d5dc-4419-4413-bb40-6cb2dd28987c", + "id": "01cb911a-c9bc-49de-b098-24a0676b50ac", "name": "Create an update workflow", "request": { "name": "Create an update workflow", @@ -19366,7 +19366,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_status\": \"\"\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 \"profile_status\": \"active\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19378,7 +19378,7 @@ }, "response": [ { - "id": "16fc46cb-35b3-4a16-8e40-32d82cb72d5c", + "id": "92afa2dc-3ad8-492a-9fcc-e9b2cbecff60", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19413,7 +19413,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_status\": \"\"\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 \"profile_status\": \"active\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19430,12 +19430,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"AUTH-STATUS5\",\n \"attributes\": {\n \"ut_963\": \"\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:cf9bcc83-77cb-3ea4-587f-e5f9cbd6ffe9\",\n \"uid\": \"pariatur aliqua sed reprehenderi\",\n \"workflow_id\": \"urn:uuid:d3f47ca8-cfc1-ebfc-7df0-2f47c17c8f6b\",\n \"requester_id\": \"8e9fe412-520d-b37f-e502-d25f191d8c0e\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"4fbac6e8-6867-e4b2-cee4-160a57507cda\",\n \"profile_ids\": [\n \"urn:uuid:1a033c03-8a6f-bec3-ea52-8f8da6581811\",\n \"33ff4b40-9cef-6dbb-c9f9-889c0226eb5e\"\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": "1b496a06-b9b7-4088-81ed-d6c1d472025f", + "id": "e16e056e-06b5-4c7b-9648-a5935bbbd84e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19470,7 +19470,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_status\": \"\"\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 \"profile_status\": \"active\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19487,12 +19487,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "29517363-ea82-40b4-a4c9-622b4697f838", + "id": "f5e10e9c-5536-4713-b2ca-0699f6dae7d4", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19527,7 +19527,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_status\": \"\"\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 \"profile_status\": \"active\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19544,7 +19544,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -19555,7 +19555,7 @@ } }, { - "id": "2bdc058b-58e9-4b28-bb07-4cf5693b0420", + "id": "97c665cb-082c-4855-a4d5-55526e5e1da5", "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\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"false\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"false\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19599,7 +19599,7 @@ }, "response": [ { - "id": "fba55e99-2b82-4b05-99a1-6394f1e88ea2", + "id": "250d70d0-54ce-41c8-8be3-4806c1d07468", "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\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"false\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"false\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19651,12 +19651,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"AUTH-STATUS5\",\n \"attributes\": {\n \"ut_963\": \"\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:cf9bcc83-77cb-3ea4-587f-e5f9cbd6ffe9\",\n \"uid\": \"pariatur aliqua sed reprehenderi\",\n \"workflow_id\": \"urn:uuid:d3f47ca8-cfc1-ebfc-7df0-2f47c17c8f6b\",\n \"requester_id\": \"8e9fe412-520d-b37f-e502-d25f191d8c0e\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"4fbac6e8-6867-e4b2-cee4-160a57507cda\",\n \"profile_ids\": [\n \"urn:uuid:1a033c03-8a6f-bec3-ea52-8f8da6581811\",\n \"33ff4b40-9cef-6dbb-c9f9-889c0226eb5e\"\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": "26e63495-90ab-4e73-a087-4e133b621858", + "id": "8c64ba1b-65e8-4f04-bc7b-25587e714982", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19691,7 +19691,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"false\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"false\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19708,12 +19708,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "44d595d2-8700-4b7a-99b9-3d368f4f1d6f", + "id": "246fdb62-f36a-4c00-b129-4b5d19e625cc", "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\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"false\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"false\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19765,7 +19765,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -19776,7 +19776,7 @@ } }, { - "id": "982687a4-f117-4b3e-8143-97e5a868ffc7", + "id": "390d93e3-81ff-4d5a-8390-6ea16ba0295d", "name": "Create an automated workflow", "request": { "name": "Create an automated workflow", @@ -19808,7 +19808,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Enabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"condition_rules_attributes\": [\n {\n \"logical_operator\": \"OR\",\n \"comparison_operator\": \">\",\n \"condition_object_id\": \"\",\n \"condition_object_type\": \"\",\n \"secondary_value\": \"\",\n \"tertiary_value\": \"\",\n \"value\": \"\",\n \"order\": \"\",\n \"type\": \"ProfileAttributeRule\"\n },\n {\n \"logical_operator\": \"AND\",\n \"comparison_operator\": \">\",\n \"condition_object_id\": \"\",\n \"condition_object_type\": \"\",\n \"secondary_value\": \"\",\n \"tertiary_value\": \"\",\n \"value\": \"\",\n \"order\": \"\",\n \"type\": \"IdentityProofingRule\"\n }\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 \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"condition_type\": \"Workflow\",\n \"comparison_operator\": \"==\",\n \"logical_operator\": \"AND\",\n \"value\": \"true\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19820,7 +19820,7 @@ }, "response": [ { - "id": "2e79e1b3-ba74-4e7d-8708-914c48760efa", + "id": "07c82e85-7af0-4ca1-8b87-18975c6934c7", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19855,7 +19855,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Enabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"condition_rules_attributes\": [\n {\n \"logical_operator\": \"OR\",\n \"comparison_operator\": \">\",\n \"condition_object_id\": \"\",\n \"condition_object_type\": \"\",\n \"secondary_value\": \"\",\n \"tertiary_value\": \"\",\n \"value\": \"\",\n \"order\": \"\",\n \"type\": \"ProfileAttributeRule\"\n },\n {\n \"logical_operator\": \"AND\",\n \"comparison_operator\": \">\",\n \"condition_object_id\": \"\",\n \"condition_object_type\": \"\",\n \"secondary_value\": \"\",\n \"tertiary_value\": \"\",\n \"value\": \"\",\n \"order\": \"\",\n \"type\": \"IdentityProofingRule\"\n }\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 \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"condition_type\": \"Workflow\",\n \"comparison_operator\": \"==\",\n \"logical_operator\": \"AND\",\n \"value\": \"true\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19872,12 +19872,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"AUTH-STATUS5\",\n \"attributes\": {\n \"ut_963\": \"\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:cf9bcc83-77cb-3ea4-587f-e5f9cbd6ffe9\",\n \"uid\": \"pariatur aliqua sed reprehenderi\",\n \"workflow_id\": \"urn:uuid:d3f47ca8-cfc1-ebfc-7df0-2f47c17c8f6b\",\n \"requester_id\": \"8e9fe412-520d-b37f-e502-d25f191d8c0e\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"4fbac6e8-6867-e4b2-cee4-160a57507cda\",\n \"profile_ids\": [\n \"urn:uuid:1a033c03-8a6f-bec3-ea52-8f8da6581811\",\n \"33ff4b40-9cef-6dbb-c9f9-889c0226eb5e\"\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": "91431ba0-d201-4f5f-8eca-a170279a7e15", + "id": "cc94a296-f562-4e95-b172-fc0a7f4fa83c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19912,7 +19912,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Enabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"condition_rules_attributes\": [\n {\n \"logical_operator\": \"OR\",\n \"comparison_operator\": \">\",\n \"condition_object_id\": \"\",\n \"condition_object_type\": \"\",\n \"secondary_value\": \"\",\n \"tertiary_value\": \"\",\n \"value\": \"\",\n \"order\": \"\",\n \"type\": \"ProfileAttributeRule\"\n },\n {\n \"logical_operator\": \"AND\",\n \"comparison_operator\": \">\",\n \"condition_object_id\": \"\",\n \"condition_object_type\": \"\",\n \"secondary_value\": \"\",\n \"tertiary_value\": \"\",\n \"value\": \"\",\n \"order\": \"\",\n \"type\": \"IdentityProofingRule\"\n }\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 \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"condition_type\": \"Workflow\",\n \"comparison_operator\": \"==\",\n \"logical_operator\": \"AND\",\n \"value\": \"true\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19929,12 +19929,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b8777c5b-97e9-4179-8957-caf3a16a5036", + "id": "3e648d08-3297-4742-aa87-301be6738baa", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19969,7 +19969,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Enabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"condition_rules_attributes\": [\n {\n \"logical_operator\": \"OR\",\n \"comparison_operator\": \">\",\n \"condition_object_id\": \"\",\n \"condition_object_type\": \"\",\n \"secondary_value\": \"\",\n \"tertiary_value\": \"\",\n \"value\": \"\",\n \"order\": \"\",\n \"type\": \"ProfileAttributeRule\"\n },\n {\n \"logical_operator\": \"AND\",\n \"comparison_operator\": \">\",\n \"condition_object_id\": \"\",\n \"condition_object_type\": \"\",\n \"secondary_value\": \"\",\n \"tertiary_value\": \"\",\n \"value\": \"\",\n \"order\": \"\",\n \"type\": \"IdentityProofingRule\"\n }\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 \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"condition_type\": \"Workflow\",\n \"comparison_operator\": \"==\",\n \"logical_operator\": \"AND\",\n \"value\": \"true\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19986,7 +19986,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -19997,7 +19997,7 @@ } }, { - "id": "5414d9d2-9347-4498-8b01-40683578ba9f", + "id": "65965f92-b986-4237-ac12-3f44066519a0", "name": "Create a registration workflow", "request": { "name": "Create a registration workflow", @@ -20029,7 +20029,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\"\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 }\n}", "options": { "raw": { "headerFamily": "json", @@ -20041,7 +20041,7 @@ }, "response": [ { - "id": "6084eb62-56a6-4f16-81b3-31053fff2c8d", + "id": "6d8d5d79-10e0-4e5d-8ae1-93056428f31c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20076,7 +20076,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\"\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 }\n}", "options": { "raw": { "headerFamily": "json", @@ -20093,12 +20093,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"AUTH-STATUS5\",\n \"attributes\": {\n \"ut_963\": \"\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:cf9bcc83-77cb-3ea4-587f-e5f9cbd6ffe9\",\n \"uid\": \"pariatur aliqua sed reprehenderi\",\n \"workflow_id\": \"urn:uuid:d3f47ca8-cfc1-ebfc-7df0-2f47c17c8f6b\",\n \"requester_id\": \"8e9fe412-520d-b37f-e502-d25f191d8c0e\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"4fbac6e8-6867-e4b2-cee4-160a57507cda\",\n \"profile_ids\": [\n \"urn:uuid:1a033c03-8a6f-bec3-ea52-8f8da6581811\",\n \"33ff4b40-9cef-6dbb-c9f9-889c0226eb5e\"\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": "2bb5cff4-52d8-4e33-b028-13e131c2cd72", + "id": "c7985bf8-9186-41fb-95a4-b007d3ed64d6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20133,7 +20133,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\"\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 }\n}", "options": { "raw": { "headerFamily": "json", @@ -20150,12 +20150,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4a103fe0-df31-4f06-8cec-b4aec68a9cdd", + "id": "fc9c9403-4a55-44ca-b4b2-02c1e8edd804", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20190,7 +20190,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Disabled\",\n \"uid\": \"\",\n \"name\": \"\"\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 }\n}", "options": { "raw": { "headerFamily": "json", @@ -20207,7 +20207,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20218,7 +20218,7 @@ } }, { - "id": "514cb117-5bc7-4801-b3b9-ee54479548f7", + "id": "9adafefa-6ea5-4865-85d5-8f29ed194202", "name": "Create a login workflow", "request": { "name": "Create a login workflow", @@ -20250,7 +20250,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Enabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"options\": {\n \"expiration_time\": \"\"\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 \"expiration_time\": 1\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20262,7 +20262,7 @@ }, "response": [ { - "id": "a1ebe864-65fa-4eea-aeb5-fc74ffa78345", + "id": "984a88eb-a368-4974-9da2-bf091e84d262", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20297,7 +20297,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Enabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"options\": {\n \"expiration_time\": \"\"\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 \"expiration_time\": 1\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20314,12 +20314,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"AUTH-STATUS5\",\n \"attributes\": {\n \"ut_963\": \"\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:cf9bcc83-77cb-3ea4-587f-e5f9cbd6ffe9\",\n \"uid\": \"pariatur aliqua sed reprehenderi\",\n \"workflow_id\": \"urn:uuid:d3f47ca8-cfc1-ebfc-7df0-2f47c17c8f6b\",\n \"requester_id\": \"8e9fe412-520d-b37f-e502-d25f191d8c0e\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"4fbac6e8-6867-e4b2-cee4-160a57507cda\",\n \"profile_ids\": [\n \"urn:uuid:1a033c03-8a6f-bec3-ea52-8f8da6581811\",\n \"33ff4b40-9cef-6dbb-c9f9-889c0226eb5e\"\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": "cd3d41a5-3f04-490a-b6e3-fe90fcabf70d", + "id": "70bb74f1-8d4f-416d-9e6a-cf7e3ef47c1c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20354,7 +20354,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Enabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"options\": {\n \"expiration_time\": \"\"\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 \"expiration_time\": 1\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20371,12 +20371,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "79163b89-78d4-476a-8d98-de27c6c6d414", + "id": "b1ec0a1e-4530-4dd0-a2da-b8fd2e41ef87", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20411,7 +20411,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Enabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"options\": {\n \"expiration_time\": \"\"\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 \"expiration_time\": 1\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20428,7 +20428,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20439,7 +20439,7 @@ } }, { - "id": "7a98605d-3f66-4064-abd5-6b07f83671ee", + "id": "d8f34a93-d7d3-4885-88cb-c1eda59418c7", "name": "Create a password reset workflow", "request": { "name": "Create a password reset workflow", @@ -20471,7 +20471,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Enabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"options\": {\n \"expiration_time\": \"\"\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 \"expiration_time\": 1\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20483,7 +20483,7 @@ }, "response": [ { - "id": "cc920aaf-05a7-4ee2-845c-f6e99c41a787", + "id": "f182a37a-e540-4f77-8ad6-8c18b3df9541", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20518,7 +20518,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Enabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"options\": {\n \"expiration_time\": \"\"\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 \"expiration_time\": 1\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20535,12 +20535,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"AUTH-STATUS5\",\n \"attributes\": {\n \"ut_963\": \"\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:cf9bcc83-77cb-3ea4-587f-e5f9cbd6ffe9\",\n \"uid\": \"pariatur aliqua sed reprehenderi\",\n \"workflow_id\": \"urn:uuid:d3f47ca8-cfc1-ebfc-7df0-2f47c17c8f6b\",\n \"requester_id\": \"8e9fe412-520d-b37f-e502-d25f191d8c0e\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"4fbac6e8-6867-e4b2-cee4-160a57507cda\",\n \"profile_ids\": [\n \"urn:uuid:1a033c03-8a6f-bec3-ea52-8f8da6581811\",\n \"33ff4b40-9cef-6dbb-c9f9-889c0226eb5e\"\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": "5beba6b7-9692-48da-b470-9fec58ca0206", + "id": "876967c9-9a0e-4af7-b281-358b5ffbfa4a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20575,7 +20575,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Enabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"options\": {\n \"expiration_time\": \"\"\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 \"expiration_time\": 1\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20592,12 +20592,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "329f2566-7d94-4f66-b820-a632714359b8", + "id": "84f26bbc-13a6-4754-9048-5377823750ab", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20632,7 +20632,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"\",\n \"status\": \"Enabled\",\n \"uid\": \"\",\n \"name\": \"\",\n \"options\": {\n \"expiration_time\": \"\"\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 \"expiration_time\": 1\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20649,7 +20649,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20666,7 +20666,7 @@ "description": "", "item": [ { - "id": "7549ade9-1558-4646-bd5b-a88650af1f46", + "id": "f86f8b9f-bc43-444a-be2a-937ac534a255", "name": "Create an approval action", "request": { "name": "Create an approval action", @@ -20698,7 +20698,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20710,7 +20710,7 @@ }, "response": [ { - "id": "cac7f1ae-5b11-41bd-b4c1-c67ec5715ce9", + "id": "cc14924a-6ad6-49da-ba1d-6783fff6a402", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20745,7 +20745,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20762,12 +20762,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3592d650-4376-452f-b18c-67be0b8dc114", + "id": "d8f89a6f-85f5-4252-a0fe-95bc58f7c47a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20802,7 +20802,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20819,12 +20819,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8f3fd04e-c356-4230-b5f7-a2157f5ffa7d", + "id": "ad5315ef-1d91-4e83-aec7-8fb689d42460", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20859,7 +20859,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20876,7 +20876,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20887,7 +20887,7 @@ } }, { - "id": "d40955ef-3334-4dac-b551-c629c1abbc49", + "id": "22517c82-2db2-4a13-82f7-1f5e73e86be0", "name": "Create ask security question action", "request": { "name": "Create ask security question action", @@ -20919,7 +20919,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"number_of_questions\": \"\",\n \"token_expiration\": \"\",\n \"token_expiration_type\": \"login attempts\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user to answer some personal security questions.\",\n \"number_of_questions\": 1,\n \"token_expiration\": 1,\n \"token_expiration_type\": \"days\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20931,7 +20931,7 @@ }, "response": [ { - "id": "a7690d64-ac61-4954-8149-fe9651134581", + "id": "7a1909ea-9697-40b5-bf15-14fe82169c90", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20966,7 +20966,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"number_of_questions\": \"\",\n \"token_expiration\": \"\",\n \"token_expiration_type\": \"login attempts\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user to answer some personal security questions.\",\n \"number_of_questions\": 1,\n \"token_expiration\": 1,\n \"token_expiration_type\": \"days\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20983,12 +20983,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87595c9d-7e81-40a2-ad7d-0ecccfc971c2", + "id": "309e16e0-21af-4e28-beca-521cf01424a0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21023,7 +21023,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"number_of_questions\": \"\",\n \"token_expiration\": \"\",\n \"token_expiration_type\": \"login attempts\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user to answer some personal security questions.\",\n \"number_of_questions\": 1,\n \"token_expiration\": 1,\n \"token_expiration_type\": \"days\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21040,12 +21040,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c73d2cf4-4653-4ea6-b107-64a0cf07ca0c", + "id": "37e8f03d-f17d-4ee5-a2ca-feecf9550ac2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21080,7 +21080,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"number_of_questions\": \"\",\n \"token_expiration\": \"\",\n \"token_expiration_type\": \"login attempts\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user to answer some personal security questions.\",\n \"number_of_questions\": 1,\n \"token_expiration\": 1,\n \"token_expiration_type\": \"days\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21097,7 +21097,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -21108,7 +21108,7 @@ } }, { - "id": "6bbeca71-e9c7-4c33-a126-183ead08a407", + "id": "7b8ba110-d1e9-4c29-9532-bfc9fddbe892", "name": "Create an auto assign action", "request": { "name": "Create an auto assign action", @@ -21140,7 +21140,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"contributor_attr\": \"\"\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Automatically assigns contributors to this profile.\",\n \"archived\": false,\n \"contributor_attr\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21152,7 +21152,7 @@ }, "response": [ { - "id": "a2017ec7-da11-4ecb-a516-0639969491f0", + "id": "b1d7368e-b1ab-4105-9a16-6587ab63390d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21187,7 +21187,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"contributor_attr\": \"\"\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Automatically assigns contributors to this profile.\",\n \"archived\": false,\n \"contributor_attr\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21204,12 +21204,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c7d2008-2863-4740-8911-6097726fe071", + "id": "af3c2aa6-e123-4699-9650-ba636070092f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21244,7 +21244,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"contributor_attr\": \"\"\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Automatically assigns contributors to this profile.\",\n \"archived\": false,\n \"contributor_attr\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21261,12 +21261,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9dcacdac-2c5b-4818-852d-ae6abcbaabb2", + "id": "73842ebc-f8d6-433d-8b07-f856a62d7468", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21301,7 +21301,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"contributor_attr\": \"\"\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Automatically assigns contributors to this profile.\",\n \"archived\": false,\n \"contributor_attr\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21318,7 +21318,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -21329,7 +21329,7 @@ } }, { - "id": "0c53a2f8-0a5d-45d2-b70b-5e28f4fb32e7", + "id": "c3fd20a5-cbc3-4978-804d-08c4aaf124ab", "name": "Create a batch update action", "request": { "name": "Create a batch update action", @@ -21361,7 +21361,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Updates a batch of profiles with all attributes collected during the workflow.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21373,7 +21373,7 @@ }, "response": [ { - "id": "1a4b7800-99fa-4747-b77f-6eb7b427fe16", + "id": "729df08c-3154-49a0-821a-ae3b84e2f978", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21408,7 +21408,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Updates a batch of profiles with all attributes collected during the workflow.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21425,12 +21425,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c5c632db-ba37-4d5e-8a3a-5f88aec93f0c", + "id": "a25d4f03-0c37-4cd5-8b6c-275095154580", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21465,7 +21465,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Updates a batch of profiles with all attributes collected during the workflow.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21482,12 +21482,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "283eff57-ed74-475e-be87-573e23be9430", + "id": "0362ffa9-5194-4428-8e23-ef7698f857d2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21522,7 +21522,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Updates a batch of profiles with all attributes collected during the workflow.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21539,7 +21539,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -21550,7 +21550,7 @@ } }, { - "id": "938a5e4c-f268-409b-93bc-333b03bc40d4", + "id": "4f3fd9a1-299c-4dc5-b4a0-312831961f39", "name": "Create a close session action", "request": { "name": "Create a close session action", @@ -21582,7 +21582,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Closes the current workflow session.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21594,7 +21594,7 @@ }, "response": [ { - "id": "90915262-c8d7-45b5-a39d-a9f3f2d60120", + "id": "d40d5e7d-ba7f-43e8-9494-5d432bc92f20", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21629,7 +21629,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Closes the current workflow session.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21646,12 +21646,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f2eae3d-94d0-4eb9-b39d-3931e6f64193", + "id": "06a7ceaa-7818-4efa-af65-1ca62695ce27", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21686,7 +21686,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Closes the current workflow session.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21703,12 +21703,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c8948a13-f5f0-444e-b8f9-c0e22a9ec3e1", + "id": "1330d761-d5dd-4b03-b494-f1e32a86141a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21743,7 +21743,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Closes the current workflow session.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21760,7 +21760,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -21771,7 +21771,7 @@ } }, { - "id": "9eb9c1d1-d096-4ece-a97c-47471cff500e", + "id": "c9628f47-d922-4228-a50a-e50f14e5d689", "name": "Create a contributors action", "request": { "name": "Create a contributors action", @@ -21803,7 +21803,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"owner\": \"true\",\n \"contributors\": \"true\",\n \"roles\": \"true\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have the requester determine the contributors or owner of the profile.\",\n \"owner\": \"true\",\n \"contributors\": \"true\",\n \"roles\": \"true\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21815,7 +21815,7 @@ }, "response": [ { - "id": "5f0e2a3b-f703-44f2-8225-a0e3d21d9288", + "id": "9a306f99-892c-4f81-b541-53d5719dcf5d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21850,7 +21850,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"owner\": \"true\",\n \"contributors\": \"true\",\n \"roles\": \"true\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have the requester determine the contributors or owner of the profile.\",\n \"owner\": \"true\",\n \"contributors\": \"true\",\n \"roles\": \"true\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21867,12 +21867,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ae5fa3f7-3d65-4cef-99b9-3bac877ba02d", + "id": "facbd21b-431e-491e-92db-4d74ce1fea08", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21907,7 +21907,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"owner\": \"true\",\n \"contributors\": \"true\",\n \"roles\": \"true\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have the requester determine the contributors or owner of the profile.\",\n \"owner\": \"true\",\n \"contributors\": \"true\",\n \"roles\": \"true\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21924,12 +21924,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ee928342-32f4-470e-b323-73e88964cf5c", + "id": "99350ba7-58de-480a-8820-9b68557a1cd3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21964,7 +21964,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"owner\": \"true\",\n \"contributors\": \"true\",\n \"roles\": \"true\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have the requester determine the contributors or owner of the profile.\",\n \"owner\": \"true\",\n \"contributors\": \"true\",\n \"roles\": \"true\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -21981,7 +21981,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -21992,7 +21992,7 @@ } }, { - "id": "2ee17b3e-bae8-4de4-882e-23e5cbcb239d", + "id": "8819e12a-a578-4c36-8f67-77d6a196b312", "name": "Create a create profile action", "request": { "name": "Create a create profile action", @@ -22024,7 +22024,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"add_requester_as_owner\": true,\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Creates a profile with all attributes collected during the workflow.\",\n \"add_requester_as_owner\": true,\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22036,7 +22036,7 @@ }, "response": [ { - "id": "c325df2d-f7f1-483b-b09a-c28115f69f52", + "id": "ab4b0c4b-46ff-4db2-84c2-d2ed9e88add6", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22071,7 +22071,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"add_requester_as_owner\": true,\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Creates a profile with all attributes collected during the workflow.\",\n \"add_requester_as_owner\": true,\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22088,12 +22088,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca70a02e-901d-4911-89da-8b766d52636c", + "id": "d0da83fd-adec-4af2-abad-0d0b2e527c59", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22128,7 +22128,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"add_requester_as_owner\": true,\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Creates a profile with all attributes collected during the workflow.\",\n \"add_requester_as_owner\": true,\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22145,12 +22145,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3726a1d0-7f6e-488a-91dd-cff91f4566e6", + "id": "34cfda7b-af2e-425e-a060-9987ee2722e7", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22185,7 +22185,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"add_requester_as_owner\": true,\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Creates a profile with all attributes collected during the workflow.\",\n \"add_requester_as_owner\": true,\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22202,7 +22202,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -22213,7 +22213,7 @@ } }, { - "id": "38bc6c44-dffd-403f-a16a-f3b2e3d10c25", + "id": "2ca28d78-e764-431e-a6a1-e3e015641d87", "name": "Create a duplicate prevention action", "request": { "name": "Create a duplicate prevention action", @@ -22245,7 +22245,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"search_scope\": \"all\",\n \"ne_attribute_ids\": \"\",\n \"handle_id\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Allows a user to select an already existing profile, or create a new one for the request.\",\n \"search_scope\": \"current\",\n \"ne_attribute_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"handle_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22257,7 +22257,7 @@ }, "response": [ { - "id": "ed559f04-bebb-4bd4-ada8-b23af310b39e", + "id": "d927bf98-ba87-450c-832d-b761d469b97d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22292,7 +22292,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"search_scope\": \"all\",\n \"ne_attribute_ids\": \"\",\n \"handle_id\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Allows a user to select an already existing profile, or create a new one for the request.\",\n \"search_scope\": \"current\",\n \"ne_attribute_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"handle_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22309,12 +22309,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de7ff86d-a3ff-417a-843e-77e8a3cb5035", + "id": "7eebb30c-d2c1-4892-bf65-74a85ed94005", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22349,7 +22349,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"search_scope\": \"all\",\n \"ne_attribute_ids\": \"\",\n \"handle_id\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Allows a user to select an already existing profile, or create a new one for the request.\",\n \"search_scope\": \"current\",\n \"ne_attribute_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"handle_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22366,12 +22366,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "76199643-0f66-4b49-a207-e6ef94f4eb76", + "id": "dbd688e7-904c-4551-b7b1-c830e391298c", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22406,7 +22406,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"search_scope\": \"all\",\n \"ne_attribute_ids\": \"\",\n \"handle_id\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Allows a user to select an already existing profile, or create a new one for the request.\",\n \"search_scope\": \"current\",\n \"ne_attribute_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"handle_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22423,7 +22423,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -22434,7 +22434,7 @@ } }, { - "id": "00513abd-bcc3-4e6c-8a3b-0f2e8d148623", + "id": "c2e8e263-2c92-473e-80f5-ffa4da49c0df", "name": "Create an email verification action", "request": { "name": "Create an email verification action", @@ -22466,7 +22466,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"email_expiration\": \"\",\n \"token_expiration\": \"\",\n \"token_expiration_type\": \"hours\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have the user verify their email address.\",\n \"email_expiration\": 20,\n \"token_expiration\": 1,\n \"token_expiration_type\": \"days\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22478,7 +22478,7 @@ }, "response": [ { - "id": "a7a52ebe-2efa-44dc-b8f0-f4698cd3239c", + "id": "5682944c-e72f-46f8-a7c6-5b68b414dcb8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22513,7 +22513,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"email_expiration\": \"\",\n \"token_expiration\": \"\",\n \"token_expiration_type\": \"hours\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have the user verify their email address.\",\n \"email_expiration\": 20,\n \"token_expiration\": 1,\n \"token_expiration_type\": \"days\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22530,12 +22530,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "369c1ac0-10ac-4d9b-992a-3c011558d1fe", + "id": "b9ca966b-3e2b-4534-a531-1bc660e6c46f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22570,7 +22570,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"email_expiration\": \"\",\n \"token_expiration\": \"\",\n \"token_expiration_type\": \"hours\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have the user verify their email address.\",\n \"email_expiration\": 20,\n \"token_expiration\": 1,\n \"token_expiration_type\": \"days\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22587,12 +22587,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "08931121-6029-435f-803f-1200dbe514dd", + "id": "465e11fd-414d-4528-bc0e-f8fe81a99272", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22627,7 +22627,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"email_expiration\": \"\",\n \"token_expiration\": \"\",\n \"token_expiration_type\": \"hours\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have the user verify their email address.\",\n \"email_expiration\": 20,\n \"token_expiration\": 1,\n \"token_expiration_type\": \"days\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22644,7 +22644,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -22655,7 +22655,7 @@ } }, { - "id": "198ed691-e46e-4c1e-bee7-293adf664167", + "id": "f144d372-5d9b-4fb7-8bc6-f0e85abbb02d", "name": "Create a fulfillment action", "request": { "name": "Create a fulfillment action", @@ -22687,7 +22687,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have another user or group provide information for the profile.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22699,7 +22699,7 @@ }, "response": [ { - "id": "31f83049-e3b7-46c2-a99a-b2bab0e4ae01", + "id": "f4d831c8-b89e-446d-a25e-b7e98f16e98d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22734,7 +22734,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have another user or group provide information for the profile.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22751,12 +22751,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "439b25be-43d8-4dfc-834a-c51764cb9918", + "id": "c7289343-e2c7-46c1-8ce2-250331a3cbcf", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22791,7 +22791,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have another user or group provide information for the profile.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22808,12 +22808,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1e32ace3-a1b9-4b7b-b172-92f4f56420ef", + "id": "f8a13de4-53fb-40d3-b188-f1819b85c7bd", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22848,7 +22848,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have another user or group provide information for the profile.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22865,7 +22865,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -22876,7 +22876,7 @@ } }, { - "id": "4540181c-be26-4490-8045-299c0982b104", + "id": "ce147e46-3395-4aa0-9f36-b87771c0c274", "name": "Create an identity proofing action", "request": { "name": "Create an identity proofing action", @@ -22908,7 +22908,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have the user account associated with this profile validate the identity data.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22920,7 +22920,7 @@ }, "response": [ { - "id": "873c0483-668e-43a7-8e58-eeda97810c52", + "id": "7a2ff0d0-a53f-4f34-87cc-1d0f8abd290f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22955,7 +22955,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have the user account associated with this profile validate the identity data.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -22972,12 +22972,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "43199ea6-537d-4acc-93d4-f5e05dd6f5b5", + "id": "75b6b6c1-e718-481f-a1d7-42ff0dc38e3c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23012,7 +23012,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have the user account associated with this profile validate the identity data.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23029,12 +23029,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a67f9707-8d4c-4232-ba85-702432421576", + "id": "677bcbd9-8c66-4831-886e-c4affa73a4e8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23069,7 +23069,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Have the user account associated with this profile validate the identity data.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23086,7 +23086,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -23097,7 +23097,7 @@ } }, { - "id": "e5e522d9-404f-4296-ab6f-a9ca2d4063a6", + "id": "25598bae-afd8-4705-8cd3-83277df0f38a", "name": "Create an invitation action", "request": { "name": "Create an invitation action", @@ -23129,7 +23129,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"\",\n \"wait_for_completion\": \"\",\n \"return_profile\": \"\",\n \"portal_id\": \"\",\n \"registration_workflow_id\": \"\",\n \"email_attribute_id\": \"\",\n \"validate_completed_registration\": \"\",\n \"validate_open_registration\": \"\"\n },\n \"workflow_action_email_attributes\": {\n \"id\": \"\",\n \"workflow_action_id\": \"\",\n \"email_id\": \"\",\n \"type\": \"PerformerNotificationEmail\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Creates a registration session associated with an email address\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"wait_for_completion\": false,\n \"return_profile\": false,\n \"portal_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"registration_workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"validate_completed_registration\": false,\n \"validate_open_registration\": false\n },\n \"workflow_action_email_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"type\": \"StandardEmail\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23141,7 +23141,7 @@ }, "response": [ { - "id": "867a0515-cadf-44b0-b28f-9dadc4ac8e31", + "id": "94385abf-29df-4a8c-9dc1-357bd498ea23", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23176,7 +23176,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"\",\n \"wait_for_completion\": \"\",\n \"return_profile\": \"\",\n \"portal_id\": \"\",\n \"registration_workflow_id\": \"\",\n \"email_attribute_id\": \"\",\n \"validate_completed_registration\": \"\",\n \"validate_open_registration\": \"\"\n },\n \"workflow_action_email_attributes\": {\n \"id\": \"\",\n \"workflow_action_id\": \"\",\n \"email_id\": \"\",\n \"type\": \"PerformerNotificationEmail\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Creates a registration session associated with an email address\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"wait_for_completion\": false,\n \"return_profile\": false,\n \"portal_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"registration_workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"validate_completed_registration\": false,\n \"validate_open_registration\": false\n },\n \"workflow_action_email_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"type\": \"StandardEmail\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23193,12 +23193,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d0704b6c-58bb-40f0-b58b-2921fa0fc126", + "id": "c0ee85a4-6852-481a-86d3-74f643cadd6a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23233,7 +23233,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"\",\n \"wait_for_completion\": \"\",\n \"return_profile\": \"\",\n \"portal_id\": \"\",\n \"registration_workflow_id\": \"\",\n \"email_attribute_id\": \"\",\n \"validate_completed_registration\": \"\",\n \"validate_open_registration\": \"\"\n },\n \"workflow_action_email_attributes\": {\n \"id\": \"\",\n \"workflow_action_id\": \"\",\n \"email_id\": \"\",\n \"type\": \"PerformerNotificationEmail\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Creates a registration session associated with an email address\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"wait_for_completion\": false,\n \"return_profile\": false,\n \"portal_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"registration_workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"validate_completed_registration\": false,\n \"validate_open_registration\": false\n },\n \"workflow_action_email_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"type\": \"StandardEmail\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23250,12 +23250,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "03c4e66f-0b32-4375-aa62-e788e87c2f8a", + "id": "61237996-b20f-41f3-bc41-3cd493bc2aeb", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23290,7 +23290,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"\",\n \"wait_for_completion\": \"\",\n \"return_profile\": \"\",\n \"portal_id\": \"\",\n \"registration_workflow_id\": \"\",\n \"email_attribute_id\": \"\",\n \"validate_completed_registration\": \"\",\n \"validate_open_registration\": \"\"\n },\n \"workflow_action_email_attributes\": {\n \"id\": \"\",\n \"workflow_action_id\": \"\",\n \"email_id\": \"\",\n \"type\": \"PerformerNotificationEmail\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Creates a registration session associated with an email address\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"wait_for_completion\": false,\n \"return_profile\": false,\n \"portal_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"registration_workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"validate_completed_registration\": false,\n \"validate_open_registration\": false\n },\n \"workflow_action_email_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"type\": \"StandardEmail\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23307,7 +23307,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -23318,7 +23318,7 @@ } }, { - "id": "1c404bbe-c39a-4ea1-8556-950771eb2592", + "id": "f79ead0c-c608-4979-9892-1505ec0b7cd1", "name": "Create a ldap action", "request": { "name": "Create a ldap action", @@ -23350,7 +23350,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"store_type\": \"Directory\",\n \"ldap_action_user_roles_attributes\": {\n \"id\": \"\",\n \"role_id\": \"\"\n },\n \"workflow_action_value_builders_attributes\": {\n \"id\": \"\",\n \"workflow_action_id\": \"\",\n \"value_builder_id\": \"\",\n \"position\": \"\"\n },\n \"workflow_action_directory_groups_attributes\": {\n \"id\": \"\",\n \"directory_id\": \"\",\n \"group_label\": \"\",\n \"group_dn\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Create a Collaboration user account for this profile.\",\n \"archived\": false,\n \"store_type\": \"Local\",\n \"ldap_action_user_roles_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"role_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n \"workflow_action_value_builders_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"value_builder_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"position\": 1\n },\n \"workflow_action_directory_groups_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"directory_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"group_label\": \"Admin\",\n \"group_dn\": \"group\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23362,7 +23362,7 @@ }, "response": [ { - "id": "98fde694-f334-446d-a1b5-82e7343b79a1", + "id": "ded909ae-acb9-463d-a380-64dc9049ef18", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23397,7 +23397,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"store_type\": \"Directory\",\n \"ldap_action_user_roles_attributes\": {\n \"id\": \"\",\n \"role_id\": \"\"\n },\n \"workflow_action_value_builders_attributes\": {\n \"id\": \"\",\n \"workflow_action_id\": \"\",\n \"value_builder_id\": \"\",\n \"position\": \"\"\n },\n \"workflow_action_directory_groups_attributes\": {\n \"id\": \"\",\n \"directory_id\": \"\",\n \"group_label\": \"\",\n \"group_dn\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Create a Collaboration user account for this profile.\",\n \"archived\": false,\n \"store_type\": \"Local\",\n \"ldap_action_user_roles_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"role_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n \"workflow_action_value_builders_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"value_builder_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"position\": 1\n },\n \"workflow_action_directory_groups_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"directory_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"group_label\": \"Admin\",\n \"group_dn\": \"group\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23414,12 +23414,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "049f5d0f-d032-4715-ade8-3f3ac65b06c1", + "id": "f61fcbd5-1d70-46f6-afbd-dd8f25708d83", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23454,7 +23454,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"store_type\": \"Directory\",\n \"ldap_action_user_roles_attributes\": {\n \"id\": \"\",\n \"role_id\": \"\"\n },\n \"workflow_action_value_builders_attributes\": {\n \"id\": \"\",\n \"workflow_action_id\": \"\",\n \"value_builder_id\": \"\",\n \"position\": \"\"\n },\n \"workflow_action_directory_groups_attributes\": {\n \"id\": \"\",\n \"directory_id\": \"\",\n \"group_label\": \"\",\n \"group_dn\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Create a Collaboration user account for this profile.\",\n \"archived\": false,\n \"store_type\": \"Local\",\n \"ldap_action_user_roles_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"role_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n \"workflow_action_value_builders_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"value_builder_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"position\": 1\n },\n \"workflow_action_directory_groups_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"directory_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"group_label\": \"Admin\",\n \"group_dn\": \"group\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23471,12 +23471,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ee8ff3a1-af88-4df3-ab42-3fd1a9d66847", + "id": "62e73d2c-84c0-4000-a607-147ecb6354cb", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23511,7 +23511,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"store_type\": \"Directory\",\n \"ldap_action_user_roles_attributes\": {\n \"id\": \"\",\n \"role_id\": \"\"\n },\n \"workflow_action_value_builders_attributes\": {\n \"id\": \"\",\n \"workflow_action_id\": \"\",\n \"value_builder_id\": \"\",\n \"position\": \"\"\n },\n \"workflow_action_directory_groups_attributes\": {\n \"id\": \"\",\n \"directory_id\": \"\",\n \"group_label\": \"\",\n \"group_dn\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Create a Collaboration user account for this profile.\",\n \"archived\": false,\n \"store_type\": \"Local\",\n \"ldap_action_user_roles_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"role_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n \"workflow_action_value_builders_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"value_builder_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"position\": 1\n },\n \"workflow_action_directory_groups_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"directory_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"group_label\": \"Admin\",\n \"group_dn\": \"group\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23528,7 +23528,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -23539,7 +23539,7 @@ } }, { - "id": "d3bc2877-0923-44f4-9590-d13600af4a1a", + "id": "e556506e-d502-44a6-b634-b783bac9b43f", "name": "Create a notification action", "request": { "name": "Create a notification action", @@ -23571,7 +23571,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"archived\": false,\n \"workflow_action_email_attributes\": {\n \"id\": \"\",\n \"workflow_action_id\": \"\",\n \"email_id\": \"\",\n \"type\": \"StandardEmail\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Send a notification to a group of users.\",\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"archived\": false,\n \"workflow_action_email_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"type\": \"StandardEmail\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23583,7 +23583,7 @@ }, "response": [ { - "id": "20aadb5a-b3ee-4b80-89f2-2286b709e6b4", + "id": "c1362c15-ad40-471d-a3cb-1b0503a97240", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23618,7 +23618,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"archived\": false,\n \"workflow_action_email_attributes\": {\n \"id\": \"\",\n \"workflow_action_id\": \"\",\n \"email_id\": \"\",\n \"type\": \"StandardEmail\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Send a notification to a group of users.\",\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"archived\": false,\n \"workflow_action_email_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"type\": \"StandardEmail\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23635,12 +23635,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "da7da96c-6b4b-41b7-9c99-4dda75f7956f", + "id": "de546406-6f16-4a72-b5a3-a94aecd7289e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23675,7 +23675,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"archived\": false,\n \"workflow_action_email_attributes\": {\n \"id\": \"\",\n \"workflow_action_id\": \"\",\n \"email_id\": \"\",\n \"type\": \"StandardEmail\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Send a notification to a group of users.\",\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"archived\": false,\n \"workflow_action_email_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"type\": \"StandardEmail\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23692,12 +23692,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3bf4a787-5fb1-453c-9c1b-b701d1efe039", + "id": "6a130c43-47b6-42fe-8d15-87fa827d9794", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23732,7 +23732,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"archived\": false,\n \"workflow_action_email_attributes\": {\n \"id\": \"\",\n \"workflow_action_id\": \"\",\n \"email_id\": \"\",\n \"type\": \"StandardEmail\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Send a notification to a group of users.\",\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"archived\": false,\n \"workflow_action_email_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"type\": \"StandardEmail\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23749,7 +23749,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -23760,7 +23760,7 @@ } }, { - "id": "ed3ddcb8-a6b0-4369-9c6a-9a113761e10d", + "id": "22477948-73ab-4c08-b6c2-476cb0969cb4", "name": "Create a password reset action", "request": { "name": "Create a password reset action", @@ -23792,7 +23792,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user to reset their password.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23804,7 +23804,7 @@ }, "response": [ { - "id": "ee7604d8-0135-4b62-97eb-375b7993cf2c", + "id": "849c4234-0b84-41d8-9df3-c01ce70dd7e5", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23839,7 +23839,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user to reset their password.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23856,12 +23856,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c5e7c151-787a-474c-bd3e-f0c618a7603e", + "id": "be4a1a00-ba69-4e7a-b768-356534402c9f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23896,7 +23896,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user to reset their password.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23913,12 +23913,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5b8f67c-e1f5-448a-af21-6f816dd00ca8", + "id": "30bb32c5-c153-4761-b264-b04ffc3fb71f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23953,7 +23953,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user to reset their password.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -23970,7 +23970,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -23981,7 +23981,7 @@ } }, { - "id": "663bcf4a-3daf-404e-a77e-1f4b5e6906a0", + "id": "604e6880-2719-4ac8-a43e-afebeccf2b49", "name": "Create a profile check action", "request": { "name": "Create a profile check action", @@ -24013,7 +24013,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"ne_attribute_ids\": \"\",\n \"handle_type\": \"attribute\",\n \"handle_id\": \"\"\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Finds a profile based on selected attributes and values found in the session.\",\n \"archived\": false,\n \"ne_attribute_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"handle_type\": \"session\",\n \"handle_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24025,7 +24025,7 @@ }, "response": [ { - "id": "5b249d72-740f-4923-aae2-f8399fb892c2", + "id": "781bc856-1167-45b5-89e8-99682a9b953c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24060,7 +24060,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"ne_attribute_ids\": \"\",\n \"handle_type\": \"attribute\",\n \"handle_id\": \"\"\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Finds a profile based on selected attributes and values found in the session.\",\n \"archived\": false,\n \"ne_attribute_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"handle_type\": \"session\",\n \"handle_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24077,12 +24077,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1f1e2675-a2e2-47be-8589-04f375f68684", + "id": "77657aff-52dd-4f78-bc61-b02f9cd8febf", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24117,7 +24117,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"ne_attribute_ids\": \"\",\n \"handle_type\": \"attribute\",\n \"handle_id\": \"\"\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Finds a profile based on selected attributes and values found in the session.\",\n \"archived\": false,\n \"ne_attribute_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"handle_type\": \"session\",\n \"handle_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24134,12 +24134,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8a84830d-ee4d-428e-88b0-9f087e1c6cec", + "id": "5d709372-9c38-4294-8585-3653d5df74df", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24174,7 +24174,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"ne_attribute_ids\": \"\",\n \"handle_type\": \"attribute\",\n \"handle_id\": \"\"\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Finds a profile based on selected attributes and values found in the session.\",\n \"archived\": false,\n \"ne_attribute_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"handle_type\": \"session\",\n \"handle_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24191,7 +24191,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -24202,7 +24202,7 @@ } }, { - "id": "36c1a638-591e-47fe-85ed-483b77251875", + "id": "ae1af2bf-b015-4d7a-9290-9af9c2fecbc4", "name": "Create a profile select action", "request": { "name": "Create a profile select action", @@ -24234,7 +24234,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Select the profiles that you want to run this workflow for.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24246,7 +24246,7 @@ }, "response": [ { - "id": "760af0f8-2728-4fe2-bc2a-52c5cedc91ed", + "id": "b9e5e002-e3f1-4f6b-b72d-d4489d29146c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24281,7 +24281,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Select the profiles that you want to run this workflow for.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24298,12 +24298,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f5e9b8b7-80c6-4ee5-bc4a-11d4de37b69d", + "id": "ca49c423-d910-44fc-a83f-fb2de391c8f0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24338,7 +24338,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Select the profiles that you want to run this workflow for.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24355,12 +24355,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "11480f97-9e24-4bcc-951b-461e5c1a74b4", + "id": "57e02696-c751-423a-bf74-09b0ed3ecfb1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24395,7 +24395,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Select the profiles that you want to run this workflow for.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24412,7 +24412,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -24423,7 +24423,7 @@ } }, { - "id": "bcd2a55b-8478-42bc-949d-b2cf90ccf0e4", + "id": "a55062f4-3ec2-4bae-8a5e-cf51fc6f33bf", "name": "Create a request action", "request": { "name": "Create a request action", @@ -24455,7 +24455,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Provides the requester a page with forms.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24467,7 +24467,7 @@ }, "response": [ { - "id": "718cae8c-a61d-4845-b519-1d6dce92e777", + "id": "d2b16515-b828-4df3-b9f9-45d4b46b0842", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24502,7 +24502,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Provides the requester a page with forms.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24519,12 +24519,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1e4e656b-3508-4088-83ab-f14fc4d548b4", + "id": "9e9551ff-f42b-4986-8027-236dad69cdba", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24559,7 +24559,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Provides the requester a page with forms.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24576,12 +24576,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de261a7f-85d9-4a44-8090-7d8e1667887c", + "id": "30e1f31e-8e0f-48b8-afe2-83d5865700d8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24616,7 +24616,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Provides the requester a page with forms.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24633,7 +24633,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -24644,7 +24644,7 @@ } }, { - "id": "74303f80-81a4-4357-8daf-b08083c6c601", + "id": "29dbf256-e9e4-4f22-976e-e3cba5257025", "name": "Create a REST API action", "request": { "name": "Create a REST API action", @@ -24676,7 +24676,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Makes a request to a Restful API.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24688,7 +24688,7 @@ }, "response": [ { - "id": "e4564105-99c7-4ba8-8f7a-5100d77a7df0", + "id": "0d646222-f902-4f85-8bc3-e9146cdc6583", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24723,7 +24723,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Makes a request to a Restful API.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24740,12 +24740,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "88f5e294-2440-449b-bcfb-e32b9dc09989", + "id": "b0f0aff1-9dd3-4854-90a2-c781e1bbd767", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24780,7 +24780,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Makes a request to a Restful API.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24797,12 +24797,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b28caaa0-cad2-4920-b012-98e3ecda9dd1", + "id": "bbe36fb7-82b5-4bfb-b9bc-e090277e09b3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24837,7 +24837,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Makes a request to a Restful API.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24854,7 +24854,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -24865,7 +24865,7 @@ } }, { - "id": "5f626468-c358-4405-a224-b913e462753f", + "id": "a5d407ac-0567-411a-974f-3eee380d7e46", "name": "Create a review action", "request": { "name": "Create a review action", @@ -24897,7 +24897,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Allows the requester to review.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24909,7 +24909,7 @@ }, "response": [ { - "id": "894c3395-05af-4fe7-b0d8-a11e3f6d6180", + "id": "d0eb4782-9949-4c34-b131-c40b2e6b56da", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24944,7 +24944,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Allows the requester to review.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -24961,12 +24961,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "60f58ac1-c865-4d94-978f-83507a7b7a20", + "id": "0e6f5e98-9dec-404d-a699-babc4f78c2ea", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25001,7 +25001,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Allows the requester to review.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25018,12 +25018,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eca9c30d-bee8-4cc3-8a63-309858689d08", + "id": "afd1e47b-4f5e-44d8-b5ab-7883ba922bd9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25058,7 +25058,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Allows the requester to review.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"archived\": false,\n \"requires_comment\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25075,7 +25075,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -25086,7 +25086,7 @@ } }, { - "id": "ec15d8b7-7d2a-46f2-90ef-2bdbbcd5ff02", + "id": "83cac2dd-5492-45db-ad9b-7c11773e371b", "name": "Create a run workflow action", "request": { "name": "Create a run workflow action", @@ -25118,7 +25118,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"\",\n \"workflow_id\": \"\",\n \"wait_for_completion\": \"\",\n \"profile_to_send\": \"current\",\n \"return_profile\": \"\",\n \"run_workflow_action_id\": \"\",\n \"profile_type_id\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Runs another workflow with the ability to pass data in between.\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"wait_for_completion\": false,\n \"profile_to_send\": \"current\",\n \"return_profile\": false,\n \"run_workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25130,7 +25130,7 @@ }, "response": [ { - "id": "5998dc33-aaae-4dcc-a59a-7290380cd279", + "id": "e7d16b1c-72b9-495c-aa9c-ff3f678fd18e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25165,7 +25165,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"\",\n \"workflow_id\": \"\",\n \"wait_for_completion\": \"\",\n \"profile_to_send\": \"current\",\n \"return_profile\": \"\",\n \"run_workflow_action_id\": \"\",\n \"profile_type_id\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Runs another workflow with the ability to pass data in between.\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"wait_for_completion\": false,\n \"profile_to_send\": \"current\",\n \"return_profile\": false,\n \"run_workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25182,12 +25182,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cafbbefe-0ac5-428a-9193-f5b4b4216caa", + "id": "1db64c64-2768-4b99-bf91-f441615bb26b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25222,7 +25222,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"\",\n \"workflow_id\": \"\",\n \"wait_for_completion\": \"\",\n \"profile_to_send\": \"current\",\n \"return_profile\": \"\",\n \"run_workflow_action_id\": \"\",\n \"profile_type_id\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Runs another workflow with the ability to pass data in between.\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"wait_for_completion\": false,\n \"profile_to_send\": \"current\",\n \"return_profile\": false,\n \"run_workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25239,12 +25239,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df44ea66-0424-4382-9bad-316b575d9a2a", + "id": "bab6c3bc-2802-40c8-aee6-af25c3c63efb", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25279,7 +25279,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"\",\n \"workflow_id\": \"\",\n \"wait_for_completion\": \"\",\n \"profile_to_send\": \"current\",\n \"return_profile\": \"\",\n \"run_workflow_action_id\": \"\",\n \"profile_type_id\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Runs another workflow with the ability to pass data in between.\",\n \"archived\": false,\n \"configuration_attributes\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"wait_for_completion\": false,\n \"profile_to_send\": \"current\",\n \"return_profile\": false,\n \"run_workflow_action_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25296,7 +25296,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -25307,7 +25307,7 @@ } }, { - "id": "330c7244-c1e2-47f0-aa37-bdb4fab849ca", + "id": "79716804-f63a-48c4-967c-d6181eb025ef", "name": "Create a set attributes action", "request": { "name": "Create a set attributes action", @@ -25339,7 +25339,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Set attribute(s) to a specific value.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25351,7 +25351,7 @@ }, "response": [ { - "id": "38ad4cd7-0597-4561-8449-79b994c5267d", + "id": "76ec6787-8517-4859-be3c-516d01eb1530", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25386,7 +25386,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Set attribute(s) to a specific value.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25403,12 +25403,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5f26faaf-b9b0-4a2f-a68f-8729b2882f5d", + "id": "dcff9f17-fd6d-4811-95aa-5fdacb68c0f5", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25443,7 +25443,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Set attribute(s) to a specific value.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25460,12 +25460,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9e36f93b-9f07-4e88-902c-9fc7ae11cec9", + "id": "02ccd5b6-8523-4efd-a07b-892748f6827b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25500,7 +25500,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Set attribute(s) to a specific value.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25517,7 +25517,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -25528,7 +25528,7 @@ } }, { - "id": "08dc26e2-5ae5-46a9-896a-a56b64294fc3", + "id": "f65cf1fd-fa5d-43b6-92d9-409379799e60", "name": "Create set security question action", "request": { "name": "Create set security question action", @@ -25560,7 +25560,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"number_of_questions\": \"\"\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user to provide some personal security questions and answers.\",\n \"archived\": false,\n \"number_of_questions\": 1\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25572,7 +25572,7 @@ }, "response": [ { - "id": "14baebf4-967e-412c-bf16-9429224d07d7", + "id": "7c2563dd-facb-4874-acd1-df68fe1e947e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25607,7 +25607,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"number_of_questions\": \"\"\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user to provide some personal security questions and answers.\",\n \"archived\": false,\n \"number_of_questions\": 1\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25624,12 +25624,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "454084b2-d79a-4b07-81fa-fb742744228e", + "id": "92120ff1-90a7-455f-b30e-f58e69114541", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25664,7 +25664,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"number_of_questions\": \"\"\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user to provide some personal security questions and answers.\",\n \"archived\": false,\n \"number_of_questions\": 1\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25681,12 +25681,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "da6bddc2-51b1-4be4-9fa0-65a370de27f7", + "id": "f29a4ac0-049d-420e-947b-485cd7e1d6d5", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25721,7 +25721,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false,\n \"number_of_questions\": \"\"\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user to provide some personal security questions and answers.\",\n \"archived\": false,\n \"number_of_questions\": 1\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25738,7 +25738,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -25749,7 +25749,7 @@ } }, { - "id": "76c46c6c-735e-4396-ba4a-6044600cd367", + "id": "b18edc5d-be99-4692-8a29-de4c4e9ad76b", "name": "Create a SOAP API action", "request": { "name": "Create a SOAP API action", @@ -25781,7 +25781,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Makes a request to a SOAP API.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25793,7 +25793,7 @@ }, "response": [ { - "id": "5fb343a2-817d-473f-b2e5-ecb4f0eb6c95", + "id": "7d8cdf17-bfc7-411d-848e-9e9c0c729fab", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25828,7 +25828,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Makes a request to a SOAP API.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25845,12 +25845,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "63b585c0-168b-4703-9814-646d16aba1fe", + "id": "e6e735b3-125a-4f8a-99b7-cdf50e1b71f5", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25885,7 +25885,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Makes a request to a SOAP API.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25902,12 +25902,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca090bcc-1c65-477a-81bd-c720c77ec309", + "id": "63dd48ad-f577-4d14-9f20-d9815e8c7159", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25942,7 +25942,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Makes a request to a SOAP API.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -25959,7 +25959,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -25970,7 +25970,7 @@ } }, { - "id": "fadeb2ba-b1aa-44e8-ad21-bb57b9a2f408", + "id": "21686b74-4a72-4371-8caf-87138c98729b", "name": "Create a status change action", "request": { "name": "Create a status change action", @@ -26002,7 +26002,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"new_status\": \"On Leave\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Changes the status of a non-employee.\",\n \"new_status\": \"Active\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26014,7 +26014,7 @@ }, "response": [ { - "id": "fb107657-b82c-45c2-861a-7e5ff2cf78fa", + "id": "1677d405-5c68-4a9d-99c2-5e0c927b5424", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26049,7 +26049,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"new_status\": \"On Leave\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Changes the status of a non-employee.\",\n \"new_status\": \"Active\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26066,12 +26066,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3d1ac801-91d7-456a-8790-9f5d5aa92312", + "id": "752bf3bf-5633-4a6a-969f-b0e59500d7d2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26106,7 +26106,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"new_status\": \"On Leave\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Changes the status of a non-employee.\",\n \"new_status\": \"Active\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26123,12 +26123,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35b3bca0-bcb5-4ae1-ac5e-cdd2680311a3", + "id": "b1667772-8a6c-4c1b-98eb-4c91ca8fb624", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26163,7 +26163,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"new_status\": \"On Leave\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Changes the status of a non-employee.\",\n \"new_status\": \"Active\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26180,7 +26180,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -26191,7 +26191,7 @@ } }, { - "id": "f5a6941e-cfe2-4b1c-b8ab-fdc3446b6551", + "id": "361b7466-d52b-4576-b26b-3a252ea80829", "name": "Create an unassign action", "request": { "name": "Create an unassign action", @@ -26223,7 +26223,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Un-assigns roles from a profile.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26235,7 +26235,7 @@ }, "response": [ { - "id": "d9aebbd5-0a83-4bae-a389-62e8f489397d", + "id": "2f64124a-f508-4f07-a584-2cef0f728bd9", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26270,7 +26270,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Un-assigns roles from a profile.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26287,12 +26287,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dcb160a2-a492-470a-9c77-d00f019f800d", + "id": "81d79435-0034-4c66-9680-27306b554bd6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26327,7 +26327,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Un-assigns roles from a profile.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26344,12 +26344,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ffc5e0b6-6a82-412e-b43f-0f1cbc7c723e", + "id": "dab83ab6-cdc6-4113-a11a-b40ecdd0c5c9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26384,7 +26384,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Un-assigns roles from a profile.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26401,7 +26401,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -26412,7 +26412,7 @@ } }, { - "id": "aa973cd0-d41d-496e-9190-c7cb637c41a3", + "id": "b2ab99e9-5125-4b67-b753-a4c00bc9f0a0", "name": "Create an update profile action", "request": { "name": "Create an update profile action", @@ -26444,7 +26444,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Updates a profile with all attributes collected during the workflow.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26456,7 +26456,7 @@ }, "response": [ { - "id": "1f209663-596e-4e78-a8ad-bda5ee065528", + "id": "52ded6b1-5733-4971-bb33-c7041ac64443", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26491,7 +26491,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Updates a profile with all attributes collected during the workflow.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26508,12 +26508,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "01ad5737-79c9-4a75-85fd-9eaeb43665bf", + "id": "478952ca-12b5-4b1e-80b4-5aa81b593880", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26548,7 +26548,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Updates a profile with all attributes collected during the workflow.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26565,12 +26565,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d74aa9b-d0d5-4b8a-8244-43cbf1e9007f", + "id": "820ec28f-8121-4b69-9138-4f62e464812f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26605,7 +26605,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Updates a profile with all attributes collected during the workflow.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26622,7 +26622,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -26633,7 +26633,7 @@ } }, { - "id": "c64ce6c8-6c71-485e-8683-05dd57fb1151", + "id": "075cb555-c821-4f14-9231-79dc8cc9e097", "name": "Create a username password action", "request": { "name": "Create a username password action", @@ -26665,7 +26665,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user for their username and password.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26677,7 +26677,7 @@ }, "response": [ { - "id": "2b9b4ee5-1cf6-43a3-8925-2ef38ec50b47", + "id": "bec4022e-d6a3-4224-aa5d-304cce3bf8c8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26712,7 +26712,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user for their username and password.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26729,12 +26729,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "131de97a-39e0-46b0-acd0-5d77b7ad604e", + "id": "4ffe434c-abe5-4834-9540-2393fb1b32f3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26769,7 +26769,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user for their username and password.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26786,12 +26786,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ba8b0307-7f15-4b50-bd55-c060a7bc4b01", + "id": "f252303f-b75d-4656-bffc-8daef0fb6fed", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26826,7 +26826,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"archived\": false\n }\n}", + "raw": "{\n \"workflow_action\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Prompt the user for their username and password.\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -26843,7 +26843,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -26854,7 +26854,7 @@ } }, { - "id": "0fd33d26-5dcc-4da5-80b1-fefb94743a8f", + "id": "e81d2656-6029-494c-b449-4de61686dbb0", "name": "Get Workflow Actions", "request": { "name": "Get Workflow Actions", @@ -26877,7 +26877,7 @@ "type": "text/plain" }, "key": "workflow_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" } ], "variable": [] @@ -26894,7 +26894,7 @@ }, "response": [ { - "id": "61bbfc92-01c6-4093-a972-7e533c52c3f1", + "id": "f6a555fb-dbd4-4c55-8180-43f7db3f7172", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26912,7 +26912,7 @@ "type": "text/plain" }, "key": "workflow_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" } ], "variable": [] @@ -26942,12 +26942,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_actions\": {\n \"workflow_id\": \"\",\n \"description\": \"\",\n \"page_id\": \"\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"\",\n \"email_addresses\": [\n \"\",\n \"\"\n ],\n \"new_status\": \"\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", + "body": "{\n \"workflow_actions\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"description\": \"Require approval from another user or a group of users with a specific role.\",\n \"page_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"add_requester_as_owner\": true,\n \"email_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"email_addresses\": [\n \"johndoe@gmail.com\",\n \"janedoe@gmail.com\"\n ],\n \"new_status\": \"Active, Inactive, On Leave, Terminated\",\n \"archived\": false,\n \"skippable\": false,\n \"requires_comment\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b663224-6c76-4cce-8469-623a5781ec74", + "id": "e71df46c-c03b-4bbc-adbb-18928d7663fc", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26965,7 +26965,7 @@ "type": "text/plain" }, "key": "workflow_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" } ], "variable": [] @@ -26995,12 +26995,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "41f01d1f-bb5f-49fb-9b9b-d1083da9ce34", + "id": "595caa6b-7f9a-43eb-bec8-f336b77ac54f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27018,7 +27018,7 @@ "type": "text/plain" }, "key": "workflow_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" } ], "variable": [] @@ -27048,7 +27048,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -27065,7 +27065,7 @@ "description": "", "item": [ { - "id": "0cb14eeb-c502-405d-8bc6-1c0413400cab", + "id": "784fad4c-8fe5-4232-8cdc-23397800bf30", "name": "Get workflow sessions", "request": { "name": "Get workflow sessions", @@ -27088,7 +27088,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -27097,7 +27097,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -27106,7 +27106,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -27115,7 +27115,7 @@ "type": "text/plain" }, "key": "profile_id", - "value": "" + "value": "4e480441-451d-47d9-87c2-9a0f0fe135eb" }, { "disabled": false, @@ -27124,7 +27124,7 @@ "type": "text/plain" }, "key": "uid", - "value": "" + "value": "minim elit ut eiusmodestLorem no" }, { "disabled": false, @@ -27133,7 +27133,7 @@ "type": "text/plain" }, "key": "workflow_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -27142,7 +27142,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -27151,7 +27151,7 @@ "type": "text/plain" }, "key": "status", - "value": "pending review" + "value": "approved" }, { "disabled": false, @@ -27160,7 +27160,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -27177,7 +27177,7 @@ }, "response": [ { - "id": "eae3e277-bc96-4654-949a-b542410ad20f", + "id": "ee91c6e4-2bb8-4311-b127-3a819f6a4a93", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27195,7 +27195,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -27204,7 +27204,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -27213,7 +27213,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -27222,7 +27222,7 @@ "type": "text/plain" }, "key": "profile_id", - "value": "" + "value": "4e480441-451d-47d9-87c2-9a0f0fe135eb" }, { "disabled": false, @@ -27231,7 +27231,7 @@ "type": "text/plain" }, "key": "uid", - "value": "" + "value": "minim elit ut eiusmodestLorem no" }, { "disabled": false, @@ -27240,7 +27240,7 @@ "type": "text/plain" }, "key": "workflow_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -27249,7 +27249,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -27258,7 +27258,7 @@ "type": "text/plain" }, "key": "status", - "value": "pending review" + "value": "approved" }, { "disabled": false, @@ -27267,7 +27267,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -27297,12 +27297,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_sessions\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"courion_terminate\",\n \"attributes\": {\n \"qui00\": \"\",\n \"Excepteur30_\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"User\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"notified\",\n \"attributes\": {\n \"exercitation_3\": \"\"\n }\n }\n ],\n \"_metadata\": {\n \"limit\": \"\",\n \"offset\": \"\",\n \"total\": \"\",\n \"next\": \"\",\n \"previous\": \"\"\n }\n}", + "body": "{\n \"workflow_sessions\": [\n {\n \"id\": \"urn:uuid:b44044ab-567e-af32-7cbc-71f87ef7d1b6\",\n \"uid\": \"proident dolore aliqua animnostr\",\n \"workflow_id\": \"9192f247-5077-122d-1e7c-9623c9ec1e9e\",\n \"requester_id\": \"urn:uuid:e0c9b34f-05d3-68e1-ced5-07a40db5946e\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:11ab098f-abbc-f55a-4e05-4b463b66006c\",\n \"profile_ids\": [\n \"d9c8bd92-4f4a-7d7c-a3ef-cc49a97b235c\",\n \"urn:uuid:c570d942-f7bd-a217-73c8-01fd68df7e21\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:035db93b-7a0f-576d-c954-7ba342147a0a\",\n \"uid\": \"exercitationconsequat sit ullamc\",\n \"workflow_id\": \"c8af7a01-0494-d8f7-cfef-92e0fb158ad0\",\n \"requester_id\": \"urn:uuid:9fa58080-d2a7-129a-a8f3-da28afd7ec47\",\n \"requester_type\": \"User\",\n \"profile_id\": \"9d212284-a77b-e0f4-9fb8-ab2695bee0f0\",\n \"profile_ids\": [\n \"16356790-264f-4282-32d6-cf2c7e2acb98\",\n \"10da8993-c892-8839-39aa-f49c2b87046d\"\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\": -98179790,\n \"offset\": -96749988,\n \"total\": -30411939,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cd115f01-26d1-4bfc-b6cc-1fabd87deb65", + "id": "db2892fd-13dd-4f77-991c-ff5875704bdd", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27320,7 +27320,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -27329,7 +27329,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -27338,7 +27338,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -27347,7 +27347,7 @@ "type": "text/plain" }, "key": "profile_id", - "value": "" + "value": "4e480441-451d-47d9-87c2-9a0f0fe135eb" }, { "disabled": false, @@ -27356,7 +27356,7 @@ "type": "text/plain" }, "key": "uid", - "value": "" + "value": "minim elit ut eiusmodestLorem no" }, { "disabled": false, @@ -27365,7 +27365,7 @@ "type": "text/plain" }, "key": "workflow_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -27374,7 +27374,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -27383,7 +27383,7 @@ "type": "text/plain" }, "key": "status", - "value": "pending review" + "value": "approved" }, { "disabled": false, @@ -27392,7 +27392,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -27422,12 +27422,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d25aef0f-781b-4ada-9b9b-62037bc8ca75", + "id": "986cedd4-1222-4794-8a8a-d0e6e750294b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27445,7 +27445,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -27454,7 +27454,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -27463,7 +27463,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -27472,7 +27472,7 @@ "type": "text/plain" }, "key": "profile_id", - "value": "" + "value": "4e480441-451d-47d9-87c2-9a0f0fe135eb" }, { "disabled": false, @@ -27481,7 +27481,7 @@ "type": "text/plain" }, "key": "uid", - "value": "" + "value": "minim elit ut eiusmodestLorem no" }, { "disabled": false, @@ -27490,7 +27490,7 @@ "type": "text/plain" }, "key": "workflow_id", - "value": "" + "value": "bba9cfb2-96c1-4acb-ac79-a21732527265" }, { "disabled": false, @@ -27499,7 +27499,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -27508,7 +27508,7 @@ "type": "text/plain" }, "key": "status", - "value": "pending review" + "value": "approved" }, { "disabled": false, @@ -27517,7 +27517,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -27547,7 +27547,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -27558,7 +27558,7 @@ } }, { - "id": "280e17ea-6782-4322-9aab-465708fe810d", + "id": "f29dd973-4738-47da-9f42-740129a9b10e", "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\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"attributes\": {\n \"pariatur_9a1\": \"\",\n \"enim08\": \"\",\n \"non26\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:81548700-2e85-9adf-a158-21e6795fd6b5\",\n \"requester_id\": \"urn:uuid:2a5b4639-d6cb-9e53-31e0-4568ae05dfbe\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"1dc77a6a-930c-22ea-f82a-ff22ba42583b\",\n \"profile_ids\": [\n \"urn:uuid:b07d5fc9-2e8d-d088-8e26-45e485f856a5\",\n \"1c9947a6-0f5e-25a2-421c-b7266589e2f0\"\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": "405aa732-c4ac-44d7-9c15-8e8dc2e30e7f", + "id": "15c77e9b-8821-4211-9f43-244166fbc5cd", "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\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"attributes\": {\n \"pariatur_9a1\": \"\",\n \"enim08\": \"\",\n \"non26\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:81548700-2e85-9adf-a158-21e6795fd6b5\",\n \"requester_id\": \"urn:uuid:2a5b4639-d6cb-9e53-31e0-4568ae05dfbe\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"1dc77a6a-930c-22ea-f82a-ff22ba42583b\",\n \"profile_ids\": [\n \"urn:uuid:b07d5fc9-2e8d-d088-8e26-45e485f856a5\",\n \"1c9947a6-0f5e-25a2-421c-b7266589e2f0\"\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\": \"\",\n \"uid\": \"\",\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"User\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"failed\",\n \"attributes\": {\n \"eiusmod646\": \"\",\n \"eiusmod6\": \"\"\n }\n }\n}", + "body": "{\n \"workflow_session\": {\n \"id\": \"0dcc5747-7252-3636-b9d3-592a15774c6b\",\n \"uid\": \"Lorem in ea eucommodo est exerci\",\n \"workflow_id\": \"urn:uuid:fbd7ee34-4e3c-8b29-b0f3-91ff49ff7472\",\n \"requester_id\": \"caba8661-f099-9fff-49a7-797560b3e2c1\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:e64778d7-0c92-426f-76bf-ecefdd14da47\",\n \"profile_ids\": [\n \"1acb66d5-1565-eff8-128e-6cbfb5ecbe8f\",\n \"f7886436-2276-d229-e517-1eacd40133ce\"\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": "2a88168f-58c7-43d3-a3c4-6b819dd4bae0", + "id": "6a136405-b0fb-475e-be66-dacfdef23147", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27721,7 +27721,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"attributes\": {\n \"pariatur_9a1\": \"\",\n \"enim08\": \"\",\n \"non26\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:81548700-2e85-9adf-a158-21e6795fd6b5\",\n \"requester_id\": \"urn:uuid:2a5b4639-d6cb-9e53-31e0-4568ae05dfbe\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"1dc77a6a-930c-22ea-f82a-ff22ba42583b\",\n \"profile_ids\": [\n \"urn:uuid:b07d5fc9-2e8d-d088-8e26-45e485f856a5\",\n \"1c9947a6-0f5e-25a2-421c-b7266589e2f0\"\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", @@ -27738,12 +27738,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "531ec1f6-ec54-4b76-976d-7651b0fa4869", + "id": "97a0871d-f508-430e-963e-eb8225c54f62", "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\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"attributes\": {\n \"pariatur_9a1\": \"\",\n \"enim08\": \"\",\n \"non26\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:81548700-2e85-9adf-a158-21e6795fd6b5\",\n \"requester_id\": \"urn:uuid:2a5b4639-d6cb-9e53-31e0-4568ae05dfbe\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"1dc77a6a-930c-22ea-f82a-ff22ba42583b\",\n \"profile_ids\": [\n \"urn:uuid:b07d5fc9-2e8d-d088-8e26-45e485f856a5\",\n \"1c9947a6-0f5e-25a2-421c-b7266589e2f0\"\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", @@ -27804,7 +27804,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -27815,7 +27815,7 @@ } }, { - "id": "483ce83a-56e2-4251-8de5-719fe3184c8d", + "id": "56d70f9d-ffce-4284-b853-f3b976a8871d", "name": "Find workflow session by id", "request": { "name": "Find workflow session by id", @@ -27835,7 +27835,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -27857,7 +27857,7 @@ }, "response": [ { - "id": "0bb956a6-882e-463c-b4d3-a3b8d01cf993", + "id": "827eb02e-46bf-4b84-9989-fc3c039992ff", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27896,12 +27896,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"User\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"failed\",\n \"attributes\": {\n \"eiusmod646\": \"\",\n \"eiusmod6\": \"\"\n }\n }\n}", + "body": "{\n \"workflow_session\": {\n \"id\": \"0dcc5747-7252-3636-b9d3-592a15774c6b\",\n \"uid\": \"Lorem in ea eucommodo est exerci\",\n \"workflow_id\": \"urn:uuid:fbd7ee34-4e3c-8b29-b0f3-91ff49ff7472\",\n \"requester_id\": \"caba8661-f099-9fff-49a7-797560b3e2c1\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:e64778d7-0c92-426f-76bf-ecefdd14da47\",\n \"profile_ids\": [\n \"1acb66d5-1565-eff8-128e-6cbfb5ecbe8f\",\n \"f7886436-2276-d229-e517-1eacd40133ce\"\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": "42fa967c-9d6b-408f-a4f6-b6b78fef9a50", + "id": "a8f9ea87-6f99-4962-a78e-3494801781a9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27940,12 +27940,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e75a0f6-aba3-42b1-b350-311930b48bed", + "id": "d0c8ba7e-0c88-4d92-8413-e22fb689fd5f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27984,7 +27984,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -27995,7 +27995,7 @@ } }, { - "id": "1769492f-4934-4fcf-b287-6a87b0b37cf7", + "id": "26ee766a-f0f1-40c6-b1f7-196f794c633d", "name": "Update a workflow session by id", "request": { "name": "Update a workflow session by id", @@ -28025,7 +28025,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -28048,7 +28048,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"soap_request_sent\",\n \"attributes\": {\n \"incididunt_90a\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"13274bd6-b8e0-4041-1d14-7b8c71bcea30\",\n \"requester_id\": \"3abefd75-d399-3e3f-59fe-96b131ffb55a\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"929a8a7a-5448-0746-75b6-a9061136800e\",\n \"profile_ids\": [\n \"923b46b7-0a0d-599d-f870-d33653a690cd\",\n \"urn:uuid:ee4ad974-9406-90ea-a9ac-1b4351835578\"\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": "d831c2ab-0175-449d-b982-df8f8244e41f", + "id": "f4888efc-e1c0-493d-a817-bad8e8a894f0", "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\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"soap_request_sent\",\n \"attributes\": {\n \"incididunt_90a\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"13274bd6-b8e0-4041-1d14-7b8c71bcea30\",\n \"requester_id\": \"3abefd75-d399-3e3f-59fe-96b131ffb55a\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"929a8a7a-5448-0746-75b6-a9061136800e\",\n \"profile_ids\": [\n \"923b46b7-0a0d-599d-f870-d33653a690cd\",\n \"urn:uuid:ee4ad974-9406-90ea-a9ac-1b4351835578\"\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\": \"\",\n \"uid\": \"\",\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"User\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"failed\",\n \"attributes\": {\n \"eiusmod646\": \"\",\n \"eiusmod6\": \"\"\n }\n }\n}", + "body": "{\n \"workflow_session\": {\n \"id\": \"0dcc5747-7252-3636-b9d3-592a15774c6b\",\n \"uid\": \"Lorem in ea eucommodo est exerci\",\n \"workflow_id\": \"urn:uuid:fbd7ee34-4e3c-8b29-b0f3-91ff49ff7472\",\n \"requester_id\": \"caba8661-f099-9fff-49a7-797560b3e2c1\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:e64778d7-0c92-426f-76bf-ecefdd14da47\",\n \"profile_ids\": [\n \"1acb66d5-1565-eff8-128e-6cbfb5ecbe8f\",\n \"f7886436-2276-d229-e517-1eacd40133ce\"\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": "ccae95c1-8d97-4a04-beee-889754a45a9a", + "id": "d61683ed-f534-4e88-890e-8d0d6c36feaf", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28172,7 +28172,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"soap_request_sent\",\n \"attributes\": {\n \"incididunt_90a\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"13274bd6-b8e0-4041-1d14-7b8c71bcea30\",\n \"requester_id\": \"3abefd75-d399-3e3f-59fe-96b131ffb55a\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"929a8a7a-5448-0746-75b6-a9061136800e\",\n \"profile_ids\": [\n \"923b46b7-0a0d-599d-f870-d33653a690cd\",\n \"urn:uuid:ee4ad974-9406-90ea-a9ac-1b4351835578\"\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", @@ -28189,12 +28189,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0521361d-1f16-4776-949d-15eed58f3a19", + "id": "e7acc1c4-617f-4a48-8083-a22748326d3c", "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\": \"\",\n \"requester_id\": \"\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"\",\n \"profile_ids\": [\n \"\",\n \"\"\n ],\n \"status\": \"soap_request_sent\",\n \"attributes\": {\n \"incididunt_90a\": \"\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"13274bd6-b8e0-4041-1d14-7b8c71bcea30\",\n \"requester_id\": \"3abefd75-d399-3e3f-59fe-96b131ffb55a\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"929a8a7a-5448-0746-75b6-a9061136800e\",\n \"profile_ids\": [\n \"923b46b7-0a0d-599d-f870-d33653a690cd\",\n \"urn:uuid:ee4ad974-9406-90ea-a9ac-1b4351835578\"\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", @@ -28256,7 +28256,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -28267,7 +28267,7 @@ } }, { - "id": "64edfd90-6a02-44b6-b446-a67f381e797d", + "id": "a4990312-23ab-4b5e-a4d8-e52358ae8154", "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", @@ -28289,7 +28289,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -28299,7 +28299,7 @@ }, { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "attribute_id", "disabled": false, "description": { @@ -28321,7 +28321,7 @@ }, "response": [ { - "id": "b5ff6efe-21dd-4c5b-a968-6d0aabfeefc8", + "id": "b04777c9-08f0-42c4-919c-c9bb6572aa0d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28362,12 +28362,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"\"\n}", + "body": "{\n \"url\": \"laboris anim\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "855f68fa-73f9-439d-a0e1-75ef82450743", + "id": "033fa7c5-d813-4044-bc8e-33727ab6e616", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28408,12 +28408,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c42faa3-5d09-4e41-886c-4cbdd259056a", + "id": "1c546cee-87fb-42e8-9bd1-74b0e115db95", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28454,7 +28454,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -28465,7 +28465,7 @@ } }, { - "id": "4f3b6487-222f-4ccb-87b7-829a53d67b8c", + "id": "095bfaad-d2bc-47d4-842b-d6565af30935", "name": "Uploads a new attachment attribute value to a workflow session", "request": { "name": "Uploads a new attachment attribute value to a workflow session", @@ -28487,7 +28487,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -28497,7 +28497,7 @@ }, { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "attribute_id", "disabled": false, "description": { @@ -28527,7 +28527,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -28536,7 +28536,7 @@ }, "response": [ { - "id": "09d4ae36-460a-4f7b-9f30-3a9724e70a22", + "id": "4fab4c7f-80d4-4177-8a9f-f7417c9c357e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28580,7 +28580,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -28594,12 +28594,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"\"\n}", + "body": "{\n \"url\": \"laboris anim\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1872ad01-dc45-432f-a258-b4d4a32cfd91", + "id": "5d466b71-a665-425c-8129-ecc9548e6418", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28643,7 +28643,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -28657,12 +28657,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36b5fccb-3244-43e3-811e-1ec709fdcbad", + "id": "12e65287-94a0-43b8-b378-f236a55fb47b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28706,7 +28706,7 @@ "type": "text/plain" }, "key": "file", - "value": "", + "value": "sunt occaecat amet proident", "type": "text" } ] @@ -28720,7 +28720,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -28737,7 +28737,7 @@ "description": "", "item": [ { - "id": "250792d7-d6ad-42c0-a3b6-9fbd7c0ee524", + "id": "cd9da606-897f-4cc6-8a61-8528db3f643d", "name": "Get identity proofing result data in bulk", "request": { "name": "Get identity proofing result data in bulk", @@ -28760,7 +28760,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -28769,7 +28769,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -28778,7 +28778,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -28787,7 +28787,7 @@ "type": "text/plain" }, "key": "profile_id", - "value": "" + "value": "4e480441-451d-47d9-87c2-9a0f0fe135eb" }, { "disabled": false, @@ -28796,7 +28796,7 @@ "type": "text/plain" }, "key": "workflow_session_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -28814,7 +28814,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -28831,7 +28831,7 @@ }, "response": [ { - "id": "5ef54931-598d-43e4-b89e-c7652030e585", + "id": "9e4a3daf-5ea7-4888-86ed-d1d44bcb178c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28849,7 +28849,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -28858,7 +28858,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -28867,7 +28867,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" }, { "disabled": false, @@ -28876,7 +28876,7 @@ "type": "text/plain" }, "key": "profile_id", - "value": "" + "value": "4e480441-451d-47d9-87c2-9a0f0fe135eb" }, { "disabled": false, @@ -28885,7 +28885,7 @@ "type": "text/plain" }, "key": "workflow_session_id", - "value": "" + "value": "11e3b93f-38af-93be-4906-939bcbdf08a7" }, { "disabled": false, @@ -28903,7 +28903,7 @@ "type": "text/plain" }, "key": "metadata", - "value": "false" + "value": "true" } ], "variable": [] @@ -28933,7 +28933,7 @@ "value": "application/json" } ], - "body": "{\n \"identity_proofing_results\": [\n {\n \"id\": \"\",\n \"identity_proofing_action_id\": \"\",\n \"workflow_session_id\": \"\",\n \"profile_id\": \"\",\n \"proofing_workflow\": \"\",\n \"result\": \"pass\",\n \"proofing_attributes\": {\n \"sed_88\": \"\",\n \"adb1\": \"\"\n },\n \"created_at\": \"\",\n \"updated_at\": \"\"\n },\n {\n \"id\": \"\",\n \"identity_proofing_action_id\": \"\",\n \"workflow_session_id\": \"\",\n \"profile_id\": \"\",\n \"proofing_workflow\": \"\",\n \"result\": \"pending\",\n \"proofing_attributes\": {\n \"voluptate_1\": \"\",\n \"sunt_ebd\": \"\"\n },\n \"created_at\": \"\",\n \"updated_at\": \"\"\n }\n ],\n \"_metadata\": {\n \"limit\": \"\",\n \"offset\": \"\",\n \"total\": \"\",\n \"next\": \"\",\n \"previous\": \"\"\n }\n}", + "body": "{\n \"identity_proofing_results\": [\n {\n \"id\": \"urn:uuid:f420110b-9e92-bdfd-6221-29391ad9febf\",\n \"identity_proofing_action_id\": \"urn:uuid:3a2e5e5f-601e-619b-7a24-633627b75407\",\n \"workflow_session_id\": \"urn:uuid:4d1de1ad-b719-1856-aa99-a25b64b182a9\",\n \"profile_id\": \"urn:uuid:2ef4d2c2-cacb-f936-21e3-b22d71f30956\",\n \"proofing_workflow\": \"3fd4186a-6cc9-be18-1c7b-efe332e35736\",\n \"result\": \"pass\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"2013-08-09T22:43:23.069Z\",\n \"updated_at\": \"1995-08-20T16:52:17.011Z\"\n },\n {\n \"id\": \"urn:uuid:efa3cbe0-1f90-d53b-942b-ee88a56708ac\",\n \"identity_proofing_action_id\": \"b48a0ace-5faf-f226-8042-3a1df8c872c8\",\n \"workflow_session_id\": \"98d57e93-94a0-2aba-cec2-d872bfc10c39\",\n \"profile_id\": \"68c6d7c0-125b-1959-2737-c81d5c5299c2\",\n \"proofing_workflow\": \"f7c8f833-be4c-1747-118b-0cca82d622ba\",\n \"result\": \"pending\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1953-09-21T08:55:10.506Z\",\n \"updated_at\": \"1986-07-07T12:15:50.842Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": 93368671,\n \"offset\": -11265991,\n \"total\": -91021575,\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": "7edebf80-969f-4cd7-9230-9dea2da8bc71", + "id": "49be5d47-9f72-453b-b41e-b0211033e5cd", "name": "Get saved advanced search queries", "request": { "name": "Get saved advanced search queries", @@ -28980,7 +28980,7 @@ }, "response": [ { - "id": "cea704e8-8e9d-4528-8b49-e57b2a96b686", + "id": "c1c35fe2-8346-4b86-9de4-249d68b46894", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29018,7 +29018,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"label\": \"\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"label\": \"\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"advanced_search\": [\n {\n \"id\": \"89b1847d-e262-a339-65f3-5426ce6fe543\",\n \"uid\": \"eiusmod nostrud velit adin aute \",\n \"label\": \"esse proident\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"a20fbd35-e689-370a-50a6-ee0970e41f39\",\n \"uid\": \"officia voluptate est eu commodo\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"ba645bff-0a92-a535-2f63-93c768067b1b\"\n },\n {\n \"id\": \"04e74054-f26b-de56-907c-16330e3f8052\",\n \"uid\": \"amet sintadipisicing ullamcoocca\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:42dc38c7-9a1c-bb50-cc23-a5d942afef06\"\n }\n ]\n },\n {\n \"id\": \"ca8ba88d-bf9d-1467-e699-57884c1b4b32\",\n \"uid\": \"eu aute irurein ullamco et dolor\",\n \"label\": \"pariatur laborum\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"41738443-0475-7f52-5218-c4f14ee91205\",\n \"uid\": \"ex aute reprehenderit inex conse\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:07e664d6-88c4-b1cb-419e-dd0e1210d4b2\"\n },\n {\n \"id\": \"ab3d5f53-1180-d563-4166-7ea4734436b9\",\n \"uid\": \"ut proidentet sunt fugiatvelit e\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:cdfceee8-de80-125d-819c-1db8496acea6\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29029,7 +29029,7 @@ } }, { - "id": "5c5e4757-5d33-483a-a851-4c9902aa23e1", + "id": "e067ea71-c95b-4d86-b285-8fb23acdb25f", "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\": \"\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"commodo sit\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:450b0c6a-f742-f5b8-e464-b9ba81ca4d6d\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"c3923816-4032-07f5-8d7c-5540272a2313\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29072,7 +29072,7 @@ }, "response": [ { - "id": "fc15fab2-4990-4ca8-a3e7-94f405865b29", + "id": "0d940a94-aeb8-46d5-9c2e-e00f2686605e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29106,7 +29106,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"commodo sit\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:450b0c6a-f742-f5b8-e464-b9ba81ca4d6d\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"c3923816-4032-07f5-8d7c-5540272a2313\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29123,7 +29123,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"label\": \"\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"\"\n }\n ]\n }\n}", + "body": "{\n \"advanced_search\": {\n \"id\": \"aa1067e9-0b8f-8c25-d567-898b5065177e\",\n \"uid\": \"dolore aliqua Loremut tempordolo\",\n \"label\": \"in non\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:57e796e7-f6e9-e33a-c8a3-420a137fe2f0\",\n \"uid\": \"quis nostrud inincididunt exerci\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"fc3e8f73-8c91-5846-0e3b-32ecfb4ad8c6\"\n },\n {\n \"id\": \"urn:uuid:d342c0ae-83c2-e611-de1f-33bdbe8121c1\",\n \"uid\": \"inid Ut dolor estamet mollitpari\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"80fc1687-1887-9813-c221-ab1a054f076d\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29134,7 +29134,7 @@ } }, { - "id": "53cc57cc-78ff-4286-b319-09cafabb7259", + "id": "fb60fc67-3112-419c-a3ee-9b3782034366", "name": "Run an advanced search for profiles, without saving the query", "request": { "name": "Run an advanced search for profiles, without saving the query", @@ -29158,7 +29158,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -29167,7 +29167,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -29176,7 +29176,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" } ], "variable": [] @@ -29194,7 +29194,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"commodo sit\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:450b0c6a-f742-f5b8-e464-b9ba81ca4d6d\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"c3923816-4032-07f5-8d7c-5540272a2313\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29206,7 +29206,7 @@ }, "response": [ { - "id": "de6e57c8-697d-4fcc-9637-32e9812c7565", + "id": "a1cca45d-ec5c-4a3c-8b89-d547b7323bc8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29225,7 +29225,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -29234,7 +29234,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -29243,7 +29243,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" } ], "variable": [] @@ -29269,7 +29269,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"commodo sit\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:450b0c6a-f742-f5b8-e464-b9ba81ca4d6d\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"c3923816-4032-07f5-8d7c-5540272a2313\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29286,7 +29286,7 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"fail\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"consequat_b\": \"\",\n \"dolor131\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"fail\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"Utcf2\": \"\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"eafugiat cupidatat occaecatut co\",\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\": \"et aliqua magna consequatirure c\",\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": "73fd3c90-bd9a-4613-a398-d64746660a56", + "id": "276f8027-b2dc-4876-9a63-859703a75604", "name": "Update a saved advanced search query", "request": { "name": "Update a saved advanced search query", @@ -29317,7 +29317,7 @@ "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -29340,7 +29340,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"id\": \"\",\n \"label\": \"\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"\",\n \"_destroy\": false\n },\n {\n \"id\": \"\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"\",\n \"_destroy\": false\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"id\": \"c4ed1494-7cf5-c40c-a786-9350fd88c7f8\",\n \"label\": \"dolor\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"12e08ac9-5ea9-45ac-1810-3b261246dc2e\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:9377b66d-eb6b-194f-5eeb-e1bd7d2a8e10\",\n \"_destroy\": false\n },\n {\n \"id\": \"urn:uuid:97b9ecf5-11b1-9ebf-fb9b-12b61f1d5c1f\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:306c3da5-db56-e4e9-decb-314a4abbbe9f\",\n \"_destroy\": false\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29352,7 +29352,7 @@ }, "response": [ { - "id": "975b7581-18b6-47a1-9ea2-a0e122a79c1c", + "id": "86c4f1ac-a986-48a5-b9ba-76c692e52129", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29387,7 +29387,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"id\": \"\",\n \"label\": \"\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"\",\n \"_destroy\": false\n },\n {\n \"id\": \"\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"\",\n \"_destroy\": false\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"id\": \"c4ed1494-7cf5-c40c-a786-9350fd88c7f8\",\n \"label\": \"dolor\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"12e08ac9-5ea9-45ac-1810-3b261246dc2e\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:9377b66d-eb6b-194f-5eeb-e1bd7d2a8e10\",\n \"_destroy\": false\n },\n {\n \"id\": \"urn:uuid:97b9ecf5-11b1-9ebf-fb9b-12b61f1d5c1f\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:306c3da5-db56-e4e9-decb-314a4abbbe9f\",\n \"_destroy\": false\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29404,7 +29404,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": {\n \"id\": \"\",\n \"uid\": \"\",\n \"label\": \"\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"\"\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"\"\n }\n ]\n }\n}", + "body": "{\n \"advanced_search\": {\n \"id\": \"aa1067e9-0b8f-8c25-d567-898b5065177e\",\n \"uid\": \"dolore aliqua Loremut tempordolo\",\n \"label\": \"in non\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:57e796e7-f6e9-e33a-c8a3-420a137fe2f0\",\n \"uid\": \"quis nostrud inincididunt exerci\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"fc3e8f73-8c91-5846-0e3b-32ecfb4ad8c6\"\n },\n {\n \"id\": \"urn:uuid:d342c0ae-83c2-e611-de1f-33bdbe8121c1\",\n \"uid\": \"inid Ut dolor estamet mollitpari\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"80fc1687-1887-9813-c221-ab1a054f076d\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29415,7 +29415,7 @@ } }, { - "id": "b736824d-3a01-4b5b-92a0-2de60dd85618", + "id": "a9e1fbfc-711f-4eb0-afa4-1fa6163a2a6c", "name": "Run a saved advanced search query", "request": { "name": "Run a saved advanced search query", @@ -29440,7 +29440,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -29449,7 +29449,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -29458,13 +29458,13 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" } ], "variable": [ { "type": "any", - "value": "", + "value": "1246d8b3-ac29-4015-8154-dea4434a73fa", "key": "id", "disabled": false, "description": { @@ -29486,7 +29486,7 @@ }, "response": [ { - "id": "8dbe11d8-5290-4f5c-bb66-83ec56feb1c1", + "id": "135a6a96-5bae-446b-b04e-725741e78560", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29506,7 +29506,7 @@ "type": "text/plain" }, "key": "query[limit]", - "value": "" + "value": "100" }, { "disabled": false, @@ -29515,7 +29515,7 @@ "type": "text/plain" }, "key": "query[offset]", - "value": "" + "value": "50" }, { "disabled": false, @@ -29524,7 +29524,7 @@ "type": "text/plain" }, "key": "query[order]", - "value": "" + "value": "created_at" } ], "variable": [] @@ -29554,7 +29554,7 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"fail\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"consequat_b\": \"\",\n \"dolor131\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"uid\": \"\",\n \"name\": \"\",\n \"profile_type_id\": \"\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"fail\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"attributes\": {\n \"Utcf2\": \"\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"eafugiat cupidatat occaecatut co\",\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\": \"et aliqua magna consequatirure c\",\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": "9b753759-db3e-4b37-bb22-870ca9d01dee", + "id": "988c2410-9219-4674-8771-b4cb1f53aa49", "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": "" + "value": "laboris anim aute" } ], "variable": [] @@ -29611,7 +29611,7 @@ }, "response": [ { - "id": "b2dae05c-74a7-4947-b2f3-7ac6895ffc84", + "id": "1579fe60-04db-4766-916e-d8eb947c4033", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29629,7 +29629,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "" + "value": "laboris anim aute" } ], "variable": [] @@ -29659,12 +29659,12 @@ "value": "application/json" } ], - "body": "{\n \"uid\": \"\",\n \"status\": \"\",\n \"job_type\": \"\",\n \"job_data\": [\n {\n \"user_id\": \"\",\n \"manager_id\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n },\n {\n \"user_id\": \"\",\n \"manager_id\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n ]\n}", + "body": "{\n \"uid\": \"4b75934f-3dae-b444-d2fb-85d104b177f4\",\n \"status\": \"complete\",\n \"job_type\": \"import\",\n \"job_data\": [\n {\n \"user_id\": \"urn:uuid:f5389234-91c7-217f-6001-66dfc4f0a050\",\n \"manager_id\": \"df70697b-90d6-4748-2c71-03a61f04445d\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n },\n {\n \"user_id\": \"urn:uuid:fd065827-a05a-5de4-b1f9-02dcaa28b9a7\",\n \"manager_id\": \"e1b9992c-ffdf-6ed7-1638-7d301fe7cb46\",\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": "c854b356-aee1-4d08-a0ef-8ff2f7badb60", + "id": "7336e057-b4c2-4f49-9d8c-e166dd318919", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -29682,7 +29682,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "" + "value": "laboris anim aute" } ], "variable": [] @@ -29712,12 +29712,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "83816bea-22e0-4287-bb0f-a3ecb6b8d0ee", + "id": "73e86a0b-4cfe-4650-8a18-12e42e658158", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -29735,7 +29735,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "" + "value": "laboris anim aute" } ], "variable": [] @@ -29765,7 +29765,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29782,7 +29782,7 @@ "description": "", "item": [ { - "id": "bf972986-db34-4506-8785-b438a9c1750a", + "id": "11f7cbe7-22a5-44f4-9050-ca8eae9ce7a1", "name": "Create a form", "request": { "name": "Create a form", @@ -29813,7 +29813,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"form\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\"\n }\n}", + "raw": "{\n \"form\": {\n \"uid\": \"form_uid\",\n \"description\": \"Form for creating new profile\",\n \"name\": \"My Form Name\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29825,7 +29825,7 @@ }, "response": [ { - "id": "0680587c-ecf3-4095-abe3-d5fbe0a20e5f", + "id": "5e44156e-ee88-4400-8dbf-17412a2dc8e6", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29859,7 +29859,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"form\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\"\n }\n}", + "raw": "{\n \"form\": {\n \"uid\": \"form_uid\",\n \"description\": \"Form for creating new profile\",\n \"name\": \"My Form Name\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29876,12 +29876,12 @@ "value": "application/json" } ], - "body": "{\n \"form\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\",\n \"id\": \"\"\n }\n}", + "body": "{\n \"form\": {\n \"uid\": \"form_uid\",\n \"description\": \"Form for creating new profile\",\n \"name\": \"My Form Name\",\n \"archived\": false,\n \"id\": \"2e06b876-f456-473d-bd65-b6435e0b6b2d\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "533f9cbb-f66b-4c73-bb53-42c623cbbaa3", + "id": "fccffa34-c629-45c8-aa51-17641dbf56d4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -29915,7 +29915,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"form\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\"\n }\n}", + "raw": "{\n \"form\": {\n \"uid\": \"form_uid\",\n \"description\": \"Form for creating new profile\",\n \"name\": \"My Form Name\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29932,12 +29932,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3373f037-2ad0-4731-8091-e47890d9560d", + "id": "790134c0-6a16-4f20-9088-5c14ffa52262", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -29971,7 +29971,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"form\": {\n \"uid\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"archived\": \"\"\n }\n}", + "raw": "{\n \"form\": {\n \"uid\": \"form_uid\",\n \"description\": \"Form for creating new profile\",\n \"name\": \"My Form Name\",\n \"archived\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29988,7 +29988,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -30005,7 +30005,7 @@ "description": "", "item": [ { - "id": "76844710-7fae-4b2a-8c96-a1fad863a01b", + "id": "6cc70f41-2332-40ea-aad1-6c49adf1daee", "name": "Create a form attribute", "request": { "name": "Create a form attribute", @@ -30036,7 +30036,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"form_attribute\": {\n \"form_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"attr_type\": \"break\",\n \"order\": \"\"\n }\n}", + "raw": "{\n \"form_attribute\": {\n \"form_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"attr_type\": \"ne_attribute\",\n \"order\": 1\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -30048,7 +30048,7 @@ }, "response": [ { - "id": "00f4ed92-704f-4b66-b661-e0c438319bdc", + "id": "9f36d8d0-478d-4b67-9eeb-13ef1939f808", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30082,7 +30082,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"form_attribute\": {\n \"form_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"attr_type\": \"break\",\n \"order\": \"\"\n }\n}", + "raw": "{\n \"form_attribute\": {\n \"form_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"attr_type\": \"ne_attribute\",\n \"order\": 1\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -30099,12 +30099,12 @@ "value": "application/json" } ], - "body": "{\n \"form_attribute\": {\n \"form_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"attr_type\": \"ne_attribute\",\n \"order\": \"\",\n \"id\": \"\"\n }\n}", + "body": "{\n \"form_attribute\": {\n \"form_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"attr_type\": \"ne_attribute\",\n \"order\": 1,\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4fc54407-1550-478e-9941-f4f8486a2bc9", + "id": "81e95f89-41b3-47c1-ba2b-9198e81d8315", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -30138,7 +30138,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"form_attribute\": {\n \"form_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"attr_type\": \"break\",\n \"order\": \"\"\n }\n}", + "raw": "{\n \"form_attribute\": {\n \"form_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"attr_type\": \"ne_attribute\",\n \"order\": 1\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -30155,12 +30155,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"example\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n }\n}", + "body": "{\n \"error\": \"Invalid JSON syntax. Please check your syntax and try again.\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "21a4d4dc-fea8-4f1a-a9d0-1d21e4f70e87", + "id": "30d70c99-94e3-4695-8a5c-452b9bddd8ed", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -30194,7 +30194,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"form_attribute\": {\n \"form_id\": \"\",\n \"ne_attribute_id\": \"\",\n \"attr_type\": \"break\",\n \"order\": \"\"\n }\n}", + "raw": "{\n \"form_attribute\": {\n \"form_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"attr_type\": \"ne_attribute\",\n \"order\": 1\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -30211,7 +30211,7 @@ "value": "application/json" } ], - "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"Sorry something went wrong\"\n }\n}", + "body": "{\n \"error\": \"Sorry something went wrong\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -30246,7 +30246,7 @@ } ], "info": { - "_postman_id": "6761f55f-d2c4-45f9-8259-01d58608a402", + "_postman_id": "8b533792-31f1-4fe1-9ee7-058df7ba321d", "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 cf5f794..d8f7a48 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": "0a2a3112-c33c-4a04-ba4d-a64b6275eabc", + "id": "d2460c8a-92b1-4194-a8f8-f79d36bdcd7d", "name": "List Access Profiles", "request": { "name": "List Access Profiles", @@ -107,7 +107,7 @@ }, "response": [ { - "id": "aed02434-399d-4933-ab43-4a9d9fac9a6f", + "id": "8998b4a6-9265-4017-a26c-425edee59d97", "name": "List of Access Profiles", "originalRequest": { "url": { @@ -223,7 +223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26af7246-95c5-4b57-ac7f-95b7bb8b53e0", + "id": "d611b6be-99df-413f-9b44-4e622c9dd128", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -339,7 +339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3350f215-d275-4dcb-a216-5640026adebc", + "id": "b8c5d6bd-4353-40e3-b830-386a6ba705b7", "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": "42222ffd-0597-4fc0-9437-bfb7760a323f", + "id": "43747b1b-ab90-446a-97ca-c51d99c9b28a", "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": "ea03c30b-6a20-4ddc-8ef8-586711242deb", + "id": "7934a431-2daf-461f-82a7-30cad584f459", "name": "Too Many Requests - Returned in response to too many requests in 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": "4ad66a60-2e72-46fc-9b07-7a8dca224444", + "id": "9fbafd60-b65c-4e4f-bdf7-6087d80161b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -809,7 +809,7 @@ } }, { - "id": "86564237-34ea-496a-8933-5e541ae50233", + "id": "da1c0aeb-ce06-45ad-a4df-bbad38a69f73", "name": "Create an Access Profile", "request": { "name": "Create an Access Profile", @@ -851,7 +851,7 @@ }, "response": [ { - "id": "58d26883-43ea-434d-9c2a-5f7fa3471fe1", + "id": "a54c9dff-1a35-4259-9a0f-c2dd55b8d1c8", "name": "Access Profile created", "originalRequest": { "url": { @@ -907,7 +907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31d10bfd-1e6b-4fb7-b0e1-61cf4b92d202", + "id": "58e7b647-f242-48f3-af52-83d455083197", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -963,7 +963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "811c11cc-89a1-4699-a71a-c3e7ed00c3f3", + "id": "ecbdfbd3-a1b0-4e6d-8e1e-f0bb335339db", "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": "0d0dddda-f13a-4df4-955b-e88b96b7297e", + "id": "c0c5eee0-ab08-415f-8ce7-a181fda9d3f3", "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": "5ff48e34-e706-4943-bf3a-4b304f7b010d", + "id": "a4ed06f5-ff49-4cab-a7a6-4aae04e9d111", "name": "Too Many Requests - Returned in response to too many requests in 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": "0f4cd617-d128-40c0-9c8e-2da8b05f581d", + "id": "e6e08737-82cf-4f7c-aa78-712ea7b9c64e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1193,7 +1193,7 @@ } }, { - "id": "73c851f8-d0e3-41da-b3de-19d899d945eb", + "id": "9d52860a-13c9-44df-aa75-601d1f202197", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -1234,7 +1234,7 @@ }, "response": [ { - "id": "a6100d95-5841-4242-8b56-615b5ef6851a", + "id": "36aff5f5-d20a-438b-802a-914142ff6531", "name": "An AccessProfile", "originalRequest": { "url": { @@ -1278,7 +1278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "410ec568-0226-4214-beb5-baa79f817211", + "id": "f3aacf4b-e4b1-4b5e-ae87-8aa63bfec4a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1322,7 +1322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a888f47-b6e0-42f8-b499-03c3f2dfa143", + "id": "bdf01873-17d4-44f1-8ea1-d02097ab2157", "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": "19b3d202-e7ef-4c87-94e3-cf0590ca74bc", + "id": "17e2b417-c77d-44a8-a99a-57dd069bfb12", "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": "2cc25452-0878-48b6-a128-47971edbdeb9", + "id": "fcd46e3b-d7c7-40c8-9415-fa9e91685f10", "name": "Too Many Requests - Returned in response to too many requests in 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": "2cc21066-9168-434f-a821-8a4ae29394a6", + "id": "8334660c-9009-4e68-b49b-0d475f1d7000", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1504,7 +1504,7 @@ } }, { - "id": "a734b3dc-8186-4197-a068-964066bf8883", + "id": "e7506801-6b4b-4852-8991-fa9091b8fd0a", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -1558,7 +1558,7 @@ }, "response": [ { - "id": "87137f8d-30ad-4e53-9d12-357790eff977", + "id": "efef8f23-f874-4f59-ba27-59685c8cac5d", "name": "Add Entitlements", "originalRequest": { "url": { @@ -1615,7 +1615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43b12cf3-a469-41f4-b16c-1bc9f956cc25", + "id": "18c6627d-0d29-409d-97ac-ada20904d469", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1672,7 +1672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c42b27f-9fe8-4540-93d8-1491339fe890", + "id": "9e529d66-c88d-40e5-8ac7-65f1517b1ff0", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1729,7 +1729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71702a2f-1f01-4683-b626-71fbb0f7bd19", + "id": "d85e4533-ad9c-44e3-8933-5e2fd3bfe447", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -1786,7 +1786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8b01203-7ef8-4637-b181-f03d15b91f78", + "id": "11bcd6c5-b519-4b8b-9267-702e2eb9ebb2", "name": "Replace Source", "originalRequest": { "url": { @@ -1843,7 +1843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "638faf5f-ef91-4e82-a597-61bc06cd0bd6", + "id": "0813e632-4095-477a-b237-7c5210f47b34", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1900,7 +1900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "288f5d8c-1071-4cca-b0b8-a599c96ca756", + "id": "9cc88d9f-84ff-4564-892a-bc0dcb9dbf00", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1957,7 +1957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f3e7375-5f75-4234-a85b-9d1b68223978", + "id": "aeddc6b9-9f89-423d-8faa-c2549623bd62", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2014,7 +2014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c14d6cf-9839-4b5d-b92d-e99df74c249a", + "id": "d7aec87c-2185-41de-bd17-480201479c2d", "name": "Replace Source", "originalRequest": { "url": { @@ -2071,7 +2071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0097e011-3901-416e-85f2-04007b8032ef", + "id": "fa91a8a7-3fcf-448a-b30c-562aef5b5709", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2128,7 +2128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "334274c3-845b-4e7e-8aa5-d47602b54824", + "id": "2381877c-6caf-48a4-a985-79b75bd10518", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2185,7 +2185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40693dd5-446d-44b0-8f8e-7490d083bdb2", + "id": "f71139c7-2f15-4454-a13e-42a076ef0c41", "name": "Replace Source", "originalRequest": { "url": { @@ -2242,7 +2242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad5c2753-6344-46c8-bbb7-129d62cb227a", + "id": "fd5d8df7-97bf-469d-9605-f0d58ada6c26", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -2299,7 +2299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26e7e49d-a23b-4d1b-b6cf-aea491dcff24", + "id": "64c62c8e-92c6-4cfd-97d7-beb04991c8f9", "name": "Replace Source", "originalRequest": { "url": { @@ -2356,7 +2356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6826ab39-ba9a-4066-a7a2-43ff8dc00a81", + "id": "8e43faef-3202-4796-b5dd-29723f4e8f25", "name": "Replace Source", "originalRequest": { "url": { @@ -2413,7 +2413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cda8ab62-89ec-4432-ae2a-1a1b3f01b472", + "id": "7cbf887f-8e0e-4440-a05a-29eb1fd168b3", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -2476,7 +2476,7 @@ } }, { - "id": "b9962066-ef40-45af-aadc-91fe63a8822a", + "id": "08a78e50-ad35-412a-99c1-f04bc7acb0a3", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -2517,7 +2517,7 @@ }, "response": [ { - "id": "3966ce45-31f8-4330-b9a9-73e1c16d9b56", + "id": "573a9606-68fb-4a7f-a2f5-393f53e5ad03", "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": "930d23b2-6f3c-4cc7-a33f-5c69c4876ca4", + "id": "fd147462-85df-4652-97a3-48f754767e99", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -2595,7 +2595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fe6f5c9-911c-4f32-84bb-57cacb3b2450", + "id": "1be8ede4-c19c-49ea-97e8-a493c5f75284", "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": "d8b41663-8cd0-4a71-a7e0-457e826c6325", + "id": "1bb27f97-45f6-4907-87d4-723e94cffb34", "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": "b02599cf-ede4-44ea-8921-b070630c2362", + "id": "9a0bc055-fa49-4627-ad0a-a996cf4d8046", "name": "Too Many Requests - Returned in response to too many requests in 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": "831cca6e-f958-4da9-81c8-8f305c6d8603", + "id": "02b3d7de-d70a-41dd-ac2d-8111803f2404", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2777,7 +2777,7 @@ } }, { - "id": "e3ec6cb1-0998-4a7d-9b26-0f0cca11d167", + "id": "c6f4c2aa-a04f-401a-87ee-3a4070786253", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -2820,7 +2820,7 @@ }, "response": [ { - "id": "cdf0d096-3454-4b96-8f65-c1090e6de212", + "id": "4cf3b98e-db42-477c-bfa4-6b80b6830758", "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": "d66eb8e8-5264-482d-8b43-91794794a387", + "id": "8fea7364-65f2-48b2-960d-00131a0ad624", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -2934,7 +2934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2918701-50f1-4e6d-ae98-22a2be435233", + "id": "147c12e9-3cef-4f96-bb31-6261362c49c8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2991,7 +2991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "535067e5-1b9d-4ea9-98d3-20f8730b9d23", + "id": "8e0842a9-dfb4-4c33-8561-dc453d534552", "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": "0df007f7-900c-488c-8ea5-faa5d137c54f", + "id": "f4f05666-bd6b-41fe-9834-fdaa13226cde", "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": "d4fce6ca-a122-4894-b836-ee9b4d4021e3", + "id": "fe102288-9d46-4f41-8e7b-dece35e1e8a4", "name": "Too Many Requests - Returned in response to too many requests in 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": "739f6894-0b00-443d-9c74-1bfc08a57863", + "id": "da6a4ed7-dcf3-4eec-97c8-2b252847da86", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3225,7 +3225,7 @@ } }, { - "id": "2f09f88b-91a9-4711-80f5-3fc8d30b5363", + "id": "47b96385-8e3e-49ad-9f61-f3ee1503af3f", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", @@ -3313,7 +3313,7 @@ }, "response": [ { - "id": "a93b6d47-2130-452b-bcd0-02cc994d2757", + "id": "e7c4d37e-15a4-4fea-8870-5e3a276e96cd", "name": "List of Entitlements", "originalRequest": { "url": { @@ -3404,7 +3404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c85624d-3abb-4344-97d5-a110326767db", + "id": "7e986898-3d8e-43fd-b225-47604c8bb794", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -3495,7 +3495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88df3676-fd54-4822-a780-53eb8e0e51dc", + "id": "00ececee-6b74-4723-a3b8-fbe9072f79e7", "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": "738568d6-6692-42c0-8a27-cbdb9c35f393", + "id": "a57bde09-5282-4034-9909-69ab1ff8feb4", "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": "687a5f3f-d7bc-404c-836c-e7c83e0d1431", + "id": "1c67c180-6fb2-48d8-b0a6-25ca33180fe1", "name": "Too Many Requests - Returned in response to too many requests in 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": "bdb24e8a-49f3-473f-93bc-a1c63fb05bb7", + "id": "a4b91618-98f0-44cb-b988-2449ece479a4", "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": "6471ed71-b112-4e9f-95b2-aef393467821", + "id": "54f12ae1-2898-48f1-9887-4a5730d76a93", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -3956,7 +3956,7 @@ }, "response": [ { - "id": "327cdd61-653d-4167-a509-c8e342b868ff", + "id": "bcc9eca8-3e97-4ae2-a9d0-430e6ff50883", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -4055,7 +4055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24c10dd3-ec3b-4f52-b253-5b1b88460fa0", + "id": "cc8e4a54-231a-4874-8af7-7bbc06b8eb43", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -4154,7 +4154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85376d9a-abf6-433d-98d8-cbe7e96e597e", + "id": "50efb3a8-81e3-4b4c-ba74-2f231245b1b5", "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": "f3920529-ab84-4b24-8e8d-ac7e629d9904", + "id": "38fd7176-0ff5-4029-95a8-fc00978144a9", "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": "8ed500c8-0724-4f18-a8ae-ae4c9cb2080c", + "id": "259dbe7d-7480-4d32-a61b-837032312db9", "name": "Too Many Requests - Returned in response to too many requests in 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": "10f9f23d-8955-41d7-814e-d2e1a6c0fc11", + "id": "12e427da-4462-4d4d-be11-3b8f3dd9ea5d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4556,7 +4556,7 @@ } }, { - "id": "893ebec9-8bf8-45f7-a3b1-2cb71f34c0e1", + "id": "edeb8745-0346-4f0d-90c3-03e6978df63a", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -4641,7 +4641,7 @@ }, "response": [ { - "id": "d2fce457-9cc4-40dc-8155-c91279f9f94c", + "id": "b907d187-4f84-4e2a-808e-c7852a429837", "name": "List of Completed Approvals.", "originalRequest": { "url": { @@ -4740,7 +4740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ade5a28b-aa3c-42c4-bf62-5821754617eb", + "id": "8a761897-2edf-485c-8c9e-24637a45f763", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -4839,7 +4839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7504b062-17a0-4b00-9a9a-185526929842", + "id": "68aaad79-79cb-4a44-b3fe-335560ed350b", "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": "f5171949-9675-441c-86b4-33a10cdede8e", + "id": "f89ffea6-02d5-4c20-89ab-a2cc712fc523", "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": "c2029cab-74a1-4c4a-9ab4-3c7a0bfd83c0", + "id": "66e41f78-8842-4dc7-9f14-ebbcb6141a1d", "name": "Too Many Requests - Returned in response to too many requests in 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": "0690454b-fed8-4032-9b9b-066029db735a", + "id": "6bd0e84b-1174-43ad-96bb-9841d27c79c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5241,7 +5241,7 @@ } }, { - "id": "0d498bbe-2e9d-46a7-a098-8b6a83402de9", + "id": "9c1a3fb7-569b-4ccd-adad-68f60cd880f7", "name": "Approves an access request approval.", "request": { "name": "Approves an access request approval.", @@ -5296,7 +5296,7 @@ }, "response": [ { - "id": "f845921e-ee1a-4e60-abaf-81fa0010c292", + "id": "df9b4236-b752-45c5-8e68-7b483af47327", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5354,7 +5354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f58ac06-c392-44f4-848d-d89c978d42a2", + "id": "7f51745c-a402-493d-a89a-a5f793d55733", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5412,7 +5412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26ecea2f-b344-4b56-8a20-a461535b5469", + "id": "5d242e5e-c7bf-4efe-9c52-801052499bfc", "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": "8b929ae0-00a7-43e7-bb84-47a16f8042ef", + "id": "ab11da5b-852b-4977-b47b-bf25060b63e5", "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": "947292c0-0833-49ea-a106-5652d316a2af", + "id": "8cc5ef13-78f3-4bbf-849b-184b5da7ad15", "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": "c01de0e2-b433-40a8-93b4-cb7a6739a668", + "id": "51717a9e-6637-4509-bdc9-4b76397eb222", "name": "Too Many Requests - Returned in response to too many requests in 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": "00002772-8df0-4c5e-a86f-8ab93cd1de10", + "id": "83ea65b1-018b-4d66-aedc-a7633f2fb51c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5708,7 +5708,7 @@ } }, { - "id": "fd2a5dea-ce41-4315-a713-ee015fa1f6f1", + "id": "9240fe26-eabe-470f-9ff9-c000d92a092f", "name": "Rejects an access request approval.", "request": { "name": "Rejects an access request approval.", @@ -5763,7 +5763,7 @@ }, "response": [ { - "id": "3489891e-55ec-4c55-b398-292f7edba6b7", + "id": "7506cff8-ea47-44c6-951a-9b32526e7186", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5821,7 +5821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "685f68cc-00d5-477c-8de6-42efbc15b379", + "id": "7c51777f-4161-481d-b0dc-c2a72fb686b5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5879,7 +5879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cc4ab3a-4bb6-4afa-b530-1f3b592bc4ce", + "id": "84276978-9635-405d-8a74-1aa7640e6202", "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": "51dbc4ce-05a6-4591-bb82-2418b77e3863", + "id": "ba08b4af-6053-4268-9865-51d1f8be6eff", "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": "19e0a636-6eed-4a4a-8c7c-82ea8b560f89", + "id": "6a9bcbf6-94b6-4aff-b26c-99a3b453919b", "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": "6e50efd8-5501-49e2-83a1-8c122564cfe5", + "id": "dcfb592c-35a5-4dbe-91a9-412300f2c915", "name": "Too Many Requests - Returned in response to too many requests in 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": "46e0f3c1-8121-45f8-adf7-926fe136c3a7", + "id": "9b972292-ae88-4172-b79b-5f8487beea1a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6175,7 +6175,7 @@ } }, { - "id": "cf284ab5-4699-488c-bb5c-5a78b83457ad", + "id": "b30cf192-8b69-4e03-8c3c-7951edb478d1", "name": "Forwards an access request approval.", "request": { "name": "Forwards an access request approval.", @@ -6230,7 +6230,7 @@ }, "response": [ { - "id": "48955b96-ab12-40f0-9118-4fbca9e6f095", + "id": "9c78e158-8039-4772-93c8-9660408aa1eb", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6288,7 +6288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19dce666-45f4-44b5-8fdf-9c953a6e2611", + "id": "a2508217-94bc-41e3-b594-617a12846c96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6346,7 +6346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b509211-7160-4725-9102-04a4d1c2c27f", + "id": "71a2ee11-be66-4189-8755-bbf5003a5078", "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": "91e9a8bc-f1a3-4dc8-a1ac-2ef7f915d403", + "id": "07a45cfe-4485-41a9-b4b0-20567b9c5875", "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": "8b7959c5-a6d4-458f-ae23-e84bba3389ea", + "id": "1071d8fc-7788-4d3d-aa73-0906cc013b06", "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": "84d83598-53d6-4646-878a-468b607e261b", + "id": "75db7313-c087-43f9-91d8-7e31f5345a60", "name": "Too Many Requests - Returned in response to too many requests in 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": "2dba0014-8968-41ef-b0bf-f945ac06e970", + "id": "94a709f2-aa8a-4eb0-914f-674bb9257f1b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6642,7 +6642,7 @@ } }, { - "id": "bb745bdc-e915-4acc-8ee4-5874f11966a0", + "id": "072eaee2-e36d-4f04-b0a9-6e179890ce1b", "name": "Get the number of access-requests-approvals", "request": { "name": "Get the number of access-requests-approvals", @@ -6691,7 +6691,7 @@ }, "response": [ { - "id": "4921febd-ba4e-4e48-963b-e4667d1bfb1b", + "id": "9d9a4252-76bb-48f5-94de-ccfcc3606f10", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -6754,7 +6754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cb23cdc-0b3d-425a-961e-92114b9e33b8", + "id": "86aa10b3-7176-4135-b262-72b96e55f436", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -6817,7 +6817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3633b362-d26c-478c-8d22-f8b367ece504", + "id": "e6dbe492-82e6-425b-84aa-7d285e9786dd", "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": "ecf2a46d-f7a0-4fcf-b123-fb555972d0a9", + "id": "49c2b888-031d-4aec-80df-5b97f27c1563", "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": "910b5386-f38d-4839-b434-92bb09ae86b0", + "id": "783b89f8-d4a6-4c36-9063-eb0a8f3419b2", "name": "Too Many Requests - Returned in response to too many requests in 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": "e3a82b73-7e72-4c0b-ab19-f04bcb0100a3", + "id": "cfd92d2f-c6d9-4d58-a702-a0a83b0377cd", "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": "126b276d-575a-482b-8271-19017a373ef5", + "id": "349c8367-51f9-4c60-9c76-3ce59c7d1afa", "name": "Submit an Access Request", "request": { "name": "Submit an Access Request", @@ -7123,7 +7123,7 @@ }, "response": [ { - "id": "7871bbf4-9de1-44bd-8e1f-bb95dc9e153b", + "id": "6c18bedd-2e56-45a2-8a68-643681f0f1e8", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7179,7 +7179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a7b4f28-a34b-4fe0-a97c-22edb9b0cc8d", + "id": "153632d5-6bfe-45de-aea8-2e8f8696062c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7235,7 +7235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "676335c9-b2a1-4efa-b73d-ed43fdf41b77", + "id": "d5f69ec4-d023-4e69-a7e0-0f9154826370", "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": "a1131b26-2fb1-462b-a413-131ca8312f4b", + "id": "d010452d-f061-428d-b0fb-b58de865a3e3", "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": "2c6ebc37-f473-4395-83ce-0e83c9ac6d7c", + "id": "de004def-7230-43cd-9f5b-fc6e9357b5ee", "name": "Too Many Requests - Returned in response to too many requests in 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": "21d7b2e4-8736-47c8-821b-2491b78205c5", + "id": "81c3b291-ca5c-4c92-876d-83e484fc06a8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7465,7 +7465,7 @@ } }, { - "id": "40b2bc95-b23f-4a21-844c-c47492fdfebc", + "id": "f18820d1-df63-4da3-86b5-1affaecfab15", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -7508,7 +7508,7 @@ }, "response": [ { - "id": "4eca5ca5-3096-4794-85f0-71cd7c657410", + "id": "44bec5c7-764b-4769-9b96-72ab9103bc22", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7565,7 +7565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d64353be-a144-43f1-b96f-0995862aa320", + "id": "da270458-c5ef-41a5-9fec-081231144b50", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7622,7 +7622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41772896-ffe7-4849-8201-df0d6089633b", + "id": "9876113f-f9ff-4d6f-93a2-928698bda72c", "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": "63f8c754-1b32-444e-9033-77e2d1b1f307", + "id": "0b6db8fa-678d-4e6e-8726-941dcb6b7197", "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": "f08dcf24-2227-4551-a2d7-4079c91146fe", + "id": "e259333a-2669-44af-b8ed-7522f881c67e", "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": "f0a00ea5-b5c6-49e7-a1e5-3e10f1a32722", + "id": "b6644e5a-5958-4eff-a96f-00e52768ad90", "name": "Too Many Requests - Returned in response to too many requests in 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": "82b55517-b131-499a-b5be-6969ef6dcc66", + "id": "7e222fbe-5e60-44f6-9502-3e05e31cf78d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7913,7 +7913,7 @@ } }, { - "id": "6cb785de-3cff-4194-b0ea-28995057e85f", + "id": "0ddd14b0-97bb-445c-80cf-698b4871378b", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -7942,7 +7942,7 @@ }, "response": [ { - "id": "150855f5-0e88-4ed1-92bc-16d71c39496b", + "id": "49b5fb3b-446d-4315-a150-eb664489c822", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -7985,7 +7985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "653624af-355c-4c7e-b8b3-47493acd9519", + "id": "4ed9a815-4e0e-4411-b731-e0538e9c19dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8028,7 +8028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "541c9545-6681-4b51-a438-c6a1e8c28ae6", + "id": "3d7e778e-bd54-4afa-924b-a3d4882b5323", "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": "93e55e3b-cb93-4400-87bc-e0d2387c5e49", + "id": "312fea6d-98a8-4a39-a2be-16c197b5a8fb", "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": "f6251aca-0e69-4b15-8175-9ab0795b92fc", + "id": "c590e644-833f-417c-8cbc-b39d15d9e8ce", "name": "Too Many Requests - Returned in response to too many requests in 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": "6940eecf-94e6-4ff7-bf8d-952d6a279769", + "id": "bdbb0f18-c8c8-435d-baf2-e0c25cfd0360", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8206,7 +8206,7 @@ } }, { - "id": "491539cf-1f76-4707-b2a2-7205707449bd", + "id": "f7d7479e-159f-436c-a6e6-21843abb5a59", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -8248,7 +8248,7 @@ }, "response": [ { - "id": "0bea0a29-d8e1-4f58-b965-4f2176193bc7", + "id": "e22d0e83-5bf1-4667-aa5c-7d6183e64119", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -8304,7 +8304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ff4ee85-2c3c-4240-9be5-94bbed53642f", + "id": "c0dd1e0b-64d2-4c88-b28d-7a4306605ab3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8360,7 +8360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c490a22-216e-4505-97c5-3df3842ce167", + "id": "cc086980-c090-4e37-8b30-88c84ecfdcbf", "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": "869b42c8-59aa-40bc-a956-707d2d14624f", + "id": "e32a9544-4d31-4b4b-ac4c-af5f71c29149", "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": "1d7a72b2-af7a-441f-a177-998b06740f2f", + "id": "c4bb3847-deaf-4e64-bcd4-9af06f960068", "name": "Too Many Requests - Returned in response to too many requests in 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": "e7c77b78-8d39-4cf8-ab5f-15c8a6269fe4", + "id": "1c3fd68a-84f0-4245-9089-c3ec35a48259", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8590,7 +8590,7 @@ } }, { - "id": "07004613-14ce-4203-99f2-01edb4cef023", + "id": "d79c8f2f-e2db-4890-b031-7e58ab564334", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -8701,7 +8701,7 @@ }, "response": [ { - "id": "6959c715-2f09-40f2-97f3-5df4e8276b61", + "id": "88402516-9d94-4b38-81cf-2b3ca015dcf3", "name": "List of requested item status.", "originalRequest": { "url": { @@ -8826,7 +8826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f263847-99d2-40e0-a522-82d591f56a8c", + "id": "c487829f-2b35-457e-bfea-8d12fb34acd6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8951,7 +8951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0296dba-1453-42e0-a3c4-a3e6c2f012fe", + "id": "be212efe-ef32-4820-8161-04ccff8e58af", "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": "ce4dce03-c931-4d08-b7cf-22003fb48bda", + "id": "c5ffcd62-8712-47f7-938b-4a5c57734901", "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": "2f223052-2bdf-445b-a498-96b41c5ccdb9", + "id": "ac0bf9fe-19a9-4c24-adb9-4b48ca78cce6", "name": "Too Many Requests - Returned in response to too many requests in 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": "5d1c8b30-9cd8-4c5c-bc28-a812173ed4ab", + "id": "a317a72f-75e1-40c8-bc28-08de36dbd28a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9458,12 +9458,595 @@ } ] }, + { + "name": "Account Usages", + "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": "3236481b-8aff-4257-8b66-e8191ed895f8", + "name": "Returns account usage insights", + "request": { + "name": "Returns account usage insights", + "description": { + "content": "This API returns a summary of account usage insights for past 12 months.", + "type": "text/plain" + }, + "url": { + "path": [ + "account-usages", + ":accountId", + "summaries" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", + "type": "text/plain" + }, + "key": "sorters", + "value": "-date" + } + ], + "variable": [ + { + "type": "any", + "value": "ef38f94347e94562b5bb8424a56397d8", + "key": "accountId", + "disabled": true, + "description": { + "content": "(Required) ID of IDN account", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "b1f88d30-9fbb-4d24-86c3-6fa92086dffb", + "name": "Summary of account usage insights for past 12 months.", + "originalRequest": { + "url": { + "path": [ + "account-usages", + ":accountId", + "summaries" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", + "type": "text/plain" + }, + "key": "sorters", + "value": "-date" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"date\": \"2023-04-21\",\n \"count\": 10\n },\n {\n \"date\": \"2023-04-21\",\n \"count\": 10\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "e84133a6-0ff9-42f0-be3b-401229e75831", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "account-usages", + ":accountId", + "summaries" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", + "type": "text/plain" + }, + "key": "sorters", + "value": "-date" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "4e88c851-89f9-4255-b12f-9728d70026b7", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "account-usages", + ":accountId", + "summaries" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", + "type": "text/plain" + }, + "key": "sorters", + "value": "-date" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ca9243e4-b4da-4ac6-9dd5-dd18b31ad8e3", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "account-usages", + ":accountId", + "summaries" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", + "type": "text/plain" + }, + "key": "sorters", + "value": "-date" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1b197185-248f-48cf-8ffd-6b50be3986d5", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "account-usages", + ":accountId", + "summaries" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", + "type": "text/plain" + }, + "key": "sorters", + "value": "-date" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "6662b9b5-20b0-4a79-9c3b-48c7734b2df2", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "account-usages", + ":accountId", + "summaries" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", + "type": "text/plain" + }, + "key": "sorters", + "value": "-date" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + } + ] + }, { "name": "Accounts", "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": "db1f339e-00d7-4a89-8d01-5835935ca1cf", + "id": "74fc86e4-19bf-4ec7-b08c-dddf18b0f43f", "name": "Accounts List", "request": { "name": "Accounts List", @@ -9538,7 +10121,7 @@ }, "response": [ { - "id": "36acee71-4a22-4d78-9fdf-2f84ac7c6f27", + "id": "6c88ca0c-9f20-46c6-93d9-81888388c618", "name": "List of account objects", "originalRequest": { "url": { @@ -9627,7 +10210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77140254-1c24-4b8a-baa5-0fc5c8564fc4", + "id": "849a430d-0760-497b-b261-daa2a1b1a50d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9716,7 +10299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a754f06-bbfe-4908-9b7a-c9961c90eabc", + "id": "c8621861-782f-4ab0-91ba-2e1cba458df8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9805,7 +10388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e99cbe98-8049-49d8-8cec-1cf8196f038b", + "id": "46811efb-c458-4168-9f07-e1b175a00ed0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -9894,7 +10477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b93e76f4-ab02-4fe5-a5a8-341844c8ee42", + "id": "a52b4b89-afca-4690-9c3a-b212ed4341fc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -9983,7 +10566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c6f882a-dadf-4452-bf0d-3b863be4f2e0", + "id": "e4393fbd-c06e-4a40-abba-cfae26041926", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10078,7 +10661,7 @@ } }, { - "id": "d9dc2cab-4389-4b1f-a0ad-ef4c77b2d056", + "id": "7db42f0c-bf7d-425d-a180-5098de28f906", "name": "Create Account", "request": { "name": "Create Account", @@ -10120,7 +10703,7 @@ }, "response": [ { - "id": "0c8aef7c-4c48-41ee-a56c-7ea9a3d4b5af", + "id": "322402b3-5c47-4fde-82d6-19f1bd4dce2b", "name": "Async task details", "originalRequest": { "url": { @@ -10176,7 +10759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c65c6d2-6cf4-4393-af5f-4f0da202252e", + "id": "b85590f3-898d-45d7-8831-bb8c44e4f616", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10232,7 +10815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb45c099-e28f-40c2-b514-53e3c14c9bae", + "id": "46f5a08b-5693-49b8-b73d-9efff129aa6b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10288,7 +10871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78170411-ebc3-4e31-ac38-3ff51ebee4ab", + "id": "300cf294-48fb-4293-be0e-18e150a89331", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10344,7 +10927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27af6af8-2db1-411f-b293-b3c0cb86c3e8", + "id": "4623e89a-dca6-4f70-b677-00e4c7e41b85", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10400,7 +10983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f09b30f-d5e3-42c4-a6dc-9ce83d2934e7", + "id": "f87ca1be-6831-4fb2-83be-b2bca1b8944c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10462,7 +11045,7 @@ } }, { - "id": "f33be497-8b53-47b9-9018-67be4cd0cafb", + "id": "f6d00b07-c31f-40a1-9f9a-3dfb27c70899", "name": "Account Details", "request": { "name": "Account Details", @@ -10503,7 +11086,7 @@ }, "response": [ { - "id": "99350584-224e-47e0-a671-be1f6ca1860e", + "id": "45dca85f-31be-4e25-8048-047592104de4", "name": "An account object", "originalRequest": { "url": { @@ -10547,7 +11130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b71039bc-9d25-4d5e-b750-256d7ef7e082", + "id": "e87e0193-e7f7-48dc-bf0c-336cd52ac624", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10591,7 +11174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13c3458c-b65d-4a02-958b-dd271f61df40", + "id": "b97195db-9494-4244-80a4-92253e591eca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10635,7 +11218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56089568-67c2-4828-a106-c0c4e0816b5c", + "id": "1035ed82-7e2d-46c4-9686-ee2787e8d11e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10679,7 +11262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b7d02bb-799b-4224-a343-8eab4a4f900f", + "id": "7ce8c965-c395-4755-a735-2b3b36edefea", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -10723,7 +11306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "652846cb-5cae-4a8a-86e0-819d812470df", + "id": "6b703b9a-5154-4ebb-ad17-fba94c8b1572", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10767,7 +11350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a98d7df-29cf-42de-a14b-0137f9ec7cd8", + "id": "e00c7eae-9f36-4df9-b0f1-646ec4d536c6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10817,7 +11400,7 @@ } }, { - "id": "017bd520-c2eb-4da4-bf10-b509b5e72e2c", + "id": "df93f374-6239-4411-a4bc-8eff61b23fff", "name": "Update Account", "request": { "name": "Update Account", @@ -10871,7 +11454,7 @@ }, "response": [ { - "id": "3ad34d71-d405-401b-b0e8-20d6fbd782f0", + "id": "dd7ee1cb-75e6-4fe2-b662-b2084aa253eb", "name": "Accepted. Update request accepted and is in progress.", "originalRequest": { "url": { @@ -10928,7 +11511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7376871f-0765-4d41-a001-c2e2e147a06f", + "id": "aa79fd15-e886-4937-90c7-bd755b571fb7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10985,7 +11568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "397f298b-2931-452e-993c-b95ed9e1b561", + "id": "4859af97-b7cd-4bf8-8412-6db0ab696ec3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11042,7 +11625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "841798e4-6751-4445-871a-d04f70a98c98", + "id": "e9eba38e-2e58-4087-a6a6-312b1ac1451a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11099,7 +11682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b903c86-08e3-4a36-871a-aab9aad39e41", + "id": "3ab00106-d3df-437e-b59b-2763e7bf4f8e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -11156,7 +11739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a552d112-b4fc-4700-88a9-3d407c400a95", + "id": "c9c51482-856a-4b4b-892d-0f8d3b3d6d0b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11213,7 +11796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21ec66dc-c14e-4b20-979c-2346557a2abf", + "id": "0fdeda33-6457-4017-a5df-a2ff5000c74a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11276,7 +11859,7 @@ } }, { - "id": "d9deac81-88e4-4fd8-a6a7-bcbe2de50dcb", + "id": "562e0f23-a108-4d7b-93b9-a12e098c5fc7", "name": "Update Account", "request": { "name": "Update Account", @@ -11330,7 +11913,7 @@ }, "response": [ { - "id": "9035c4d9-c278-4969-b233-b2a9c39bf142", + "id": "ca235672-38a3-494f-9eb6-d4b9e69852df", "name": "Async task details", "originalRequest": { "url": { @@ -11387,7 +11970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58859abf-933f-4de9-ad10-52d275b8e072", + "id": "8ff2261d-ef6b-4527-8b2b-af3faa947f0a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11444,7 +12027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58f239b5-eb5d-492b-a591-6c97e81118a8", + "id": "2569da91-acfe-4e9e-b03c-6784d5471013", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11501,7 +12084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1eabc9b9-d4c6-4de0-8b2c-a0c58295350d", + "id": "28ef3f7e-bee9-4209-928b-5e6ff03c2f94", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11558,7 +12141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d713190b-e6b3-4f73-bcb4-a514c2a9e9e1", + "id": "203f0c14-43d8-4d99-8fcd-e044dbfdcd08", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -11615,7 +12198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "261d71aa-f3e0-4550-975f-515d138ce5a9", + "id": "5a9391fb-ea00-49f5-b31e-a131f2fa454a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11672,7 +12255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b68f2c60-4809-49d6-8334-52a1ab39aa61", + "id": "bf71fb56-407a-490a-9b97-9669c9a86371", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11735,7 +12318,7 @@ } }, { - "id": "402cf9a0-cd67-4a47-806e-8113d68c78c0", + "id": "b235d2aa-d8d5-436a-986a-1fc128c20c84", "name": "Delete Account", "request": { "name": "Delete Account", @@ -11776,7 +12359,7 @@ }, "response": [ { - "id": "a05d5609-9bc6-4894-9835-4440d09f65a1", + "id": "d32ee7e9-dd97-49e2-a6aa-6070e59f1a17", "name": "Async task details", "originalRequest": { "url": { @@ -11820,7 +12403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e166fc7-0afb-4843-8574-4f4056ab30bf", + "id": "054905ce-6518-461e-9391-31fc2a218c93", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11864,7 +12447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba22d238-0a93-42dc-9559-75b02382c77d", + "id": "1517ea0d-ea50-40c1-b604-300d976efc2d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11908,7 +12491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3af3dfd2-d1ce-4978-ac3d-e2bd821db55f", + "id": "5b952bd5-23f2-46cc-90ab-0ef8e3081bcd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11952,7 +12535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db00371c-3a3b-4852-98d5-224f2c2fb47d", + "id": "b79a2cd5-d896-42e7-b051-12ad9657b0eb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -11996,7 +12579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06dc6943-c6e4-4bdd-9e85-7982a74482d3", + "id": "3976ea90-b1da-4561-bcb2-1a7b726a4337", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12040,7 +12623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "021fdfdf-95cb-42bd-9a1d-6edb5c859cd7", + "id": "0f105da3-2278-4a72-a505-2f6c69b44cc3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12090,7 +12673,7 @@ } }, { - "id": "4da0473b-55f9-47b3-81ef-f0326a8c7342", + "id": "32bd8c0f-4d76-49ff-bfff-7b4fe45061ff", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -12160,7 +12743,7 @@ }, "response": [ { - "id": "74e24069-fe9a-4657-a917-8265ba44daae", + "id": "df5455e3-e7b9-4926-b140-219b3dd07253", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -12233,7 +12816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9724189f-34ff-474a-b3ef-f694822fc5c4", + "id": "ad443275-267c-49d8-840b-b36de3325e34", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12306,7 +12889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa8461e5-282f-4dc3-86e6-e6bbc54b8dfe", + "id": "0137df50-8e48-43f6-9b3f-0f82292090ba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12379,7 +12962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63c56c51-2626-4ad6-b9e7-78464e5cf9bf", + "id": "4c26896a-5b77-481c-b73d-0f366826d79c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12452,7 +13035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99d3dc06-b434-464d-9620-e34a28f5c201", + "id": "d27ecd14-7d2b-4abe-b8a9-a48d7d8152b0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -12525,7 +13108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1446560-0ee9-45cb-8365-18ef143b1ab9", + "id": "c08adf98-bc68-44c6-a210-2cb9d3256064", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12598,7 +13181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d8be3c3-ae3e-4d46-89ff-76fadd536bcc", + "id": "20611de3-d954-4827-8608-f07965886d83", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12677,7 +13260,7 @@ } }, { - "id": "fedae557-abb5-4c8f-870b-e415e025ecd8", + "id": "af832e8c-57c6-429e-a61d-a002397f68e2", "name": "Reload Account", "request": { "name": "Reload Account", @@ -12719,7 +13302,7 @@ }, "response": [ { - "id": "9bdaa675-072b-4953-9143-3d256beff631", + "id": "591f89bf-75a5-44ce-ade9-036f6ddb3332", "name": "Async task details", "originalRequest": { "url": { @@ -12764,7 +13347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80572817-c7d9-40b7-ab2c-9933370c2d2c", + "id": "fed3df00-f525-4c5d-9298-e5b092e2e3ff", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12809,7 +13392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b66d423-7286-4d2f-816b-0707b65b4acc", + "id": "d656c514-104a-464c-8527-58bc5e6e0362", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12854,7 +13437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8e7c7bf-0419-4f48-a905-49df8716b89b", + "id": "3581265b-7566-4478-9afb-6f0ed2093f67", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12899,7 +13482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f56c1ea-26a4-4aed-9666-9abf0b3c9153", + "id": "5a6a4086-c7b0-49bb-b37f-ad29b36569bc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -12944,7 +13527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58b523d3-b132-4599-a646-1a2991244cf1", + "id": "e4030871-2024-4c2e-90ce-810fb9cb8206", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12989,7 +13572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15995675-4620-4b94-b905-585f9c5569ee", + "id": "53fae665-f4b7-44b8-9c70-685fa44ecea3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13040,7 +13623,7 @@ } }, { - "id": "f72b6f34-01c7-4521-8cd8-345c7d716317", + "id": "43aafb2c-a4e3-4808-91dc-126bff7fad87", "name": "Enable Account", "request": { "name": "Enable Account", @@ -13095,7 +13678,7 @@ }, "response": [ { - "id": "7c3c0e5d-b4a3-4aae-9c3e-155ad6834fcb", + "id": "45ecbbf9-53b1-4ca6-b1d0-3c6162aab52a", "name": "Async task details", "originalRequest": { "url": { @@ -13153,7 +13736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0edfefb-0116-4bb0-b1e0-5d9e225f473f", + "id": "d42c87ba-505f-48e2-95e9-c252c2cd1c2e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13211,7 +13794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c5986d8-d7df-461a-be15-1283c929ff69", + "id": "802d3895-4293-40ec-b5a8-6b443cf7c743", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13269,7 +13852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac8976be-8124-442b-baaf-7f48816f80a4", + "id": "e4350f5a-567c-4d6d-a4a0-89effcd9ed7e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13327,7 +13910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28657b00-8eab-4e76-9a56-d8a1d83ebf16", + "id": "64b834dc-3b56-4d3f-aa93-975c3a0b1ef9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13385,7 +13968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7e626bb-0212-48e6-9ab2-725362674439", + "id": "9fc13451-1215-41b3-9255-3c6222136a56", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13443,7 +14026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c939a2a-d187-4e4e-b621-9ce1c44e6457", + "id": "963ed035-4f8e-4694-9c98-2edc074c0514", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13507,7 +14090,7 @@ } }, { - "id": "8e30202e-476c-42db-bb08-b5b1830c9e49", + "id": "0ddc7e48-d06a-4500-8128-102d0f1422bf", "name": "Disable Account", "request": { "name": "Disable Account", @@ -13562,7 +14145,7 @@ }, "response": [ { - "id": "e4c4927f-69d9-46a6-9ba6-fcb475104d76", + "id": "9fae5cb3-b4d7-48d4-b9e2-7d6c90aa7ca2", "name": "Async task details", "originalRequest": { "url": { @@ -13620,7 +14203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f34215f3-ff79-4a69-96ce-416e7b3b76a4", + "id": "f26b2c10-11b5-4301-8fd0-3b7f6e076178", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13678,7 +14261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d5a9b15-0605-433d-bef3-a27857ba08ad", + "id": "df26a18b-bebf-4f2a-8bac-ae11611faf3a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13736,7 +14319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e18ba68-f9a9-4daf-9b79-03c6a9bfce7a", + "id": "55605682-7a7e-4228-ae09-6f25f4c4d669", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13794,7 +14377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75af1bab-d7a8-4e51-a3e5-dd730ff51664", + "id": "44f2e553-9936-49e2-aab6-7f8c066fc0d4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13852,7 +14435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84e7a570-83ae-47c3-ba63-95714f257f96", + "id": "46b0fd3d-7cde-48ee-a720-1e39bbbe054f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13910,7 +14493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8c6a3bd-f778-483e-af9e-120346e85139", + "id": "f77ec66d-d87e-4e17-a935-e2db1f515625", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13974,7 +14557,7 @@ } }, { - "id": "59b7d2f4-5fa1-40f5-a67d-25cd6cc666f3", + "id": "051e2a15-2f6d-44e8-8ed1-fad8db435d9b", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -14029,7 +14612,7 @@ }, "response": [ { - "id": "cb24eada-3ff3-40e9-808b-c4e1560e179a", + "id": "e1f67d56-0918-4bd7-83e7-cc88d095d9d5", "name": "Async task details", "originalRequest": { "url": { @@ -14087,7 +14670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5ff8b6e-cc40-4dc2-9b4e-4bcc0c365c7f", + "id": "09aadc6a-e0a5-4c87-8662-fdcb854fe8a4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14145,7 +14728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24a481e3-32f5-47e5-a916-ef24f7429fa6", + "id": "607cf91a-0144-471d-a0e8-e69ecf0d007e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14203,7 +14786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7df4b287-320b-46de-8260-727ea79995b4", + "id": "811bdd60-df8d-4ceb-87cf-119d8e25576f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14261,7 +14844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f36db2d-f6c5-4082-9d60-a430f677709d", + "id": "b529a74f-4f99-4606-a17f-4585d97e7305", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -14319,7 +14902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "929ee755-01bc-46dc-8469-e732ad859109", + "id": "8fcf70e6-f2f0-4fb6-b9a3-73524e8f9ae0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14377,7 +14960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a05a925-dae9-42ab-9178-d616b33e54f9", + "id": "1b74dd3e-8147-4fe4-be40-ba5572255ad6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14447,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": "8a125cbb-87c3-4770-8c91-ce96cfe789a1", + "id": "1a0fa1dc-4197-4ea3-8e78-32ffac109703", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -14549,7 +15132,7 @@ }, "response": [ { - "id": "d4256df3-8a73-4772-aac0-2310b4ea08f6", + "id": "0f030ce3-2157-4c9f-b88f-e680c47b4ff7", "name": "List of account activities", "originalRequest": { "url": { @@ -14665,7 +15248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19dfce1a-5829-47e1-8065-cf2b3d56ae87", + "id": "f0398a8f-bef3-4525-941c-b717f5a80ed7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14781,7 +15364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f53ec1f-66c4-446c-bc75-8f55983fe492", + "id": "c793348c-1a1f-465b-a0c9-d6764a6befa5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14897,7 +15480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08af4c05-937c-411a-b768-a8ec89eedbf8", + "id": "6d4a58d0-efc0-45f9-afd6-f816957e3c3b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15013,7 +15596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f2427b9-3001-41a6-899c-8232599986f7", + "id": "0b648633-2d63-471c-96cc-7a9fa1902704", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15129,7 +15712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92859d53-2f98-4389-93bc-4e7a6efce289", + "id": "cee14d04-7c30-4456-a8a4-a52f549634a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15251,7 +15834,7 @@ } }, { - "id": "eedf5d42-b849-421a-8d58-a8802b9b48e9", + "id": "af71522a-4078-4f9a-bd95-6ee2298bd3a2", "name": "Get an Account Activity", "request": { "name": "Get an Account Activity", @@ -15292,7 +15875,7 @@ }, "response": [ { - "id": "a017dd8d-360e-44f5-8f77-54070f16194f", + "id": "fd164c89-8ca4-42c3-9fbc-cc47b0a13c7a", "name": "An account activity object", "originalRequest": { "url": { @@ -15336,7 +15919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc68b9ee-5093-4393-86d9-d75542202c14", + "id": "ccd74026-b88a-477e-89a3-7fe351f62912", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15380,7 +15963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32bd7623-20ea-4d61-b3a4-206cc17cfd1c", + "id": "aa5f6aeb-508c-47dd-b287-d27f5ebaa356", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15424,7 +16007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d737ec6-4f47-4eb7-9de8-8c15bc6e984c", + "id": "8d44731a-35e0-4ba2-a981-0e4ea445342b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15468,7 +16051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0b07ba3-8cc3-4a95-b216-f8f1c15463ca", + "id": "93ff6691-7589-40c2-ac05-48c5a6abd794", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15512,7 +16095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b9f2dd0-aac9-44d9-90cf-50e192fa482c", + "id": "72b27995-7daa-4145-a2c3-855fa2436361", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15556,7 +16139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69b24843-76ef-447c-b66f-55757b518597", + "id": "35904eb8-7af0-47be-8485-b60518d1f992", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15612,7 +16195,7 @@ "description": "Authentication service user retrieval and user capabilities update", "item": [ { - "id": "cabc713e-939b-4ddd-beb1-8e93d992f6ec", + "id": "bd774124-a3f8-4e93-8136-c168f8faab6b", "name": "Auth User Details", "request": { "name": "Auth User Details", @@ -15653,7 +16236,7 @@ }, "response": [ { - "id": "2d3128a7-fdf3-4755-8aa8-15694b99f6a8", + "id": "d8dfeac2-23f9-4b14-960c-b50b56689bb6", "name": "The specified user's authentication system details.", "originalRequest": { "url": { @@ -15697,7 +16280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79d843e1-2f00-4c2e-a689-bf4d726f5be5", + "id": "5182a6b1-0314-4799-817d-72a2a669ca0e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15741,7 +16324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec1cf37f-956b-4cf7-860f-fbe00314606e", + "id": "0cbbf486-f4dd-451b-a829-68c01825f6b8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15785,7 +16368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32d00f47-2f7b-4045-8bdf-4a4ba7179e1d", + "id": "b9812994-c556-4ffd-a462-3b957a3f267c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15829,7 +16412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e9e4599-e046-4f66-abe1-ecc213fd0102", + "id": "d1576084-2a7e-4afb-a670-390a917e45ca", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15873,7 +16456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65bc6018-abf8-48f5-8128-4575126a55d3", + "id": "7f181113-c4ea-48e0-bbdf-9f739a3a5b70", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15917,7 +16500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccd30103-c05d-438f-8ef8-b7c92cdac020", + "id": "f843b712-fdc8-4da0-bcfe-8f641933ef38", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15967,7 +16550,7 @@ } }, { - "id": "a6e08871-dfee-427c-aa0f-541892b11997", + "id": "e67c5b22-7e6d-4fd7-ac26-66a5de1846c5", "name": "Auth User Update", "request": { "name": "Auth User Update", @@ -16021,7 +16604,7 @@ }, "response": [ { - "id": "82549ff6-7d37-491e-a382-c0ddbd4611b6", + "id": "f6df0a7c-f3a4-4018-8cc6-fb6fa543ec5c", "name": "Auth user updated.", "originalRequest": { "url": { @@ -16078,7 +16661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfb0cff3-ac70-4f68-8ef2-512f8e5049a8", + "id": "b0c3447d-c5c5-4dbf-89e5-f2ed886131dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16135,7 +16718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1f82cd2-3e7c-4499-81e5-cf7b6c90bde1", + "id": "6a2f9846-1861-4041-970d-55a2bfbaf8af", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16192,7 +16775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "579221ca-bb47-42a7-8763-494f83156dd3", + "id": "41a6a9c1-b0af-4290-92e2-e5dcbb76cb2b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16249,7 +16832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c8f1fab-a685-428f-835a-293dddf6926d", + "id": "278b3267-f92f-4f6e-ae44-469e11f5c998", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16306,7 +16889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3e3c8cd-0821-41b1-a50a-e14cc886b2d6", + "id": "629998e9-f5b8-4ec2-a247-ee094b8d6648", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16363,7 +16946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81b5fe48-91f4-4495-9fd2-d6e0df03aeca", + "id": "6c93ed5c-c317-45ad-b021-963827b4b5cd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16427,12 +17010,2859 @@ } ] }, + { + "name": "Branding", + "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": "be6da1ee-96a8-4b1b-bf3d-58c79add57f6", + "name": "List of branding items", + "request": { + "name": "List of branding items", + "description": { + "content": "This API endpoint returns a list of branding items.\n\nA token with API, ORG_ADMIN authority is required to call this API.", + "type": "text/plain" + }, + "url": { + "path": [ + "brandings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "1a680b1f-792e-40d1-be9f-d52a0728bfc6", + "name": "A list of branding items.", + "originalRequest": { + "url": { + "path": [ + "brandings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"magna ut\",\n \"navigationColor\": \"commodo aliquip\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n },\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"dolor sit\",\n \"navigationColor\": \"sit ullamco esse\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "2261f06e-7e8f-4a28-acf6-d806f7d33ec7", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "brandings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "de3ab1b3-f147-40f1-a7aa-62bcc21449c7", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "brandings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "85d27ed5-2a36-4a59-9de1-b2f779692bef", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "brandings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "82d0570d-12f7-402a-997f-e0da54f63688", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "brandings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ac1b45d9-e357-4b4d-ae1a-7b9d215d0a1f", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "brandings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "dd19f32e-3526-464f-b5de-787b8659ac5c", + "name": "Create a branding item", + "request": { + "name": "Create a branding item", + "description": { + "content": "This API endpoint creates a branding item.\nA token with API, ORG_ADMIN authority is required to call this API.", + "type": "text/plain" + }, + "url": { + "path": [ + "brandings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "POST", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "response": [ + { + "id": "10a4db15-cc99-41a6-a5c2-960ed81a7929", + "name": "Branding item created", + "originalRequest": { + "url": { + "path": [ + "brandings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "status": "Created", + "code": 201, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"id labore consectetur\",\n \"navigationColor\": \"ex\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "dd8be9b8-1992-4e16-b04a-7ae16b689350", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "brandings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "f219c423-db5e-42e7-8d5b-07b21102e3c7", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "brandings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "6f0ff375-5a40-463e-b6ca-1a20cbac5fed", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "brandings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "b2687f9a-e603-4d79-9b46-a945048b13e4", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "brandings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "9c93288f-f3bc-4bdd-b36b-b464df50b7c6", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "brandings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "8f68b9d7-8c70-485c-b743-38d6ec9a6fff", + "name": "Get a branding item", + "request": { + "name": "Get a branding item", + "description": { + "content": "This API endpoint retrieves information for an existing branding item by name.\nA token with API, ORG_ADMIN authority is required to call this API.", + "type": "text/plain" + }, + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "default", + "key": "name", + "disabled": true, + "description": { + "content": "(Required) The name of the branding item to be retrieved", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "27e80c5d-0c20-44d9-bee3-c188312877e9", + "name": "A branding item object", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"id labore consectetur\",\n \"navigationColor\": \"ex\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "71253864-db83-4e52-a0d2-735906f4fe3c", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "92d321aa-ece0-46c6-a645-76f4ded60b42", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "66b45dab-9fbd-4eca-b397-213f610f31aa", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ce45b321-1aa7-4566-92a1-8f4a18a65562", + "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Not Found", + "code": 404, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"404 Not found\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server did not find a current representation for the target resource.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ef3110da-f100-4863-bfde-e6fa043549da", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "37c567bc-a491-4e3c-8e97-9107121ed22f", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "2e2c0be4-14e6-494a-ac96-36ca1b97d65f", + "name": "Update a branding item", + "request": { + "name": "Update a branding item", + "description": { + "content": "This API endpoint updates information for an existing branding item.\nA token with API, ORG_ADMIN authority is required to call this API.", + "type": "text/plain" + }, + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "default", + "key": "name", + "disabled": true, + "description": { + "content": "(Required) The name of the branding item to be retrieved", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "PUT", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "response": [ + { + "id": "fc6517b6-f045-4f89-a081-f03d2fff9664", + "name": "Branding item updated", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"id labore consectetur\",\n \"navigationColor\": \"ex\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "9b21ef52-a107-4067-9af5-94766dbf981e", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "a272af96-9169-4bd9-9403-3a3d50ac6758", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "eaa85a4a-cb5e-4667-bd07-12ee95df4bd8", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "e3619c11-3615-46f5-bfc8-8af1955ad5c0", + "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "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": "c729dc64-7d20-4105-9edc-07ed58858430", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ae4f8cf6-a149-479a-8478-1573173ad2a3", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) name of branding item", + "type": "text/plain" + }, + "key": "name", + "value": "custom-branding-item", + "type": "text" + }, + { + "description": { + "content": "(Required) product name", + "type": "text/plain" + }, + "key": "productName", + "value": "product name", + "type": "text" + }, + { + "description": { + "content": "hex value of color for action button", + "type": "text/plain" + }, + "key": "actionButtonColor", + "value": "0074D9", + "type": "text" + }, + { + "description": { + "content": "hex value of color for link", + "type": "text/plain" + }, + "key": "activeLinkColor", + "value": "irure aliqua ullamco ex", + "type": "text" + }, + { + "description": { + "content": "hex value of color for navigation bar", + "type": "text/plain" + }, + "key": "navigationColor", + "value": "in consequat sed", + "type": "text" + }, + { + "description": { + "content": "email from address", + "type": "text/plain" + }, + "key": "emailFromAddress", + "value": "no-reply@sailpoint.com", + "type": "text" + }, + { + "description": { + "content": "login information message", + "type": "text/plain" + }, + "key": "loginInformationalMessage", + "value": "", + "type": "text" + }, + { + "description": { + "content": "png file with logo", + "type": "text/plain" + }, + "key": "fileStandard", + "value": "\\x00\\x00\\x00\\x02", + "type": "text" + } + ] + } + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "8e8d74d6-6f22-49a5-b6fb-c7b42ac8ad77", + "name": "Delete a branding item", + "request": { + "name": "Delete a branding item", + "description": { + "content": "This API endpoint delete information for an existing branding item by name.\nA token with API, ORG_ADMIN authority is required to call this API.", + "type": "text/plain" + }, + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "default", + "key": "name", + "disabled": true, + "description": { + "content": "(Required) The name of the branding item to be deleted", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "DELETE", + "body": {} + }, + "response": [ + { + "id": "53681141-66ed-436f-942c-175d44110b95", + "name": "No content - indicates the request was successful but there is no content to be returned in the response.", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "No Content", + "code": 204, + "header": [], + "cookie": [], + "_postman_previewlanguage": "text" + }, + { + "id": "79d6f3fa-b01a-4956-a55c-782083165905", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "4b4f1dd9-f14b-4596-a120-40983af0ae3a", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "721c7491-e8e7-45e3-8adb-145ef4000ae3", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "fa44d593-5e6a-4fed-b22e-371a2e7e948d", + "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "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": "0f26dcc1-3bf2-4e37-9044-6651ff8de1de", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "bc30a131-dbc9-461e-bd37-b616f4e3ecb3", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "brandings", + ":name" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + } + ] + }, { "name": "Certification Campaigns", "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": "3c138186-0acd-49fd-9f2d-cc973164b227", + "id": "ba803903-17d9-4f84-bc55-9c9626953464", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -16516,7 +19946,7 @@ }, "response": [ { - "id": "e1c5380c-4148-4d2f-9718-8eacdeb33f56", + "id": "d1bf9ba6-88f3-48b6-92a1-d3be26aa6b7c", "name": "Slim Campaign", "originalRequest": { "url": { @@ -16614,7 +20044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b606b3cc-7f18-41ea-98f8-e751834c962a", + "id": "1f5b2def-0690-4242-942b-3085ba4ca2c1", "name": "Full Campaign", "originalRequest": { "url": { @@ -16712,7 +20142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "810bb3f3-10a5-4018-80ff-9f7b6693a2ab", + "id": "9a84dca1-b192-44a4-8975-0ab1edbc08db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16810,7 +20240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46714665-159e-4550-bd32-a83e8228c0a8", + "id": "fd9f280f-34b9-46f3-abef-97a34c7b8bad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16908,7 +20338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7eb3d3e4-97ba-40a4-8bf9-9f87ae25a55d", + "id": "50e59e66-e537-49d9-a7a1-f0280f813bf3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17006,7 +20436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d297388-2eea-427d-a277-bdbe85cffea3", + "id": "b77c5e02-ebab-470c-8602-4d0f147fa99d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17104,7 +20534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a927f507-3222-4587-ac75-09d04b8c4160", + "id": "6b1758c1-f755-412e-85e3-cfe3d02e3ad0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17208,7 +20638,7 @@ } }, { - "id": "920c02cc-f387-432d-b067-107835fec3c7", + "id": "45092807-91c0-46f8-89f2-0a0f2ee8e033", "name": "Create a campaign", "request": { "name": "Create a campaign", @@ -17250,7 +20680,7 @@ }, "response": [ { - "id": "33495834-e11b-4967-bc4a-364202521ab1", + "id": "e107debe-e4ce-4115-8144-3ba487b67fe1", "name": "Manager", "originalRequest": { "url": { @@ -17306,7 +20736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a29367d1-0812-4447-a902-a497c1b1754e", + "id": "f64413bd-b641-480f-b875-28b7eab712a5", "name": "Search", "originalRequest": { "url": { @@ -17362,7 +20792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc52e18c-54b0-4a83-bb9c-207681bfa34a", + "id": "bdcf4796-12e1-4ca1-92dc-e518a13f84e1", "name": "Source Owner", "originalRequest": { "url": { @@ -17418,7 +20848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de043540-a8db-40d5-9c4d-ecf072601091", + "id": "77d83d54-b45e-4654-901f-9ca936c3d68c", "name": "Role Composition", "originalRequest": { "url": { @@ -17474,7 +20904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef444833-a2e7-4d16-b4fc-0badddb08075", + "id": "7ce78089-9735-4908-8d48-a36a7d212f61", "name": "Manager", "originalRequest": { "url": { @@ -17530,7 +20960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72a6dc78-f5e6-4d0f-ba08-4b9c2efa24fe", + "id": "b0a18307-397c-4be4-9ca9-93e65842600a", "name": "Manager", "originalRequest": { "url": { @@ -17586,7 +21016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72b5bc46-983c-41f3-be50-038ad9fa286f", + "id": "013a8ff4-7405-418e-ad01-8fbff22239a9", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -17642,7 +21072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5d716d6-4351-42e6-9ec6-1a32352b6a5b", + "id": "bf4ed4a6-ceef-400e-83b8-036d85a2a53b", "name": "Manager", "originalRequest": { "url": { @@ -17698,7 +21128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e10a3fb-70b8-48c3-8434-2f38386e7ab4", + "id": "c37d0154-b418-4956-8e49-210336e732b7", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -17760,7 +21190,7 @@ } }, { - "id": "20df8e10-922d-4637-9e1c-4bed4143b4fc", + "id": "a10b64a3-b87d-483b-bd25-fc397514cc5a", "name": "Get a campaign", "request": { "name": "Get a campaign", @@ -17801,7 +21231,7 @@ }, "response": [ { - "id": "881bfe41-9e6b-4a39-a88a-457a7e019e39", + "id": "ca5d730c-685f-46e0-9bd3-d0292eddd0e3", "name": "Manager", "originalRequest": { "url": { @@ -17845,7 +21275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b27f4163-c74e-4878-9d02-0858a53ed751", + "id": "c642a51a-b594-45c3-bcda-bdb56166d6c7", "name": "Search", "originalRequest": { "url": { @@ -17889,7 +21319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cae2835a-f223-4a5b-b083-ed4e5db22ada", + "id": "dd72c6b6-c60e-4f6e-9f0f-256d0cc1abaf", "name": "Source Owner", "originalRequest": { "url": { @@ -17933,7 +21363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cfd175e-a512-46b3-b7a4-20dd39b1e3b6", + "id": "5e39a745-5725-4b4a-9f45-1d5627e45d54", "name": "RoleComposition", "originalRequest": { "url": { @@ -17977,7 +21407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "374af52a-d269-4e7c-b330-6ab3b55267d0", + "id": "13fb810f-03ec-44fb-bfc6-2967589401ad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18021,7 +21451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3ad8c72-f173-43d5-ae3b-ee57eb1273fe", + "id": "f4af1431-c715-4fbe-a8b7-6f8ee854328a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18065,7 +21495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eef2f186-92d9-41e9-8bab-f215ae97d323", + "id": "a3b48296-6a07-49ef-b39c-4612f5ae74e2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18109,7 +21539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ccda8d0-2d96-48e6-abbc-20698fa022fa", + "id": "6253da80-7262-485a-8904-b0c8628faacc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18153,7 +21583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4eec6be-8651-4072-976d-a5f8f3518894", + "id": "503a0f04-0cee-4422-ad7d-79e0cd9571cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18197,7 +21627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea935749-2f1c-4984-a510-dafc118dadea", + "id": "5f5163e2-0934-4d5e-b494-e7740ebd4054", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18247,7 +21677,7 @@ } }, { - "id": "e4691aff-a5be-4638-850a-8357d3d03554", + "id": "06942523-ca0e-48e5-98e8-d8d4ded1e15b", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -18301,7 +21731,7 @@ }, "response": [ { - "id": "ea2c8a00-911d-4f30-85f1-d4bab28f1827", + "id": "0c31d39f-5530-4437-ac2a-effc9a0fd5cf", "name": "Manager", "originalRequest": { "url": { @@ -18358,7 +21788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43f4417e-c687-429d-a6af-ff945a671791", + "id": "def9f031-7406-4887-b43b-1aac3ec88dbe", "name": "Search", "originalRequest": { "url": { @@ -18415,7 +21845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f14281c-9f2e-4eb2-b050-fa0f29a66f8b", + "id": "5dee2938-e700-42d7-986e-447ea5c448fc", "name": "Source Owner", "originalRequest": { "url": { @@ -18472,7 +21902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b35d0e6-e56c-415e-8330-a2d47cd15e8c", + "id": "3f1f544c-b01d-48da-b9a0-25b1966084de", "name": "RoleComposition", "originalRequest": { "url": { @@ -18529,7 +21959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19b9f19c-547a-4100-8c72-d60b75cbecf3", + "id": "4bb83353-acd8-466a-af71-a2f005e83732", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18586,7 +22016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a6deedc-888f-4eea-b763-7596cc4c0583", + "id": "e7c96986-1fd9-4960-818b-81e34fbe232b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18643,7 +22073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c181fe44-670e-4661-b38f-3a188a668d93", + "id": "4c0ac904-7c49-47bd-95bf-a7b7b36eb170", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18700,7 +22130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24fec551-9756-4273-81f6-92026a79ed30", + "id": "d561db78-2773-45d9-a30d-922a9e7979cf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18757,7 +22187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e04cbdc-ea94-4147-b0b2-04916dea4a81", + "id": "0e63162a-0f12-4894-b70b-549385f9ef7e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18814,7 +22244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2defbead-c13d-4bcb-9a26-a5b2bbca82aa", + "id": "6e8fcca8-0fbc-4219-9048-58b7258f77fc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18877,7 +22307,7 @@ } }, { - "id": "f65fef90-67ac-4ecb-a91f-a239ef527f88", + "id": "0384ce4f-a815-4b5e-abb6-460a68b666b7", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -18932,7 +22362,7 @@ }, "response": [ { - "id": "16e7d5bf-a105-4f14-b1b3-7b04d8104d54", + "id": "285e2b34-46cc-4c45-88ce-daf67a10d06c", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -18990,7 +22420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3469d6be-b88a-47b2-b11d-96ead273aac2", + "id": "4b6513f9-f274-4fba-b8d3-c7340c15fc67", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19048,7 +22478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3157411a-21a0-4a49-91a1-8628dd0f4e88", + "id": "bf589fe7-2fa0-48c0-bc76-aacd56884ab4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19106,7 +22536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6289797-a2e4-4aea-8b0b-c61ae26bf1e3", + "id": "491263be-6a5f-45c0-b45a-f3e23a01169e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19164,7 +22594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76941371-013c-4edd-8193-1cd80db80b7d", + "id": "bace15d2-9d24-47a1-99b9-cedae17bd866", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19222,7 +22652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96c50cd4-9ac9-42d6-bd01-c859d91c82cb", + "id": "4c36cfd4-0475-4183-a0b5-48b9ad6f2cd7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19280,7 +22710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eca11f0e-f344-4685-9b49-279b091e2c92", + "id": "7f18555a-c196-4e09-8e09-8c8912965af9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19344,7 +22774,7 @@ } }, { - "id": "597eebc0-adea-4f9a-8efe-43c9546a3bfc", + "id": "fb51b815-3910-4787-9d95-36e2c040a4c4", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -19399,7 +22829,7 @@ }, "response": [ { - "id": "9e0a2432-7c96-4290-b53a-0d68fa19e1f6", + "id": "76483ed6-291b-4135-b7ce-081508c5cdd6", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -19457,7 +22887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "462c823e-516f-4a99-9135-4b8d096119e1", + "id": "9b97144b-0b4f-4bda-a63e-8739d86a3b0c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19515,7 +22945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84647a88-d144-4249-b2ad-80dcf751d209", + "id": "5969f963-fabc-490f-8652-72fb5bfcc3fd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19573,7 +23003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70d000f0-2d60-4878-bd6c-9da14b177c58", + "id": "54225cdc-40b2-46af-94a6-bc5bdf0ef789", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19631,7 +23061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee96d97c-d248-443a-bf14-87bd88edf6de", + "id": "171ef903-4443-445d-88a8-43922b7acfd4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19689,7 +23119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40c8bfec-c186-4c08-be4a-b2c7a18d59b5", + "id": "fd225ea3-c4e0-40c8-9ddb-633195ffed8d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19747,7 +23177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06260f3d-68e2-40c7-a18e-b43540fb9215", + "id": "f398d22b-08e4-4cbe-b118-abdba4f4f574", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19811,7 +23241,7 @@ } }, { - "id": "781a6910-5d17-41e5-bca6-a1b3a55ab249", + "id": "253db0f4-f318-4526-b3d0-5bce585c1333", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -19866,7 +23296,7 @@ }, "response": [ { - "id": "5ecc16e4-759d-42fb-80c1-8c2673ac4d1d", + "id": "951bf72c-3300-47a4-91a2-64a7981eea75", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -19924,7 +23354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "355cd353-735f-4fdf-8f9a-4fe566e184cb", + "id": "05e1cabc-395f-4bf7-9f46-055be4bfcf0c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19982,7 +23412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce98f0da-d3e3-4ba6-ba39-8f8370d503f5", + "id": "725bb567-257f-4044-9201-27d9eb44102b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20040,7 +23470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfe08521-1d0c-45ae-931c-3c429dbd04d0", + "id": "6132433d-ce5b-4059-8e34-01529ca19779", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20098,7 +23528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1171ec06-f753-491a-a300-34cee8cde6d6", + "id": "e26f90df-6412-44f6-9df2-0cecbeeb4697", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20156,7 +23586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61decba7-ade2-41f8-b753-a1adb60a5dc9", + "id": "e4844a3c-c1c0-4e86-a261-7c4fa57800cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20214,7 +23644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4d88540-a3b0-4117-9097-fc0fac252450", + "id": "1f990389-30c7-4fd1-9c68-e3578a4e77bf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20278,7 +23708,7 @@ } }, { - "id": "b4019b2a-9685-4e25-a99c-9b2a74fdc2d1", + "id": "53835b07-00a1-4835-9344-98b26931236c", "name": "Deletes Campaigns", "request": { "name": "Deletes Campaigns", @@ -20321,7 +23751,7 @@ }, "response": [ { - "id": "39f58c77-0688-4142-a406-519d5f18aba7", + "id": "9294ca44-0c7e-4679-b8b0-df707d6fbd7e", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -20378,7 +23808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f454b3a-de5b-4e4a-b36f-4d7df1bfd01d", + "id": "743e33a6-0b6e-40a6-8716-939ae8ed5aa4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20435,7 +23865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b357003a-00fc-4e67-b246-31d489a3cc7b", + "id": "9bfc5089-1f7f-42b3-95d3-5f0211ee9364", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20492,7 +23922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3425b233-cc27-44a9-8f0a-87d1b7256240", + "id": "915c0adb-e260-4e87-a900-e2cb6e8094bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20549,7 +23979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72c9cf16-3d26-4343-8fe1-af0ecc1b0db3", + "id": "84119ec5-7f13-40ef-96be-26b7a7304a7f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20606,7 +24036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f689708-c57e-4a36-b980-e9d2b2dc82e4", + "id": "07acf7c8-c7ab-4587-a8b2-f3ce66d01543", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20663,7 +24093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c58c39f-9a57-4fbf-8b08-202ccb56ac79", + "id": "a2640b52-80a1-46a3-a5bb-68a636b6c6c4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20726,7 +24156,7 @@ } }, { - "id": "ad1ab2a0-d06c-4e6c-9246-f7c958ee46f0", + "id": "7adf1686-d58e-46b3-8508-6256a5856bc0", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -20768,7 +24198,7 @@ }, "response": [ { - "id": "5351520e-a11f-490d-84f2-c3e057d3ff18", + "id": "bf871ee3-dab6-4b2f-af73-1a632052d722", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -20813,7 +24243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9c11a53-825e-4090-a4f8-4590084caa60", + "id": "7ba20a2b-496b-4950-8315-e8c6e4e755c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20858,7 +24288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85c8809b-a347-4820-99d5-eaab01c15ab7", + "id": "6d9329f0-cc10-403e-b4d6-f3d7668bbd21", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20903,7 +24333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "059e8800-4516-4a77-a480-6e49b99dedfc", + "id": "16f9528d-cbc0-4618-812b-7af72ec0fb2e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20948,7 +24378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70da8f71-5caa-45b0-904c-975b000704f9", + "id": "eafb210b-1632-4097-a37d-11f51e877b51", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20993,7 +24423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f983923f-b0a6-47b5-862b-be45e32706a4", + "id": "1ee1bce6-2d2e-4827-a201-3f04bad4009a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21038,7 +24468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e34a2ee6-afaf-4c6d-bb4a-19726dbe5a1c", + "id": "5c5c57de-0d1f-4177-af55-136ddb3c504b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21089,7 +24519,7 @@ } }, { - "id": "2d98d9fa-5459-4890-b679-b40c4f0b7035", + "id": "28812473-2df1-4e20-99df-9381f5f910e6", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -21131,7 +24561,7 @@ }, "response": [ { - "id": "a1cd85ee-affc-4e80-96a5-b7a76cc204ff", + "id": "e9aed26d-9411-4f45-9afb-9f3d5a335e24", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -21176,7 +24606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a58aff58-c410-435d-b64d-8dd7089c7f61", + "id": "5134dcc1-623d-4180-a92a-4d9077461738", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21221,7 +24651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1df1e115-1cd7-4678-88a3-49652f0249b0", + "id": "f013e3dc-713f-4b35-9646-285921db8a56", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21266,7 +24696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba1db819-8ec3-4429-8b74-eb1ed91fda73", + "id": "e73c5f65-6d31-458e-b6b6-54352b29dae5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21311,7 +24741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8165c9bf-4402-434f-809d-acece6d39429", + "id": "5a787aac-2d81-40e0-af31-f1326839168d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21356,7 +24786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e41bcac3-3044-4076-aeec-95841cfd4009", + "id": "e222b42f-a0c0-4c2b-9f9c-362ca91d2c50", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21401,7 +24831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59c9b65d-e4b4-4869-8ea0-df034874f39b", + "id": "8441a7a8-d678-4dd2-9ae8-4c34099a5d73", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21452,7 +24882,7 @@ } }, { - "id": "ad664161-227d-4a17-9b79-a0a58da26e09", + "id": "b8c67b63-18be-4e09-b8e0-de6031ecfeb0", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -21505,7 +24935,7 @@ }, "response": [ { - "id": "f95a0b36-089b-49fc-b5d0-b99b637f8905", + "id": "55bf37f4-3656-401d-ad49-6a770e1b3c8d", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -21551,7 +24981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05fbbf05-7018-4016-800d-02f760eb4568", + "id": "fb9c067d-b16f-42a1-ac5c-cd93a06e846f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21597,7 +25027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2935ffbd-bb46-4094-960a-fc5a0c754d60", + "id": "9de9d215-0c99-4ac4-addf-3fd54972f660", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21643,7 +25073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6366120-7a70-49f6-ba5b-55f943eba6df", + "id": "76711deb-c222-424c-b09a-a2357e5da212", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21689,7 +25119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "060ed67f-5fa4-4841-a2eb-639d51558acb", + "id": "45568f4b-b1ac-4663-b33b-67bd71867f7b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21735,7 +25165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1007d959-a8dd-4cec-b84f-8ae032460397", + "id": "a58c2415-1fcb-4c10-bddf-29e94d4e3968", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21781,7 +25211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6f521ca-5765-451e-882a-57a26005ebb5", + "id": "219e773f-5230-475c-b3ca-3883185ef821", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21833,7 +25263,7 @@ } }, { - "id": "72c3e7c6-50c8-467d-8988-46f45db88b8a", + "id": "79c235df-dce9-4a41-b7aa-bde8d330b816", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -21863,7 +25293,7 @@ }, "response": [ { - "id": "7330c8f2-ea8a-445b-bacd-f71d5910afa2", + "id": "c583ecd1-6598-48c5-83d8-7c05da9a74f2", "name": "Campaign Report Configuration", "originalRequest": { "url": { @@ -21907,7 +25337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf067ca9-281b-4d61-a16b-a69509954cfb", + "id": "3369f6dc-6431-4b99-9205-5abcec415d51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21951,7 +25381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ddb48e8-6d89-4aa6-955f-7eaaf5e076d8", + "id": "fd5c8636-ab3f-4dbb-ab2b-3fb4f30b68d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21995,7 +25425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7202d406-30a0-4655-b61a-e787c8797875", + "id": "fbf799b0-18ed-44ed-9f29-3316b429fe3e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22039,7 +25469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa10f35e-c8b5-413b-afb9-04f3d47a5d37", + "id": "9c84172a-bfb8-4129-b822-61ee0f4fea7c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22083,7 +25513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aefd705a-a259-4428-a555-c8371ac9381a", + "id": "64107c9e-92f6-4d10-919d-8c70f64216dc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22133,7 +25563,7 @@ } }, { - "id": "5c8a9bf2-56fa-4d24-a13a-afe6cfdf36b0", + "id": "59c0b669-986a-43e4-bfe0-eaac30b8c1cb", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -22176,7 +25606,7 @@ }, "response": [ { - "id": "ceeca8e9-f078-4485-b24e-1da601b56bd7", + "id": "103203ef-6d3a-4ae3-837b-b5e6ea3c51df", "name": "The persisted Campaign Report Configuration", "originalRequest": { "url": { @@ -22233,7 +25663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "193686b2-b71a-4062-858a-31a20ba57665", + "id": "be942cf9-942f-4df2-bc3f-f8c7ebde0443", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22290,7 +25720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19c28413-0bd2-4c6f-8f01-251ee5a0c776", + "id": "0be99615-a632-4469-b05f-f715b8f610bd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22347,7 +25777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f87b7bc0-a06d-4f8a-a403-d9b554910332", + "id": "37fb5edf-45e4-4adc-9a8a-06ae1d1265aa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22404,7 +25834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91633ddd-b6ed-484b-b805-18cdf6de32fd", + "id": "5835041b-e7e2-4fc8-8382-55b01b702a56", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22461,7 +25891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2775e50-b5d3-48e6-a73f-b2d16af1974d", + "id": "a50559c8-51d7-461f-97e8-0cadce731dd7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22524,7 +25954,7 @@ } }, { - "id": "896d7f07-0989-40df-a7d0-c6342705dfac", + "id": "0a823ea5-7280-4e35-933b-dab61e02abdf", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -22566,7 +25996,7 @@ }, "response": [ { - "id": "ab48c59d-fae0-4ca8-b544-230b21925aed", + "id": "f53c1f2c-5946-4e24-a32a-fda8f44f49c4", "name": "Manager", "originalRequest": { "url": { @@ -22622,7 +26052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6214575-efc3-425e-bdd2-52b3f76e90c6", + "id": "0bc11834-6413-4962-a683-1c6e422dad36", "name": "Search", "originalRequest": { "url": { @@ -22678,7 +26108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51915dc1-dec6-474d-aff4-dc170a0efd88", + "id": "2e46b942-6224-408a-b911-1e21643e68b3", "name": "Source Owner", "originalRequest": { "url": { @@ -22734,7 +26164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26fe167b-1511-4360-b33c-11ea6d0d67b6", + "id": "1b7193ea-4d52-4744-a535-4e553d3d98e3", "name": "RoleComposition", "originalRequest": { "url": { @@ -22790,7 +26220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e2ca8d4-d5e2-49c6-b2be-d3341b6ef800", + "id": "e6de0a84-bbb4-4799-a70a-3e5b28ff49e7", "name": "Manager", "originalRequest": { "url": { @@ -22846,7 +26276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "867bf4f3-cd48-4d1b-8fe9-067cdd6cbeb9", + "id": "911a5da1-a0b0-47f5-b997-5399eef85382", "name": "Manager", "originalRequest": { "url": { @@ -22902,7 +26332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "787d0661-a004-4674-9f0b-ca5cb5c733c7", + "id": "dd7fe4f5-7f34-48a1-862e-d3fc8906ce0d", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -22958,7 +26388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aca0a6d5-0b68-459e-aef1-f65e18ae7eb8", + "id": "f431312c-8ee9-42de-8a92-6bffe744504c", "name": "Manager", "originalRequest": { "url": { @@ -23014,7 +26444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18aed94c-c8f7-43d8-8810-b60bffe1d2e7", + "id": "d3361187-a795-4d14-8dfc-930ae2bbb3aa", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -23076,7 +26506,7 @@ } }, { - "id": "a2e7e7bc-0416-43bf-88ed-6fa1c85a7ad8", + "id": "af9001f8-cfc9-42ce-896c-b2a36659bdd1", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -23151,7 +26581,7 @@ }, "response": [ { - "id": "66d20551-21fc-4fd6-a46c-67686649d477", + "id": "2ff2a852-5466-4762-9439-d1e9e4ca18e5", "name": "List of campaign template objects", "originalRequest": { "url": { @@ -23240,7 +26670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "905cf914-8404-4b52-8e45-b2a193be3c17", + "id": "5f4b686f-b5c1-4b73-9de0-bf7ad634961a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23329,7 +26759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bc6d61a-991c-4c86-a75e-42738b29033d", + "id": "afc3461a-e3c4-4cb0-9310-5e18d3fe371d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23418,7 +26848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd59a0ea-a497-4bfe-a3df-2d4a25b1faf7", + "id": "74cd5355-7d38-44b6-9cb7-4e05b9bf95bd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23507,7 +26937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25fdb0a4-8ec0-4669-9c14-08077879d471", + "id": "53f89806-c393-456f-906e-ed3bf6718777", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23596,7 +27026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b8883e5-3cd7-4c77-a7c1-769d186582a6", + "id": "6df8f52a-3118-4833-badf-cd69913b7a54", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23691,7 +27121,7 @@ } }, { - "id": "c718f57d-364d-4988-b33e-b701ff3ce9bc", + "id": "477a0c8b-530b-4992-be34-d488126aa16d", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -23745,7 +27175,7 @@ }, "response": [ { - "id": "2ec1c6e3-cad2-4a3e-8251-3c34969b8f5e", + "id": "bbca2dac-122a-46b9-8041-52db218a4029", "name": "Manager", "originalRequest": { "url": { @@ -23802,7 +27232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16e18a03-bad5-4f64-a31d-408e2b8515c3", + "id": "36d17d81-df97-4cdc-be47-1d40bfe1f587", "name": "Search", "originalRequest": { "url": { @@ -23859,7 +27289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a75c949-f219-489b-aa6f-6ea9c2092167", + "id": "0132d0f1-715b-436f-baf6-70b572a8a226", "name": "Source Owner", "originalRequest": { "url": { @@ -23916,7 +27346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "233d7877-8293-4d4e-aedc-2dbf58ead409", + "id": "fa57c7c0-06be-4d8e-83e8-e9148aacbb2b", "name": "RoleComposition", "originalRequest": { "url": { @@ -23973,7 +27403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75d90801-d331-46bf-beb2-c8c8b2dfabb1", + "id": "56ff3da0-588e-49c4-b551-8e9754dd59bd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24030,7 +27460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a1529f6-e7cc-469c-90c2-1937029e5a28", + "id": "e2a3a630-7e6f-4a94-82f9-6b23e830841f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24087,7 +27517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a6d06ef-23c6-4282-bdd2-ade51f12d4ad", + "id": "63d1402e-0220-4072-951b-b32f2b05462d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24144,7 +27574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d5db420-f802-4e1b-8e44-a82864156149", + "id": "72a780a0-5d25-44ef-aeb1-cd9211591298", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24201,7 +27631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6c857a5-2344-4a9a-92c4-4f52a3f65bfa", + "id": "ced7b1e8-d891-48f0-93ff-af7347bc5b93", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24258,7 +27688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cf84b91-2fdb-43c1-be3a-e689ce2e1d0f", + "id": "77b9224b-282a-4cd0-89fc-c96d02c63e97", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24321,7 +27751,7 @@ } }, { - "id": "df6959a7-8e8c-4158-87b8-b40b8efaefef", + "id": "d697e6b6-51b7-4cc7-98b9-3e1f5bc06e61", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -24362,7 +27792,7 @@ }, "response": [ { - "id": "89932c4d-9e04-40d3-87cb-243072f14614", + "id": "3d5dfdc4-d624-4598-b0a4-b3f27f62c816", "name": "Manager", "originalRequest": { "url": { @@ -24406,7 +27836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81ae1bed-66e2-4158-9d38-2f9581da332e", + "id": "76e679ea-c0c5-4778-bf39-af1b1d75b6ad", "name": "Search", "originalRequest": { "url": { @@ -24450,7 +27880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70a0634b-d785-4506-90f5-ebeb291b9056", + "id": "cae87477-e33f-4ec1-b7e4-67ae4ae8fa82", "name": "Source Owner", "originalRequest": { "url": { @@ -24494,7 +27924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d834b2fa-aea7-48bb-84c5-3583d2a807cd", + "id": "2eaf1558-fec7-4bed-a6f1-ef4a7c306647", "name": "RoleComposition", "originalRequest": { "url": { @@ -24538,7 +27968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b2e920f-3b16-4b72-80e3-8a4f102f349f", + "id": "c33d6020-aee7-4c12-a3d8-55712999e28b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24582,7 +28012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dda5838d-5de6-49c1-84b0-7b07350ded9c", + "id": "6a408fab-4408-45b4-af6d-97b6a0c3f419", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24626,7 +28056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e20e9ced-1860-47d7-87d2-df06edd3e7b1", + "id": "1131ed12-bc4f-4b02-a8d1-71d073f76832", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24670,7 +28100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a91f7c9f-c0b3-46ef-96ec-d725429f0054", + "id": "9df19c08-c4ce-4b28-ac07-7867fbb5b7b9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24714,7 +28144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caec1f67-cda9-4629-b4ff-1af8019d1286", + "id": "220ec785-84e4-4589-890e-234cb68c88eb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24758,7 +28188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0042d353-9f63-4285-ad12-4e0c5c1f1484", + "id": "3be9c078-f8b9-481d-8813-9ee61c5f5edf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24808,7 +28238,7 @@ } }, { - "id": "83020e11-d951-4d8f-b737-d01a7db9e6b3", + "id": "fac2614c-796d-4048-a94e-14541fc1a018", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -24849,7 +28279,7 @@ }, "response": [ { - "id": "e2f93cc1-d85b-4b57-9ddb-121b411058e2", + "id": "5bc3faa2-74a4-45da-bab3-6e8323439a2c", "name": "The campaign template was successfully deleted.", "originalRequest": { "url": { @@ -24883,7 +28313,7 @@ "_postman_previewlanguage": "text" }, { - "id": "612e0250-07c0-4e35-8a9d-a4798b069ff6", + "id": "8a137757-9c0b-4d12-85ed-556aa911884b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24927,7 +28357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d216565-545c-413f-8b80-93f86b43c83b", + "id": "859edc86-a20c-4287-bbd2-b5cfa5811a9c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24971,7 +28401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c636094-1f4a-4e14-abac-233649664af2", + "id": "ed62be22-e567-4aba-af2d-1f75714e77f9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25015,7 +28445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edbda89c-eb2f-43be-8405-b3585ce1c4c4", + "id": "047e9da2-1af3-4db5-b24d-73978ebade2b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25059,7 +28489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f2a9243-b800-4d22-b8ab-07b31bc57e43", + "id": "53b9c395-ee00-4d98-ba8f-ccd8e7ee4e66", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25103,7 +28533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85cd7fcf-b4c4-488f-87c9-3967c3a43ac4", + "id": "6e208b15-bc14-4572-a643-deb5a78d8689", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25153,7 +28583,7 @@ } }, { - "id": "dce2c2ce-bc8b-43c9-8a77-bab999ff068d", + "id": "f6143196-5d8d-4cde-ba78-f54ed8fa1045", "name": "Gets a Campaign Template's Schedule", "request": { "name": "Gets a Campaign Template's Schedule", @@ -25195,7 +28625,7 @@ }, "response": [ { - "id": "f8400642-894c-4914-961d-ddc2522a67d7", + "id": "90424c3f-6716-4189-b46e-22a5fe41fa87", "name": "The current schedule for the campaign template. See the PUT endpoint documentation for more examples.", "originalRequest": { "url": { @@ -25240,7 +28670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ce626a3-393b-4496-aae4-2df35b2ed49d", + "id": "944f08d2-d6be-48af-b30b-68c97a726a05", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25285,7 +28715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7ae41e5-b1fe-4c58-a631-da1ed7214645", + "id": "5710b3cd-1e2b-4c89-ad8b-036ed98d5260", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25330,7 +28760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13a4da6b-72db-4b7e-868b-da576e7fa076", + "id": "df7e35b5-2c40-48c9-8257-1b9e5b369678", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25375,7 +28805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b920e6d9-04f9-4b75-a9f4-d86f32f5a7f7", + "id": "52e853d5-4825-4c5a-90ee-03e0f66a7201", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25420,7 +28850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66a248b6-8e06-4dcd-85ca-c873fde09d62", + "id": "5c37874d-a6d5-4e39-80c8-acd31e82adb1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25465,7 +28895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d7e383f-f567-46e0-b80a-92c53a536733", + "id": "23b068fe-3eaa-4b31-a974-39a777d12851", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25516,7 +28946,7 @@ } }, { - "id": "8bfb2140-3deb-43a4-87b4-69063d2e5a3e", + "id": "116e1e9e-4422-4420-9445-4ca905c505a7", "name": "Sets a Campaign Template's Schedule", "request": { "name": "Sets a Campaign Template's Schedule", @@ -25571,7 +29001,7 @@ }, "response": [ { - "id": "8baff7f9-5df1-4580-a848-d28e3ad2506d", + "id": "2660ef4d-e34e-4a47-b40d-4cd34f134c87", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -25619,7 +29049,7 @@ "_postman_previewlanguage": "text" }, { - "id": "37ad2402-043a-43ee-bf85-af9a695afbe0", + "id": "e78c490e-a64b-47b1-924f-56d497e63608", "name": "Monthly", "originalRequest": { "url": { @@ -25677,7 +29107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9845673c-757b-4500-a0b9-c0778ea8d025", + "id": "8741b1a8-6d70-4f5e-84dd-cb18ec79c6ea", "name": "Once a year", "originalRequest": { "url": { @@ -25735,7 +29165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74670e2e-dca5-4128-af5b-0430b0b9c832", + "id": "f07d0342-c6fd-4274-9374-84c763c86cc7", "name": "Quarterly", "originalRequest": { "url": { @@ -25793,7 +29223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33817807-0444-4b36-80e5-a0a26ea5c4eb", + "id": "776202a6-c35c-4b77-8933-4b4089184a6c", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -25851,7 +29281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deef9bae-d741-42f7-a48f-29484d5f8345", + "id": "dbb5d3de-dc8a-4178-adb6-e140fe5d4101", "name": "On a Specific Date", "originalRequest": { "url": { @@ -25909,7 +29339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56579704-ae57-46f8-b29a-025122e0a4bf", + "id": "63c3990d-820d-4952-bcb4-d2ee92b97f71", "name": "Once a year", "originalRequest": { "url": { @@ -25967,7 +29397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d577ce8-4bb2-4f01-9366-eb8268e6eade", + "id": "d81ce831-478b-438f-85f8-8404500329cd", "name": "Quarterly", "originalRequest": { "url": { @@ -26025,7 +29455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37642198-2d33-49c3-8407-832d12f9b2d2", + "id": "6cc00c7f-f706-4c5a-b8ab-53f06cbda572", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -26083,7 +29513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "095971a8-31da-4bcf-b535-d1bcc93a28b2", + "id": "44853e72-06f5-4b58-97cf-e9c00474d37d", "name": "On a Specific Date", "originalRequest": { "url": { @@ -26141,7 +29571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0c331ee-e063-47fb-86e0-7a4a79c480f5", + "id": "06e25e6f-6602-4c78-9ec1-f31795de7620", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -26199,7 +29629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed8a5408-c37d-47c9-a403-891d33cb07e5", + "id": "b3965a1f-1d6f-461e-81ac-6ac45fb8f94e", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -26257,7 +29687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15178c56-ccc3-4a9d-9bbd-3190f244f487", + "id": "ee041e80-f55b-4c35-a456-20e80af2bf56", "name": "On a Specific Date", "originalRequest": { "url": { @@ -26315,7 +29745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cacd8ee-66da-43e7-8647-2d261f214c9f", + "id": "5711e4e4-6433-4a50-af2c-6699177e0ce9", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -26373,7 +29803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01379316-c8e8-44f0-8acd-8fda066f1320", + "id": "c1610349-bcf4-4d9c-8bc0-308b5164c3b2", "name": "On a Specific Date", "originalRequest": { "url": { @@ -26431,7 +29861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd781b0c-07cb-46f9-9d89-497702a20499", + "id": "ab73ae1e-3fa2-4993-9231-bfb33b4be840", "name": "On a Specific Date", "originalRequest": { "url": { @@ -26489,7 +29919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ac2c239-31a2-4c75-88a4-e3da029c0e51", + "id": "69f44248-87ec-47d2-8d6f-57fb5af8cc60", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -26553,7 +29983,7 @@ } }, { - "id": "4a5dd31b-cc76-4708-8ab0-14add438e009", + "id": "363d1534-f914-44b0-8860-03ef845056c9", "name": "Deletes a Campaign Template's Schedule", "request": { "name": "Deletes a Campaign Template's Schedule", @@ -26595,7 +30025,7 @@ }, "response": [ { - "id": "043cdb7e-8349-49b4-9732-cbdf87f19d2c", + "id": "bb3d8eac-b0dd-42d8-b0ca-aaba38f8f7be", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -26630,7 +30060,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8defe5e9-5a00-4b5a-aab9-30b033b1896d", + "id": "83fa6744-8fc1-4ba5-9dfc-68146163f710", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26675,7 +30105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2873c98-b2e8-4bd1-9bd3-41aeee86cea2", + "id": "6fd59fe1-813d-4dc1-8214-cd7752479fa0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26720,7 +30150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a477580e-ce3c-441d-a248-2e3682e8c3b1", + "id": "0540af3f-5177-4c8a-8f2a-7da6c827fcc2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26765,7 +30195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e05d726c-70aa-4b8a-a08c-2a930e706d40", + "id": "3ada380c-1e32-434d-a17b-21dbc90dbc1f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -26810,7 +30240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12944a94-0950-4a62-8f67-f2e4516a9edd", + "id": "f44d9d20-de38-416d-86a8-790eb35c0e42", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26855,7 +30285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03011a4c-3575-4f36-b1c3-007178bca5b1", + "id": "7c3cc962-00ab-4071-be00-18d61a399c70", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26906,7 +30336,7 @@ } }, { - "id": "cf3f91c9-d28e-4fc6-8d06-a586bf635501", + "id": "0af5bf32-0e47-4d07-b146-d6bba54524e7", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -26948,7 +30378,7 @@ }, "response": [ { - "id": "7e591f5a-2984-44c7-ba60-052e7ef2f6e5", + "id": "c9218e8c-5f50-4a76-97db-445694e6b89f", "name": "Indicates a campaign was successfully generated from this template, and returns a reference to the new campaign.", "originalRequest": { "url": { @@ -26993,7 +30423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e957e22a-a839-49f5-9e24-a372e12702ea", + "id": "61dd9b51-ef18-43e8-9503-2bfc97e371b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27038,7 +30468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "636909e6-fa80-4ea7-b207-644b410427a0", + "id": "ac466176-079e-4146-8f73-460918dbae1c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27083,7 +30513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1a6aabd-6640-4222-8e38-0b871c91ca7d", + "id": "22e7ad17-40e6-4f01-a0f6-ae7e4649cc2a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27128,7 +30558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cdd3a45-d291-43a9-9e3e-064db4edb80e", + "id": "88a88a27-d90b-405b-a017-75f4c65929cf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27173,7 +30603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97583e16-fe41-455a-82c1-3296a30e6289", + "id": "72adc099-87f0-47f0-ad9d-3dede7273f10", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27230,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": "628af42d-4b83-4466-979a-f16430ad5b55", + "id": "1e1d334f-3cc9-49a0-a6eb-9db9c870cbcc", "name": "Identity Campaign Certifications by IDs", "request": { "name": "Identity Campaign Certifications by IDs", @@ -27314,7 +30744,7 @@ }, "response": [ { - "id": "522de408-c3db-43a5-be80-39748025a5c2", + "id": "3600421b-fa62-490c-bebd-e4deec983481", "name": "List of identity campaign certifications", "originalRequest": { "url": { @@ -27412,7 +30842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6468a998-1b74-4053-9fbf-e26fd8d4e065", + "id": "0408bacb-94ab-4076-94e3-c63c41508fa6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27510,7 +30940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f01fa53-aa98-4f05-a6ba-d659525e7d68", + "id": "6bd70dc2-f6ae-4265-a2ad-74f0fabfa89a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27608,7 +31038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a91a08a7-0487-432a-8090-4d6f27f23e54", + "id": "466f3796-a026-42d0-9d3c-b51f120a4dc3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27706,7 +31136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f86edda-1faf-4e9b-b981-991f94c5648d", + "id": "656293b2-3c17-437a-9ca0-a20f0aa50ce5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27804,7 +31234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ea630c4-49e7-48a0-bdb6-51cc1fe87621", + "id": "320a1504-8641-4944-8814-74d9eaccf78d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27908,7 +31338,7 @@ } }, { - "id": "1d7fe3ee-eedd-4540-88d0-494afce0d612", + "id": "0c953fa2-784a-4fbd-a821-71488a1d0942", "name": "Identity Certification by ID", "request": { "name": "Identity Certification by ID", @@ -27949,7 +31379,7 @@ }, "response": [ { - "id": "5678a1c6-f1e1-4695-a712-485dfe556e8a", + "id": "63eb3a96-54e1-45b2-8ed6-cda9e4bfc953", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -27993,7 +31423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "628afd70-c1f0-48d3-88d3-464d0d570cd7", + "id": "6f06cd8b-2c27-436c-9c42-3f9acf14416e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28037,7 +31467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72bb28b9-3c9a-4014-bc77-3ae16837a594", + "id": "2e074a2e-2f89-4f9e-8a11-e8c6a35e2016", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28081,7 +31511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d464f94-9649-479a-8ed3-23a2d3253991", + "id": "cb75e157-6bef-43af-8b3b-496dc3272abb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28125,7 +31555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a037fc4-770c-46f8-91b1-e71782fcc0c1", + "id": "8f25caf4-14aa-4e49-8d0f-c9355c8a41a3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28169,7 +31599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "768fe744-adf4-45d6-a645-7dd4c69ae4ea", + "id": "239e95a4-17ca-4b5f-855c-f45de22841a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28213,7 +31643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36badaa9-037d-4b14-b4b4-46d6c476285a", + "id": "e4d64a05-7336-463d-a786-dafbf6dc95bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28263,7 +31693,7 @@ } }, { - "id": "3abca3c2-03d7-4f73-993b-cf0612846e82", + "id": "4c7d3e33-3945-4656-8549-a6888f2bd9a4", "name": "List of Access Review Items", "request": { "name": "List of Access Review Items", @@ -28378,7 +31808,7 @@ }, "response": [ { - "id": "97ce9964-9a6d-4973-a3e3-db5e8380d268", + "id": "55d45bdd-e8b4-40ee-8f41-2613e52a2346", "name": "A list of access review items", "originalRequest": { "url": { @@ -28496,7 +31926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3e2ce84-bd3c-4c77-ba3d-a8faafb8b9eb", + "id": "74eddc01-9d36-4b02-b6e0-15db9cfd0637", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28614,7 +32044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbd325d9-4df1-4e7c-b77b-75212e404903", + "id": "23311e2b-da9c-4fbc-8b61-a29e95a325f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28732,7 +32162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e616031d-de46-4b10-adb1-ca1404c4d1bc", + "id": "d5c88656-2773-487f-aaa4-60182c6c7404", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28850,7 +32280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6829340-0013-4cef-8f48-3031eb22c4c6", + "id": "ec0ca066-bda2-4528-8f8f-8e32c00d4d9d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28968,7 +32398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bd52ee3-d938-49b3-9cbb-b128ef4eddc0", + "id": "c091c445-7210-45dd-aa16-39a7eafba547", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29086,7 +32516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0966641a-91e5-499e-abc5-138bda1b75cf", + "id": "d5c8dabe-cc81-414e-b6d9-8ceba03f461c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29210,7 +32640,7 @@ } }, { - "id": "ab97b232-cada-4a3c-a2fb-b0e138b3c855", + "id": "f6348046-8d45-47d0-be38-98c132dffc51", "name": "Decide on a Certification Item", "request": { "name": "Decide on a Certification Item", @@ -29265,7 +32695,7 @@ }, "response": [ { - "id": "6f1b33d9-c3a1-4511-b0a5-ca22d5a976cc", + "id": "73fcbeb2-909d-4156-9db3-10754c227793", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -29323,7 +32753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56ddd094-00c4-4c56-9239-42698776bb62", + "id": "e63e848f-5e28-44ea-8f2c-dc1038bf96b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29381,7 +32811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5077ec5c-c9f1-4d85-8f11-c7ed0f4168f2", + "id": "8b238d34-01f8-4d42-8bd9-fad6ab41622d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29439,7 +32869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e403e850-b3a3-4664-89a2-3cdd6ee917e0", + "id": "3b0a86b7-12af-4efd-9f9c-f8e2fc869327", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29497,7 +32927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0cdddb2-8497-4160-bdad-a47882c3bb42", + "id": "e6fc3b7c-96d3-4fd7-8f8e-86328e9ddd3d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29555,7 +32985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8882e48e-8156-4a3a-ba0e-559ca0480aa6", + "id": "0eac9f2f-581e-4394-9239-02db686610bf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29613,7 +33043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4524532-16d3-4789-8d2f-c9a84d58e6a1", + "id": "ce7abedf-9631-4675-8b08-d8729ba9e2b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29677,7 +33107,7 @@ } }, { - "id": "6192c9cb-2781-4911-9d41-fdf360523e4d", + "id": "07a522bb-5f42-4e27-b84b-24d813851874", "name": "Reassign Identities or Items", "request": { "name": "Reassign Identities or Items", @@ -29732,7 +33162,7 @@ }, "response": [ { - "id": "3b76986a-9292-4ac2-a25b-f67a46267c0a", + "id": "9396a5f1-06d8-4d44-9469-373660b08e36", "name": "An identity campaign certification details after completing the reassignment.", "originalRequest": { "url": { @@ -29790,7 +33220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d64aaeb-c325-4c30-9e88-3a5bf83024d2", + "id": "2c42e548-31b9-4825-bfc2-60ef9a16581d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29848,7 +33278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "152bf64d-8b64-4dc2-bff8-c124a4791c5e", + "id": "39d67565-707a-4550-b8e8-93de30ac80dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29906,7 +33336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "279f44db-5d78-4cac-bdd8-be5dccd87179", + "id": "3689db3b-8164-4aeb-850b-13b347258382", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29964,7 +33394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e20f82fe-c2cf-4e65-9ead-d15a61eea261", + "id": "a672ac9c-7006-4f32-b0ef-1e4d4ccd29ad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30022,7 +33452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc3477ec-a2e5-4d94-a1dc-64171eec2f60", + "id": "6b535867-f41b-44ed-8bc4-9460eb133b37", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30080,7 +33510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3abe951c-7328-4c5c-8dea-dc4ab92d1d56", + "id": "9cdc1e32-f1f6-45ac-85c3-fa7ad369c008", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30144,7 +33574,7 @@ } }, { - "id": "8e9c83ad-0289-4cd0-9597-5137cc2aa809", + "id": "120c21d7-705e-4124-93a0-ebebd7267612", "name": "Finalize Identity Certification Decisions", "request": { "name": "Finalize Identity Certification Decisions", @@ -30186,7 +33616,7 @@ }, "response": [ { - "id": "07be420a-34f6-4e1b-bcc0-60118933bda9", + "id": "d383a886-e267-4615-b9cd-6c26d99a205e", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -30231,7 +33661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00e3956c-4418-4521-8c40-60b451af2a6e", + "id": "105f13c2-17bf-4ed2-9e4a-23e8741e763b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30276,7 +33706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c714a464-e9a5-47ea-88e8-6ee5c9c8ae84", + "id": "15d35303-6133-454c-8405-07b6efdd9b23", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30321,7 +33751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20ece968-f1e1-4ba2-94f2-d7a322dd044e", + "id": "0e6985d3-5b05-4102-9973-a838ba52f762", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30366,7 +33796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f10c1eb9-4b09-49d1-b53c-e092a1caa7a0", + "id": "9dbb5a0c-8fc7-433f-b8a8-82f0c701169a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30411,7 +33841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d21521c-c1b0-4992-bd30-e8aebb39fa9f", + "id": "c6ee57d2-391f-4c9a-b837-e8d77a135b19", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30456,7 +33886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b898d931-95f3-4d33-9c25-7d65973f920e", + "id": "6c2699fe-7d4a-431c-8431-a0ee84eac89d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30507,7 +33937,7 @@ } }, { - "id": "cb8f2b57-a79b-4c52-81d5-8ac62dfbc457", + "id": "736b35c6-b34b-4af6-815a-09b927e3c5c9", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -30598,7 +34028,7 @@ }, "response": [ { - "id": "1c1b04df-8aad-4e18-b2d8-1a0831c74997", + "id": "1671b816-c582-49d6-a999-c7d0cec2b055", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -30682,7 +34112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "415b4d25-ae38-47d6-9d11-b1fa6c3c2a20", + "id": "0848fc19-98ce-4c41-b538-af82cbbbdf3b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30766,7 +34196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da26f031-aabb-4ffd-a85b-4abea9f91381", + "id": "0a1d3714-0a06-425a-aed3-77ef47ca7eaa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30850,7 +34280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0eafba1-ad16-4685-9746-4839230af06c", + "id": "e395ca73-0c07-440d-8edc-40671248b19a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30934,7 +34364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d7e484e-f318-48ce-932c-d10648710f54", + "id": "51d76ef6-4483-4f84-a463-1568726e7111", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31018,7 +34448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f53abb82-d214-47f1-bdab-5aedfeb06bf5", + "id": "098c4650-7366-4376-be22-358228fbd513", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31102,7 +34532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cfa8ef6-dd24-4713-85e1-e22c90cd592b", + "id": "bb2102b9-f6b6-4112-8fc5-7bc4e766398c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31192,7 +34622,7 @@ } }, { - "id": "dc9e5cb3-250e-4693-878a-c673e24e2294", + "id": "544ef50e-a464-4aba-b4c9-9318cef83959", "name": "List of Reviewers for certification", "request": { "name": "List of Reviewers for certification", @@ -31280,7 +34710,7 @@ }, "response": [ { - "id": "b7a8e577-427a-47c4-aced-6f97a48056f7", + "id": "4b0bd8f0-1d28-4808-ba00-e6e3312be9dc", "name": "A list of reviewers", "originalRequest": { "url": { @@ -31371,7 +34801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46fcf7df-833b-4881-afa0-7108b91ea59b", + "id": "182004ed-56c2-4900-9381-7436882d72c4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31462,7 +34892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "534303fc-57c4-4959-9abd-c70b8c1ad516", + "id": "62a6b86b-8bd1-482f-85dc-3d12878dab6c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31553,7 +34983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02d06f34-6778-40e5-8138-fb9efc1891c6", + "id": "afdf6628-10d6-4189-bd84-ac2a52b81472", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31644,7 +35074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42d02867-f76e-4fd0-bd0f-c59a27b5605d", + "id": "eb20887f-da89-4bcf-9bc8-7c076f530058", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31735,7 +35165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "335010a3-68cc-4e50-8a4d-fa7a7021727a", + "id": "02cba799-5a0f-43ab-ae0a-fbbeaa48d431", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31826,7 +35256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a824f60-32eb-45bc-b19b-ed9888cc1878", + "id": "52142161-5fdd-4af0-95ae-71cd28ba3f65", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31923,7 +35353,7 @@ } }, { - "id": "1ab67f85-8391-4ef0-ac38-09e09a31560e", + "id": "de8a37ed-c1f5-41d1-9acc-0d082ffa0a94", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -31978,7 +35408,7 @@ }, "response": [ { - "id": "c498eb00-366c-4a4c-ac18-e0839ab26d8a", + "id": "fc23171d-93f9-464c-b999-1ede651eaa2c", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -32036,7 +35466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52745fad-1cc4-4b5b-b66c-86b4af910798", + "id": "271a1baa-1082-4fab-9c15-1ee332bf16f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32094,7 +35524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "980b043e-3ef7-4961-afd7-86e3c33f07e0", + "id": "8cc3b775-fc62-4bec-92b9-67973e5d3abf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32152,7 +35582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ca21fc9-54ea-4eaa-963e-a184226a1d61", + "id": "fd54b23d-db10-4810-8c5f-49a6f835ddb3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32210,7 +35640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f3426bb-8fdf-4a63-97ed-24344b21069b", + "id": "d1bf6716-346c-44b1-8b52-e1b1ccd2821c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -32268,7 +35698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1306a7ab-ea3c-49ab-801b-303b28e11b74", + "id": "cf9ae86b-f14f-4492-9794-a7a1009e4760", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32326,7 +35756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89030f3a-31ba-4191-8156-638a7b041077", + "id": "ea3b459a-74ea-4264-a3fb-4eeceb525339", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32390,7 +35820,7 @@ } }, { - "id": "d1a7fc82-b692-4a19-9c27-02d3d1f2254c", + "id": "50940411-04db-4ce2-a8ba-6fc45be80bd9", "name": "Certification Task by ID", "request": { "name": "Certification Task by ID", @@ -32431,7 +35861,7 @@ }, "response": [ { - "id": "e31c8976-2e84-4bc8-a56a-007d0af0f808", + "id": "6c43189b-4313-48fa-a0ab-0dc4a909deb8", "name": "A certification task", "originalRequest": { "url": { @@ -32475,7 +35905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "160fe0a5-8a1e-481e-bd7c-1566e8e631fd", + "id": "cfb54f37-54a4-4481-ac85-5985372e3c9b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32519,7 +35949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6848a632-756e-405a-a8e0-9e8322ef8daa", + "id": "38cfe510-3579-4967-9a6d-0eba89c8cabb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32563,7 +35993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "220ddafe-57bb-4574-9e2d-9a5dc5492e22", + "id": "893af7e1-4d80-43ba-85db-e76060dbc769", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32607,7 +36037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5588a6fe-ddaa-4b3d-b460-985763b46960", + "id": "dceb0c65-d723-48d6-a70c-af16021216d7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -32651,7 +36081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a973819-4431-4d33-87c6-2b8ff4a5eb5b", + "id": "6fb320e7-900e-453a-b638-b6a91f9f4e93", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32695,7 +36125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7162c17e-0cc2-4861-9e40-b60e682726e4", + "id": "f3760cf8-c7a1-4590-aa37-74a56ebe7e37", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32745,7 +36175,7 @@ } }, { - "id": "10fd5e2f-f4f1-46e9-a097-e762ed2ddd9e", + "id": "d857568b-a729-4fbd-82b3-b5bdca46fad1", "name": "List of Pending Certification Tasks", "request": { "name": "List of Pending Certification Tasks", @@ -32820,7 +36250,7 @@ }, "response": [ { - "id": "0cb51fa7-5e5f-4180-b193-8627260915c2", + "id": "32d6d932-09f6-4a88-aec9-6ebe2fbdb374", "name": "A list of pending certification tasks", "originalRequest": { "url": { @@ -32909,7 +36339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caa99f52-d832-488f-a019-9deac35e958f", + "id": "ed6a0a56-56a4-4113-afd9-948c79372a5a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32998,7 +36428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d63978a4-734f-42ff-a9a9-71e3768a1076", + "id": "e8a73cb8-a2d4-440e-b12a-f9d59ba78548", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33087,7 +36517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b93e6b6-09c5-4edc-879a-4e52cfb092c0", + "id": "688b3d91-e37e-407f-bf19-58e334e8ea30", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33176,7 +36606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3b1d294-017a-49ca-b954-9017d48c69cf", + "id": "b8cac2fc-4331-4fc9-bb35-1c390f51a995", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -33265,7 +36695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db3948b5-192a-4c32-81db-a3e42ab728ab", + "id": "b45e256f-e5b2-41fa-981e-3bfa986f9ae6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33354,7 +36784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c0ea18c-1d88-45eb-a9d7-eaa7d1fa6bfa", + "id": "186652e5-09dd-4dcc-8d21-f0c07071fb26", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33455,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": "820fa850-f8a3-4839-9845-c364f1a3f3a6", + "id": "368e3854-2487-4a4e-9fb6-dc2613b907c9", "name": "Summary of Certification Decisions", "request": { "name": "Summary of Certification Decisions", @@ -33507,7 +36937,7 @@ }, "response": [ { - "id": "4e26c93f-2d06-43f3-a836-4d2eacd8c9c9", + "id": "08a91ddd-cc18-423b-87f6-43e22f9777fe", "name": "Summary of the decisions made", "originalRequest": { "url": { @@ -33562,7 +36992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "768e8321-336c-4135-ae28-8f97fa6e1091", + "id": "e27a5242-aa9e-4c8e-835e-0c086148b846", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33617,7 +37047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6209546-e961-4a03-b4b8-c75c40927d51", + "id": "084de630-77d8-4851-97f2-baabe1e7b640", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33672,7 +37102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67bcbf22-d8a6-4b06-beda-10f5e85efa8b", + "id": "c63da20f-97d3-4036-aac1-ec16566dd421", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33727,7 +37157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec7b24d9-fd8f-486c-ab3c-19899cb77987", + "id": "b6180fe9-1893-410e-9647-ea64d4a7cfa0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -33782,7 +37212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0bb4645-ef8b-4947-a733-79cd906b2a50", + "id": "17e78311-fcf5-4fe0-a581-b2fb61153808", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33837,7 +37267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86d35f11-5e3a-4d25-a69d-b1f48d142ef2", + "id": "2842ff24-4688-406e-a9bc-1a4cbfbc4943", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33898,7 +37328,7 @@ } }, { - "id": "f84a547c-7996-474e-8853-37a364ada018", + "id": "bd3c612c-381f-4c81-b567-6c639fb41dcf", "name": "Identity Summaries for Campaign Certification", "request": { "name": "Identity Summaries for Campaign Certification", @@ -33986,7 +37416,7 @@ }, "response": [ { - "id": "39b43fb9-49c2-4b42-a56e-5c8ce2888c63", + "id": "5e35d057-719d-4667-8dcc-ae1521f3e748", "name": "List of identity summaries", "originalRequest": { "url": { @@ -34077,7 +37507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6dadd42-4648-4bc4-b9bb-c576a4ea82bc", + "id": "1a59f456-4832-4fdc-94bb-0aaf272e0e6a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34168,7 +37598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "755d4006-e226-442a-9ad3-97a930648ed7", + "id": "3e89d123-b2cb-49d8-8d87-77c227a91b38", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34259,7 +37689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d0d464c-fa2a-4aca-aef8-cfe941ef50e0", + "id": "ea431329-6be0-420e-b026-c7b8d1ba905f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34350,7 +37780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5f7ee49-0209-4976-9629-7375093db38d", + "id": "cb9d5747-763b-4cc2-b598-f7830e45c5ed", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -34441,7 +37871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47f94493-9249-45b2-91e8-5c6d6a4eb4ab", + "id": "ee86a7d2-e31c-4b2b-ab18-a4ff2c47630b", "name": "Too Many Requests - Returned in response to too many requests in 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 +37962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2127360-dbcb-467a-ad80-c87d97f9ff7e", + "id": "53fbe2f2-3c25-4a78-8a3d-27d6df520467", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34629,7 +38059,7 @@ } }, { - "id": "b4214454-74c8-4e0b-852e-f17035d19775", + "id": "02e9c434-1656-4823-870c-ed3e3faef970", "name": "Access Summaries", "request": { "name": "Access Summaries", @@ -34728,7 +38158,7 @@ }, "response": [ { - "id": "fce020c9-9b04-406b-9dc0-d923707d3c42", + "id": "799dd46c-fd2e-4bb4-aea6-eda9114af51e", "name": "List of access summaries", "originalRequest": { "url": { @@ -34820,7 +38250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8945d165-6e72-4260-b14d-5117a42dcaff", + "id": "23bfcf9c-8c62-4938-a1b6-61cce35438b5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34912,7 +38342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7047b8e2-93d6-43fe-ac7a-844bb1bd57ec", + "id": "b5751a9f-5fca-4d26-95ce-24e1d3a313f1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -35004,7 +38434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d737ada-84c4-4794-9893-5b8ada39fa6f", + "id": "7e040663-60d1-4cb6-b3aa-723061fe343a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -35096,7 +38526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9244bf88-c706-4b66-96ee-7d41e50c596c", + "id": "23cd0a58-b205-4dd2-9f6c-a7b3affe40a4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -35188,7 +38618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9af9dc9-9cd4-4182-9a65-88fe58c2341e", + "id": "c4196581-323f-44d3-8862-ea0d7f150aab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35280,7 +38710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc5bbbe8-e4ea-45dc-8ea8-7e3e03e1a584", + "id": "f102b1b8-edd4-4ef9-b019-37a02790510e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35378,7 +38808,7 @@ } }, { - "id": "20209576-5fae-4155-bd25-009fce3672ef", + "id": "07263585-0289-4d85-9ae3-1c9d5616be62", "name": "Summary for Identity", "request": { "name": "Summary for Identity", @@ -35431,7 +38861,7 @@ }, "response": [ { - "id": "d03ab730-aa69-4ac9-a59e-6b0d34a74d3c", + "id": "6524a5c4-607f-4d88-8f73-192fc4d62e58", "name": "An identity summary", "originalRequest": { "url": { @@ -35477,7 +38907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed555df4-375a-41f8-8666-3c79856a9125", + "id": "89040d64-41b3-40ab-8476-7e2bf05295c6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35523,7 +38953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfa67a9c-3d3f-4475-a0cf-a7f2d6dba302", + "id": "caccae03-15aa-4406-9e26-1f26116238b9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -35569,7 +38999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d685681-5c2f-47e4-b2af-616aaf0d054a", + "id": "c23eb472-43a6-470f-a221-7b3b91be8185", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -35615,7 +39045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "030bc3ca-e34b-44a3-9e60-16fe581c412e", + "id": "dfd494fe-4bd3-42fd-af72-591c4e415aae", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -35661,7 +39091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c94c3a42-cbca-425b-8586-bc526ed50035", + "id": "6c552714-4c71-433e-ba8e-0c2ff69d6ed8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35707,7 +39137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4330193d-12db-43c9-9d9d-cd407fbc6efb", + "id": "473d2e60-cf9b-47ef-8efd-df4d54843683", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35765,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": "445beb48-5d05-4ab9-806a-c8df7c0e27a0", + "id": "59802a1c-89b4-4252-b560-147161ad58ab", "name": "Create a Campaign Filter", "request": { "name": "Create a Campaign Filter", @@ -35807,7 +39237,7 @@ }, "response": [ { - "id": "d1cfccfd-aa8b-4e9a-a55c-1bb6edd0ce27", + "id": "df418222-80cf-4eab-ba7c-861d2f28531c", "name": "Created successfully.", "originalRequest": { "url": { @@ -35863,7 +39293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7b63320-fcca-48a9-a1be-bc62d9a8fa03", + "id": "50504adb-06ef-4943-98ee-4ee6aa4baecc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35919,7 +39349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c53bd1b-a0d9-4758-91d9-d0f03492da00", + "id": "c89fdb94-58e6-466a-8494-4b0f2e405607", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -35975,7 +39405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd73a164-585b-485a-af34-0579f05a886b", + "id": "363de601-dcc2-459b-b25e-eb479934b7f7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -36031,7 +39461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3eecfc1-6a53-4954-8dc2-dfc1dbf0f1b6", + "id": "a303e0c0-392c-4384-a91c-979824a3d02c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36087,7 +39517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a9d56cc-741f-42f0-8258-0b920e2fbf0e", + "id": "4d5025d6-00d9-47b5-a023-9cf357d0f526", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36149,7 +39579,7 @@ } }, { - "id": "56e9eb21-360b-454d-a78c-fc85f61caf50", + "id": "213e1909-3054-4e09-92f4-919472a6750f", "name": "List Campaign Filters", "request": { "name": "List Campaign Filters", @@ -36206,7 +39636,7 @@ }, "response": [ { - "id": "c92f2028-3b3a-461c-889f-bc9b4f92e934", + "id": "e8e8924b-a0e0-4485-9c86-b8cf8caf0226", "name": "List of campaign filter objects", "originalRequest": { "url": { @@ -36277,7 +39707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15726651-d4b4-487d-b0ab-e65b62156b19", + "id": "58edb484-edd4-4c86-97c7-be22eb41f0ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -36348,7 +39778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59f44ed8-137d-425e-9f9d-7486b9a06981", + "id": "f98fc50b-b32d-4e6e-9dcd-d71dd6194ccb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -36419,7 +39849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7edc8db8-bc8e-4646-974e-9af063ade1b2", + "id": "c0313d25-6927-45ce-a379-ed258b0a3e34", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -36490,7 +39920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd3c3035-aea7-4764-bf2a-f9b868b4ac2f", + "id": "2739eb68-1c6c-4dad-ba59-7e7c722d0ee5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36561,7 +39991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a5b3537-a9f4-4bd7-8257-01d92cac57df", + "id": "0ad7c981-92ef-45e6-9375-47ebb13767a9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36638,7 +40068,7 @@ } }, { - "id": "e2626e18-cbda-472d-a4c0-b63ad61761c8", + "id": "3818b8f3-28a3-4b7a-b2a2-8f48cecb1ab6", "name": "Get Campaign Filter by ID", "request": { "name": "Get Campaign Filter by ID", @@ -36683,7 +40113,7 @@ }, "response": [ { - "id": "64b6a0d9-c91b-494b-87fa-ccf987d4c65a", + "id": "1a157583-3584-43e4-a5e0-481c1cb950c4", "name": "A campaign filter object.", "originalRequest": { "url": { @@ -36727,7 +40157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0034afd-0f48-483e-aa34-ac28d682658b", + "id": "36ecca3a-31cb-48a7-9b13-5d9d96686f06", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -36771,7 +40201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2876f46c-638f-45bc-9c28-d6655001bfb5", + "id": "913aca7b-4a23-4026-be3c-4ab5f872a8b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -36815,7 +40245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d3ae905-1742-4da3-af2e-700843c06c1a", + "id": "8592a094-63db-4a60-9c89-dd6012734419", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -36859,7 +40289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8581b42-b53a-4566-b6e0-0d387e74f410", + "id": "a9483711-2652-4387-8b3a-6727eb5a5b55", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -36903,7 +40333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19133c7a-1fb8-48b3-a8af-a661036d34f9", + "id": "b4b42cde-4825-4e88-87fe-8922d682e22d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36947,7 +40377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e01b76a7-34b4-432d-8445-de1dc058495a", + "id": "06da5649-97ff-49ff-b1b7-2e2cd52065b8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36997,7 +40427,7 @@ } }, { - "id": "3cc60c5e-e536-4862-920c-150324cd28b0", + "id": "3f5a5d5f-9b17-4c39-8ec8-262604cc0d41", "name": "Updates a Campaign Filter", "request": { "name": "Updates a Campaign Filter", @@ -37055,7 +40485,7 @@ }, "response": [ { - "id": "0b85d9a4-d02b-4920-a6ea-c7b90b8f8300", + "id": "c52491fa-b9bd-4b22-9b17-2e512865c5a9", "name": "Created successfully.", "originalRequest": { "url": { @@ -37112,7 +40542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c47b25c1-2d13-4364-abb0-4b61730d97b5", + "id": "e6cfb1e3-3a0b-44ff-add3-a56e8d28bda1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37169,7 +40599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0536a5b5-e60c-40e6-83cf-c453a596610b", + "id": "4d903262-4135-4779-a5f9-5e65afbf2d9d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -37226,7 +40656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3de0221b-766f-43f0-9f1a-f917e827e5cf", + "id": "d7e26608-1ed8-4120-9589-823cbe77b81a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -37283,7 +40713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64fd7c80-e199-4e07-b888-27eed8a5b68f", + "id": "1681a554-874f-4e9d-a4bd-ca26a6c11644", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -37340,7 +40770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57e7b544-c467-4cd6-bd70-ba3c3a965127", + "id": "dc8a9fdc-f3d2-48f1-b9de-b3b7214405e8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -37403,7 +40833,7 @@ } }, { - "id": "f6c06cd9-7d20-488c-915c-8d0879f39f7a", + "id": "6af20cbf-ea19-49f7-96e5-d91284808af5", "name": "Deletes Campaign Filters", "request": { "name": "Deletes Campaign Filters", @@ -37446,7 +40876,7 @@ }, "response": [ { - "id": "9e0cf086-3886-45d9-b87d-eb7947877d25", + "id": "3486b928-e9cd-4d45-b05b-b97a850353eb", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -37493,7 +40923,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1a702a5c-2593-47d5-bcda-865f88fd290e", + "id": "92a638a0-8f42-4624-b585-1855ee872543", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37550,7 +40980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17fa16b1-3551-4c3a-8959-70d059783db3", + "id": "52a8d1b8-afdc-42a4-80d4-4db4ddabe9e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -37607,7 +41037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d3bfd87-b977-4980-a3b6-f44322256e16", + "id": "2f9641e1-eff0-4b71-9196-e194c87e0c4e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -37664,7 +41094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a9919da-403a-4536-b502-d534d9bc4769", + "id": "b2f3ef37-bf53-498f-b919-b30c7cf68150", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -37721,7 +41151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9e8b3d4-e868-440e-b3fb-ff17255a1d07", + "id": "da81f9eb-5426-4c57-818b-9668b6d7bee7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -37778,7 +41208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06d090a8-2944-4cde-b67b-d900512c52c6", + "id": "0a918220-9e22-4645-ba2f-492bf3ae1a3a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -37847,7 +41277,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": "cb0a9d79-5d97-40a0-9c32-82a794d30f41", + "id": "cbb24f86-8acf-4374-8046-dcdbc33cccc8", "name": "Get security network configuration.", "request": { "name": "Get security network configuration.", @@ -37877,7 +41307,7 @@ }, "response": [ { - "id": "1dbd8d88-6e7e-4a9e-a55b-6dab66d2f4cf", + "id": "7c815ea4-38f1-474e-82cc-79aa80d752b6", "name": "Network configuration for the tenant's auth org.", "originalRequest": { "url": { @@ -37921,7 +41351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19e93a12-9c86-48b6-abb9-9aad449a8b03", + "id": "ed5bed14-0301-4b64-8c0b-d28b1bfe7d94", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37965,7 +41395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c488613c-3926-465d-870a-87cb8d4e4bb2", + "id": "f699e833-56b5-4766-b4f4-9de6f14ce6d0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -38009,7 +41439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd3f7d60-1bf7-4fd2-a42a-4dba27ea4cd1", + "id": "dbc47610-abee-495c-be9d-ebcccc3639e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38053,7 +41483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03432d6f-9465-4614-87e9-a6097f12cac2", + "id": "c0bc171b-8601-4c58-ab9b-4520e4107b90", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -38097,7 +41527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bb7f397-efa0-4026-8eed-c6a6c50df2b5", + "id": "acf4ff9c-eecf-4815-b58e-485aa9a39fd4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -38141,7 +41571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c4f6bff-ca06-48ee-a600-3b5ab634a26f", + "id": "c5e74378-bb5c-4310-9398-8f6f5703d3cc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38191,7 +41621,7 @@ } }, { - "id": "135b2652-7b7b-40b2-8e76-8745d571f91d", + "id": "7f480de3-b535-4e04-9001-c541b1513faa", "name": "Create security network configuration.", "request": { "name": "Create security network configuration.", @@ -38234,7 +41664,7 @@ }, "response": [ { - "id": "4046249d-1add-4ac8-9a37-85f447dba658", + "id": "bcbb0f0d-31d4-40b8-ac1b-b879b160552d", "name": "Network configuration for the tenant.", "originalRequest": { "url": { @@ -38291,7 +41721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75521514-7851-4746-81c0-fe87f95fbf6c", + "id": "0834bf4f-1bb8-4b99-99d8-26ce9e635a38", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38348,7 +41778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ce35d99-2e7c-4ec6-8107-80cb8e47c36c", + "id": "85bb2465-44fd-4e62-99af-3be90d3b0cfd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -38405,7 +41835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1aa89390-2478-4be7-86d3-03640dd735be", + "id": "0ef6c765-d284-4296-91c2-fdd9a7a5ea26", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38462,7 +41892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d31291dc-6633-415d-bc30-aa6e2ce739bd", + "id": "7ff8b7aa-306d-4885-aaae-76447f415892", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -38519,7 +41949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5462f4e0-954e-4e9c-8352-ddb0d03a342d", + "id": "17f0c144-0260-4148-b1b2-7d6a8e7960c4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -38576,7 +42006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1b3dba0-9399-4bf7-b9d7-8ba99117866c", + "id": "fd718c27-e07f-40c2-8596-33c619b3c920", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38639,7 +42069,7 @@ } }, { - "id": "85bf508e-483f-4bd8-8dab-7c158dc63575", + "id": "a3e75682-c830-4f2b-9271-6b90cf13769d", "name": "Update security network configuration.", "request": { "name": "Update security network configuration.", @@ -38682,7 +42112,7 @@ }, "response": [ { - "id": "51f81d34-e3dc-4923-bc5d-08d71c254a1d", + "id": "659353b7-cb7e-4dc8-b56a-781066dd174b", "name": "Updated Auth Org network configuration.", "originalRequest": { "url": { @@ -38739,7 +42169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbb83650-71f4-44d6-a9c1-e153782c9e6b", + "id": "a98c23fe-6e96-42a8-ae7b-af51c55d7e2a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38796,7 +42226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30bbe4fe-0434-49de-b253-d13285ff7ecf", + "id": "63bf373c-1631-465f-9145-ac2f3024a038", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -38853,7 +42283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b7612b7-feeb-48ce-b2bb-0514d4c94a24", + "id": "066d2e3f-e7a5-4520-a632-e1c4688b5e3e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38910,7 +42340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc16e803-518e-4c99-a1ac-be181290b6a6", + "id": "5991da8b-4eb7-4a37-9d3c-cd74adc98be9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -38967,7 +42397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61b6956b-05f4-4eab-b6fc-caccde1e754d", + "id": "7a17cd08-d3bd-46d4-bdcb-2470c7c44477", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39024,7 +42454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a447c42-a1f5-47f4-9f6e-9b868e8c380c", + "id": "601718d7-2ec8-40a2-a852-2e8e525036e6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39093,7 +42523,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": "de230e96-f606-4966-a16b-bd00e95f81db", + "id": "2fc13ac5-777d-417b-a0a8-9110345dac67", "name": "Set Lifecycle State", "request": { "name": "Set Lifecycle State", @@ -39148,7 +42578,7 @@ }, "response": [ { - "id": "f203172f-89fb-4006-b077-1eaebc16945e", + "id": "f6fdfc41-a227-4f11-ac47-35b018675a09", "name": "The request was successfully accepted into the system.", "originalRequest": { "url": { @@ -39206,7 +42636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daaa29d0-b440-4282-a33c-24e2443303ad", + "id": "81a627bb-45ae-4737-9bf9-be7d141e83e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39264,7 +42694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ad496e9-1212-4886-8e30-1c3c94f9d8db", + "id": "5a0d91bd-4814-468f-aff7-2a47fe6be623", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -39322,7 +42752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cac0634-2a1b-4b74-96cb-b6df4f8cde91", + "id": "9a87d214-bcac-4215-b9be-d9d503d67e34", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39380,7 +42810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "381fc5e8-be27-433d-a7f1-47766afa539c", + "id": "cf4f1fa1-11f1-4bb8-baf8-b4a65477189c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -39438,7 +42868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4681889a-ee9e-41c4-932c-f2da3db5718d", + "id": "39258706-b704-40a5-a1ca-962a9a5f7bc2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39496,7 +42926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba1d51c7-e624-4745-b5fe-941bd2944d8a", + "id": "cb08e3b1-5168-46a3-b6bf-a17b476f4071", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39560,7 +42990,7 @@ } }, { - "id": "2bfb5133-5371-444a-800b-7c6c0a014a4c", + "id": "b5f1eedf-ed0f-49b2-9081-9cbf896c3873", "name": "Lists LifecycleStates", "request": { "name": "Lists LifecycleStates", @@ -39639,7 +43069,7 @@ }, "response": [ { - "id": "3cd2d579-7c2b-4c7c-b58e-9ea98e3b756e", + "id": "429123a4-82a1-43ea-87a2-792be9974c82", "name": "List of LifecycleState objects", "originalRequest": { "url": { @@ -39721,7 +43151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e120803d-862f-423a-afdc-4ad8ce42f8ec", + "id": "d66fdb58-7df7-483c-aa88-c6908a2cfff1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39803,7 +43233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7605e786-478a-4490-a539-5f670aeb5d89", + "id": "cf704630-c252-444b-95cb-4b9babf67b0b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -39885,7 +43315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7eec63f-3390-4b7f-a33e-fd9acf0330d0", + "id": "25e92332-d86f-4676-ad18-5008dfbb8aa2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39967,7 +43397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38d96b99-d3ba-4094-8b29-8d28946844e2", + "id": "d319539f-3d0a-4989-9e73-8bc0c4059a46", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40049,7 +43479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceee5652-dc0d-4217-8395-003909ff0d6a", + "id": "57ddf596-5fe0-43d8-90ba-27dbace3a380", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40137,7 +43567,7 @@ } }, { - "id": "6f0fa477-b9b9-4467-a831-db7361f38136", + "id": "de95d869-9df3-4f63-ad5c-05da18193c91", "name": "Create Lifecycle State", "request": { "name": "Create Lifecycle State", @@ -40192,7 +43622,7 @@ }, "response": [ { - "id": "856b7f19-a6da-4f5e-ad82-81dbac05aa6d", + "id": "1e967f84-0546-40c9-a358-4c5e95883aab", "name": "Created LifecycleState object.", "originalRequest": { "url": { @@ -40250,7 +43680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14c4e48e-9d67-4bd7-8eb8-825f1e8004bb", + "id": "9ce34ea4-fdfb-4fa5-9a9b-7e53f9f6fb02", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40308,7 +43738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09314b01-5b81-4887-8dea-8957c7bd3131", + "id": "577d9446-cbfc-4268-977a-c16356633f0d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40366,7 +43796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77a18fad-8526-4944-a89c-28221f48acb8", + "id": "71456f99-c261-4cb2-8bb7-7f117c9f8615", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40424,7 +43854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "670849c6-ea46-4e1b-800e-184f035223c7", + "id": "e251d4db-62e2-4e3a-aefd-6d955adf736d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40482,7 +43912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94604fde-2c5a-4246-913c-08f128594799", + "id": "2412324b-f8ef-4cc4-a565-a4f0ea9614f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40546,7 +43976,7 @@ } }, { - "id": "02bd68b3-31c7-4fe5-bd8e-fcb20cb28b31", + "id": "095a7bd0-c7f4-4720-84b8-7e9615dd52b1", "name": "Retrieves Lifecycle State", "request": { "name": "Retrieves Lifecycle State", @@ -40599,7 +44029,7 @@ }, "response": [ { - "id": "848f045a-9792-4332-bc2a-d7a9887d40fe", + "id": "c6d2af1f-4bf6-4c35-9011-6a0982a187d4", "name": "The requested LifecycleState was successfully retrieved.", "originalRequest": { "url": { @@ -40645,7 +44075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dc2ce43-e3b1-44f1-bd8d-dbc1ada6ae6d", + "id": "609e1a38-7303-4f9c-a395-126c39c7a4f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40691,7 +44121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68f4a77f-16a9-484a-90a1-279c500a3ef6", + "id": "e6d3f763-383b-4d05-aeef-9f59f90dd066", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40737,7 +44167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "990ace64-c6be-4a47-b498-adcb85e6c168", + "id": "c1193ded-421a-4ebe-8d1b-9b3d8ef6fddb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40783,7 +44213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61aea96f-e288-4752-8f4e-82d05613a7a0", + "id": "8acbd52f-5f1c-4c0b-94d2-5f868185c304", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -40829,7 +44259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0466abee-c9ae-4a29-9556-65877d5ad98b", + "id": "48a042ac-d775-431a-a541-0d2bdb363648", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40875,7 +44305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee645c7c-0b90-4632-9680-af5c7172ecee", + "id": "b06aa16f-da68-4ddf-a75b-3a76fea48930", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40927,7 +44357,7 @@ } }, { - "id": "a1dd0806-78a7-4992-9794-0689b1f57128", + "id": "f6edcc2d-e217-4987-8c9a-b730ca5042cd", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -40993,7 +44423,7 @@ }, "response": [ { - "id": "92d05497-8fc2-4a76-8bf9-4369080ca51c", + "id": "978839a6-493f-4698-9ee3-b4d13ecb024e", "name": "The LifecycleState was successfully updated.", "originalRequest": { "url": { @@ -41052,7 +44482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "244222dc-04d8-489e-b90d-a23273ab3270", + "id": "c0319a93-6fcf-4a90-b7c6-f56e1e2c36ea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41111,7 +44541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "709f92c0-f26b-494f-bc13-9c721134e536", + "id": "62d4317b-391f-463a-b62f-a097942c45a1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41170,7 +44600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ea232a4-912b-4dc3-ad30-e4b417a433e7", + "id": "18f7bc95-d146-42d8-989f-3368b760b52a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41229,7 +44659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a93b9ede-d76f-4dc1-b0f8-2648e65fd746", + "id": "9e0ee9f7-b411-4c17-9a04-df07ffc826d4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41288,7 +44718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23148060-2216-4330-8c92-4c7be18e60a1", + "id": "94b60873-1f52-44d0-a546-8f5ada34f189", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41347,7 +44777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31d9676d-fd1f-4e2a-ad0c-bb41ec54e58c", + "id": "00e1619a-f365-4528-b9fc-c86cb631b1d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41412,7 +44842,7 @@ } }, { - "id": "716b62a3-ac19-4a71-bf4e-801ab01815eb", + "id": "acc35913-5a1f-4e54-919c-b70fdd1a06a2", "name": "Delete Lifecycle State by ID", "request": { "name": "Delete Lifecycle State by ID", @@ -41465,7 +44895,7 @@ }, "response": [ { - "id": "a59dd7b4-01f5-4d39-8d54-96fd7c62bc58", + "id": "2fbc0adb-5f8d-452b-b3e0-aea9b1e26d3c", "name": "The request was successfully accepted into the system.", "originalRequest": { "url": { @@ -41506,12 +44936,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"commodo proident esse tempor\",\n \"name\": \"Contractor Lifecycle\"\n}", + "body": "{\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"consequat reprehenderit\",\n \"name\": \"Contractor Lifecycle\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c38824be-a041-4e9f-8419-650d2ec432bb", + "id": "1c85a40a-0b56-49c3-84d1-f8bf66ec97dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41557,7 +44987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e173c9f0-8c52-4be4-b1c0-610581976a70", + "id": "6dbd0f33-9eb5-4f69-8c0d-99c904c638d5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41603,7 +45033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc740e70-3622-4318-9e84-94a7a2277bf6", + "id": "b23c082f-19b8-46e2-8924-cec2bd00b149", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41649,7 +45079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39a501ba-9961-45f8-8fac-7726baef6b3e", + "id": "f288dbcc-8005-4e7b-ac92-e2ed8ce7b74d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41695,7 +45125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33deb785-0005-46a7-b1a5-6c92e69aba1b", + "id": "b6815302-76ee-4cf1-8e2b-4e74d022133d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41741,7 +45171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "847868c5-88db-4c7a-a8ac-9e7b06a26d08", + "id": "9458ba1f-71ab-4ac1-85d3-37e7445ad5b5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41799,7 +45229,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": "14f0081d-ab47-45d1-9e66-d6ae7f2914d6", + "id": "e6c36692-f751-4d96-930f-b5d8e8ca952f", "name": "Identity Profiles List", "request": { "name": "Identity Profiles List", @@ -41874,7 +45304,7 @@ }, "response": [ { - "id": "1a611959-f943-4eeb-b203-11ce53bbbb9b", + "id": "13fdf91b-30bd-49fd-8e77-2f6ac566934f", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -41963,7 +45393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c412f081-ad58-4a90-be4c-8642ac326a16", + "id": "13d9f0fd-072f-4c6f-a603-eefdf9563bb4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42052,7 +45482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19caf07a-e7d3-429f-b81c-f065808bdabb", + "id": "38e7637b-12c9-425f-a4e6-fa60c8962706", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42141,7 +45571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10d4a3da-172b-42f9-b44f-57a38cbe41db", + "id": "1a8e93c7-a6d4-4336-8e5d-ca636f287a36", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42230,7 +45660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8db16ae3-8141-4130-8786-7b0b9b3aa348", + "id": "3dad27ea-922c-4e5f-b758-05b2f626a55f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42319,7 +45749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91df62e2-5970-41db-9730-744dac5e5968", + "id": "53c9c9d2-b4f1-49c5-8b01-441eb86ab2e1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42414,7 +45844,7 @@ } }, { - "id": "3c022f3e-7782-4b5d-ab28-533ad1cc0e6f", + "id": "a501acc4-7c20-40dc-878f-b62b9ea634e0", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -42457,7 +45887,7 @@ }, "response": [ { - "id": "87fdf9eb-0bbe-4db1-8e49-fb7889b81527", + "id": "379efc0b-70ae-45b2-a7e4-2517f29a602a", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -42509,12 +45939,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\": \"1999-12-23T00:43:31.828Z\",\n \"launched\": \"1972-07-03T23:28:19.558Z\",\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\": \"1999-08-13T07:23:56.126Z\",\n \"launched\": \"2021-09-04T11:22:53.839Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3fb8738-9a8e-43bf-a22d-a35b1833d91c", + "id": "8578bcdf-1697-4305-8450-b288f3329304", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42571,7 +46001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7c21f4e-8454-4d7e-9d16-3f50ef619b74", + "id": "494ad172-8586-4dc6-914e-0d6256d9433e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42628,7 +46058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d38c4019-11ab-40a7-ba6b-71921155d3f8", + "id": "a6690ff8-64ae-421c-99dd-d0ef47ce9c7b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42685,7 +46115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d0d084b-a1c3-4298-81c9-162cb42a60c8", + "id": "2cba4699-0b6c-4594-94bd-e6cb5b4d7930", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42742,7 +46172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b93da5a7-c4c7-4d07-aba2-57db3288d675", + "id": "696c49a2-46d8-41fa-a328-c33d7cd025c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42805,7 +46235,7 @@ } }, { - "id": "0aa44d49-37b9-4ea1-b1bc-0c36dbf7db87", + "id": "824cb881-7f81-4622-8e75-dac60ade64bc", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -42881,7 +46311,7 @@ }, "response": [ { - "id": "074b4972-3741-420a-8c1c-fd4c0658cb91", + "id": "338f7650-890a-4e69-af04-c0ccc24356e1", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -42971,7 +46401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67968813-ac2b-4f97-9c88-63dbf8e696ca", + "id": "d48b2379-6a13-438a-a01d-ba0940b475b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43061,7 +46491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e7bd518-c1d2-402b-a359-005ef6cac64f", + "id": "9f601f9b-2ae1-4da2-8c71-56df3c6ad635", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43151,7 +46581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2547b695-2667-4382-b7a1-82fa9528f126", + "id": "e6050d83-e6f6-41a4-9b3c-defa9638b3b5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43241,7 +46671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9793b6c-a515-43ed-b87e-149041376913", + "id": "ace27d85-c370-4bed-964c-f9049a0e6e15", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43331,7 +46761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "459948d3-d9fe-4165-963b-ac8a91a80dff", + "id": "dbcc3535-ccd0-4906-975f-8f137a2e69b8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43427,7 +46857,7 @@ } }, { - "id": "54a3c5db-a90e-4819-a94a-2c5224747234", + "id": "de51ae82-303b-41c3-83a5-2bcab4b3a167", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -43470,7 +46900,7 @@ }, "response": [ { - "id": "abae5cf7-2533-4732-b408-faa4c31ef7d4", + "id": "c0122467-c491-4c26-bcaa-d093d9c30b3a", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -43527,7 +46957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7d1c7fb-6830-4c96-8a05-f06d5a1470b8", + "id": "e95796fa-138f-442f-ac6f-da6ee84dbcac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43584,7 +47014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e39ef331-3f95-4b96-9344-c2e2744c8c75", + "id": "31669424-94d3-48f3-97ec-22f9dcfa19a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43641,7 +47071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c30a9807-ae91-47bb-ac02-bbed5ba4eb59", + "id": "ab5b424e-11be-4e5e-8a10-b50ebc28aead", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43698,7 +47128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "319a5266-af67-4d38-a5c6-c78a75dedb09", + "id": "ae283034-abb1-41fe-bcb4-4f2fd14b36e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43755,7 +47185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ded96e9d-1dad-4c93-bb0a-8624e71fbbba", + "id": "f1079be6-0c92-4de3-bd61-213db3052c79", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43818,7 +47248,7 @@ } }, { - "id": "832bda59-ff6d-46a8-a71e-0f8d749b5436", + "id": "8690507e-6616-4364-a77b-ac09d9a63af0", "name": "Get single Identity Profile", "request": { "name": "Get single Identity Profile", @@ -43859,7 +47289,7 @@ }, "response": [ { - "id": "afa4eb07-e780-40a6-baf2-1d4f1afd4faa", + "id": "79355c86-9cb0-4bee-b206-40d52dbabb55", "name": "An Identity Profile object.", "originalRequest": { "url": { @@ -43903,7 +47333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e8109cb-9357-4d57-a72e-6da19c316969", + "id": "6a54c79c-4706-4061-b9e1-fe792224268e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43947,7 +47377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d296573-d385-4884-a7b8-ab5460f30bc0", + "id": "9af6ec03-9b62-47f2-9311-07e3462dd0b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43991,7 +47421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d99c3e51-53e0-4fde-9df8-48048790b8ee", + "id": "64ebb1ec-81bb-41b9-927c-cf8487a451d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44035,7 +47465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02c71ec0-c07c-4f26-b55e-4d4cf3edfca4", + "id": "3af2bb2c-04f2-4c12-a153-ef326af203df", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44079,7 +47509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf2dacb6-66f5-4566-a2fb-8ba95f380b21", + "id": "8c141e90-6a12-4034-9557-2318d2e3a485", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44123,7 +47553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52a28b50-930b-4c9a-b4ef-12fc7766456e", + "id": "ad75f47e-9cd7-498e-94f1-589f571a2da1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44173,7 +47603,7 @@ } }, { - "id": "b30531e6-b262-4dcc-99d6-8c80e8ca5416", + "id": "75f2f165-9060-4a04-9f93-cd619a90044c", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -44214,7 +47644,7 @@ }, "response": [ { - "id": "56f71efa-1312-4dd5-b2db-5a5e205a9b96", + "id": "9d3c6899-b961-4fe3-b7f1-1696c3d343dc", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -44253,12 +47683,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\": \"1957-03-03T22:04:01.510Z\",\n \"launched\": \"2017-05-27T09:33:32.999Z\",\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\": \"2000-05-06T14:34:37.011Z\",\n \"launched\": \"1991-04-18T05:23:14.583Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec524f14-2317-4cdf-9f8f-4c6b0f5f7c1d", + "id": "7a4ab472-6086-42ce-9393-bb2eee2b884b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44302,7 +47732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eb99e85-65e0-4f76-8ac6-1611b9447b17", + "id": "b510d471-69b1-462e-83d8-9275535422f8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44346,7 +47776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02be8505-b765-4ae2-b2af-81b9b9b1e0cf", + "id": "31153a46-56fd-4cd0-badf-1e9d063e13f3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44390,7 +47820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9987e7ec-c5ca-421e-b624-41f2a3ad8033", + "id": "f44529d3-72e0-4650-ab01-1325d5b5b2a9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44434,7 +47864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37bf4054-5a77-4b2a-a487-0deba40a3945", + "id": "a71240d1-665c-41f0-b1a2-583b8c8417f6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44478,7 +47908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d579c4d7-3f26-44b9-a5cc-ceeac11ed20c", + "id": "f6a71008-4a1d-4153-918f-def3a57f713d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44528,7 +47958,7 @@ } }, { - "id": "223d2433-dad3-4ef5-8b57-0c98bb526c1a", + "id": "cf51c84c-11a2-4140-947c-24069b31370d", "name": "Get default Identity Attribute Config", "request": { "name": "Get default Identity Attribute Config", @@ -44570,7 +48000,7 @@ }, "response": [ { - "id": "51ff694a-62a2-4270-8882-2ad960543775", + "id": "88ce4b63-3541-4f2b-9e53-843b3c29a25c", "name": "An Identity Attribute Config object.", "originalRequest": { "url": { @@ -44615,7 +48045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "060b2b89-2398-4dc1-bb21-4ebab8145a22", + "id": "b06edd6f-e35c-450a-91f4-5721421b108e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44660,7 +48090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d7e1306-d8e5-4c2d-8964-0f35b01de366", + "id": "2794aa9b-41bb-49bb-881d-0b819ad20946", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44705,7 +48135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f240f219-ef91-4837-a894-f380d48d60ce", + "id": "baa63706-4ca6-4b3c-97db-001b084be74d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44750,7 +48180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13ea157e-7ed6-4811-87e0-0a432115736a", + "id": "05d45782-8411-473f-aeaa-758b3082e6a3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44795,7 +48225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbed2506-eca4-4638-a4ff-1af6566c4e39", + "id": "c0628c1a-376b-4ad8-ad3a-5229d26184ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44840,7 +48270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35e5e2c0-18ff-4ce0-bf10-47f05c314352", + "id": "3ee946c2-9aba-4804-abbc-7639349b5b9b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44891,7 +48321,7 @@ } }, { - "id": "d7226fb6-d780-4bb1-96be-52e74adeac4a", + "id": "f193a520-fba3-45f1-b56e-aded0d35bda3", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -44933,7 +48363,7 @@ }, "response": [ { - "id": "f18a4fae-2451-4876-b362-bfb9e4cdb1ef", + "id": "2a098bd7-834e-4043-a4d7-0d5cdaacd996", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -44978,7 +48408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1cd08f5-ac74-491e-89b6-38ba1e0d2679", + "id": "e659d699-7df1-44d1-80dd-c8e0dad2e320", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45023,7 +48453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cb4c945-ee5b-484e-9703-fe525c7247d2", + "id": "b9240017-7ca2-40a1-96bc-12c154864a80", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45068,7 +48498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0c6a724-3d5b-45e1-b315-b88ae28ea915", + "id": "525dc921-430a-40c1-ad92-21a92ce04da9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45113,7 +48543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "688e1aa5-8fb3-486d-a0d4-4c6bef37c6b2", + "id": "b68a038d-b967-4cfb-b403-4b5774f4019e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45158,7 +48588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c679bc8-691f-435a-98ed-1decb9ded723", + "id": "d2c726e9-a580-4f99-87ff-afdbc30933aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45203,7 +48633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "613f7308-96c4-4e2c-b491-15d07a42eb4a", + "id": "d21533c1-653c-4eb1-a0c2-38236a55606b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45260,7 +48690,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": "e28c513a-4a5e-4397-a014-d8a9063973c1", + "id": "0c743043-7caf-4fec-a79d-110f78326c2f", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -45302,7 +48732,7 @@ }, "response": [ { - "id": "53b3a977-6113-4ff3-b594-08135c80d2a9", + "id": "a40666ec-1e42-4462-afa9-959f6798137d", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -45358,7 +48788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab0fff2f-7dcf-45a1-83a5-4cb082ed106b", + "id": "03bbae52-94e3-4531-9cc6-b553288989fa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45414,7 +48844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbe1db26-91fa-4ac5-a410-962e84f1f1cd", + "id": "445288e5-54e4-4d7e-86d7-3d8ad384837c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45470,7 +48900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13c5eee2-55ad-41fa-8a82-d214f7077516", + "id": "8bb0b329-6e30-44db-a2b4-ef61d6df7ccc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45526,7 +48956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d88e0135-fbe0-4cc5-8111-d34af4ee4475", + "id": "999c6a20-0c56-443d-b206-7fd2f4496f36", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45582,7 +49012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69a2cb73-d86c-4b66-8e0c-cc80604f6040", + "id": "234e287d-3c5a-413a-92e0-7d5a9ff92a3d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45644,7 +49074,7 @@ } }, { - "id": "895ac10f-82bf-4221-945d-f9328c5c5c94", + "id": "af103fd1-5c98-4ede-ad89-b81fe4f009fa", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -45719,7 +49149,7 @@ }, "response": [ { - "id": "e2256914-ef29-4ce9-bed2-fd5fb78b6f00", + "id": "55cbf26c-d607-4565-98ad-3328a52d7fd8", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -45808,7 +49238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fc20d95-ff3b-475c-94bc-a49fd2401e14", + "id": "bf348825-92ab-4787-bc94-9478b91f3977", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45897,7 +49327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b32038d-212f-450a-8f83-29143e9e1513", + "id": "908942a4-f2a6-452a-b658-f1a59a392bdd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45986,7 +49416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73afd551-0423-4364-9627-2ccbc977ae00", + "id": "99fbd296-3dae-454e-ae22-d38b7aea52c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46075,7 +49505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44158a86-2972-40f1-8484-52d561b12bf7", + "id": "fb1997c6-0329-4961-a32d-4021637a2d0a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46164,7 +49594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7699621-6b5a-42a8-855f-949b44fbf1e5", + "id": "92ab6268-898a-44de-8718-70cf180e5482", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46259,7 +49689,7 @@ } }, { - "id": "9d57fcde-9c52-4d0d-b2e5-e00cbb77951c", + "id": "1c260162-8f5d-4d77-bb10-e450b0b01cf6", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -46300,7 +49730,7 @@ }, "response": [ { - "id": "df4d6bf5-2999-4a42-8166-f4da59fa7aa0", + "id": "db09729c-aa52-441a-96eb-681cb610daee", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -46344,7 +49774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40701a3f-ec3c-431f-84c6-9a7cc7f0d421", + "id": "7a152080-be08-4f6c-8c2a-7dcbf13d207c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46388,7 +49818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2dece15-d914-49f0-86be-5b07cf12b13b", + "id": "acc91abb-561a-4198-8d18-0ae244dcdc6c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46432,7 +49862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43f9dbb5-3c93-410a-847a-cd3f2f0c6d5d", + "id": "0161879c-de0d-41c8-a552-82276b140949", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46476,7 +49906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d4904aa-eea7-4d7e-8d85-c44c5269ba0e", + "id": "377e3077-a040-434c-8c97-8f47505e56b0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46520,7 +49950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a84283b5-d94a-4299-b22b-a2fc71ab0658", + "id": "5f0d7b0d-cf1c-4615-b074-406ca531cc09", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46570,7 +50000,7 @@ } }, { - "id": "acf01a0d-2d7d-420f-9403-05092de58919", + "id": "600e399a-3f81-43b0-8f66-df39ce020add", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -46624,7 +50054,7 @@ }, "response": [ { - "id": "d3465c82-0687-4297-a285-9cca3294ba7f", + "id": "f06e6287-0b14-45ee-9d00-90255855d57b", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -46681,7 +50111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30e5ac43-a863-4509-9bfb-b508673afdcf", + "id": "928d5e0f-7a37-42bf-b814-61bb8ed1e725", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46738,7 +50168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "499241b6-6e07-4359-a8a5-7144743a5765", + "id": "c918b143-872f-4e8b-9ac4-a6698b7d2a99", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46795,7 +50225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0586c970-338c-412d-8fb7-f072b892a23f", + "id": "d26a9791-f32a-40fe-bef1-6a7f2b14c53c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46852,7 +50282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ae5589f-a3af-4009-9c1c-10966b77729f", + "id": "3767b5fa-4bcb-4059-8b5a-50f374824d7d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -46909,7 +50339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77095964-df3d-4fb5-bf88-4f977be62c53", + "id": "43f946e0-4ade-447a-9b9e-ebe672c9967d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46966,7 +50396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19600fb5-4cbb-41c5-ad5f-fc413b3116ee", + "id": "4507c3c5-f493-4a3a-b0f0-7fa193c1f576", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47029,7 +50459,7 @@ } }, { - "id": "fc896179-c402-4751-914b-1b0dc1b7c33b", + "id": "6ab7c9b4-a0d1-4628-b333-9c867c353745", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -47083,7 +50513,7 @@ }, "response": [ { - "id": "4f441eb5-f5ee-4f68-9904-607fd28ba030", + "id": "ebc2b3e3-84c3-4537-b582-20d08e5b3160", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -47140,7 +50570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8536048f-3c22-4d94-ac97-ed7f37a8eb3b", + "id": "1adeee70-6582-4d9d-909a-06288a398893", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47197,7 +50627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "234b02f2-a827-47de-b14d-10aa4de5bbbc", + "id": "e14d36a9-cc5f-468f-bb88-fec111fc4305", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47254,7 +50684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abf4ec10-412a-472f-96c7-188cbe5bf35f", + "id": "b566da50-601d-4ac2-8a70-c1419833de96", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47311,7 +50741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e131c238-3f2c-4b0e-979d-d2845f45fd5c", + "id": "a8e2944c-b5d3-412c-8c19-8fe1bd3e0454", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -47368,7 +50798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b7994d6-30ab-4931-80b9-445c9e312934", + "id": "ae17fdcc-710d-4285-9839-e8a074159792", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47425,7 +50855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2bd7f19-ed30-4849-9535-68a55e5ae541", + "id": "71437293-d57e-4cae-921f-e48686feaf2e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47488,7 +50918,7 @@ } }, { - "id": "c23a12f3-7258-4cd1-b289-05d3d133277f", + "id": "22580f23-7b54-4cc6-9bdb-78fdad552712", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -47529,7 +50959,7 @@ }, "response": [ { - "id": "e2f27be6-2508-4e0f-984d-78adb62a4080", + "id": "7b674fa8-d56c-451a-8723-8f7c04a9a327", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -47563,7 +50993,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d4aad9cc-8ed1-4d36-ab6e-9ab939839d7e", + "id": "7cf6d436-06c8-43b4-aa93-c785565a2aab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47607,7 +51037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "639e400c-7922-410d-8a36-6ce3335865e6", + "id": "97f305b5-c82a-4fbb-9725-2397bc9bce22", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47651,7 +51081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1aa1e14-7277-41b1-8fc5-2903316ac563", + "id": "337ba16f-bc68-4d20-b989-673c456d610d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47695,7 +51125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96925b3c-edcc-4485-93d5-c030ea7cc527", + "id": "d6f6f76f-cd0d-4ff9-94b5-ab6caac6be7b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47739,7 +51169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e515590a-0847-4510-8201-1e5614b4f1bc", + "id": "f4bde727-99d3-4cff-8b9b-e88d2a4e887f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47789,7 +51219,7 @@ } }, { - "id": "db932e73-cc18-4ac4-93ba-c6d21ad9c830", + "id": "86594e4d-d53d-4b82-9bce-baf8d97af01c", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -47832,7 +51262,7 @@ }, "response": [ { - "id": "4d7556ed-fd93-4999-a2ce-11feceed50b2", + "id": "d983c0ee-f299-4834-83f0-992b1809bd90", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -47879,7 +51309,7 @@ "_postman_previewlanguage": "text" }, { - "id": "87ae15e0-c10d-4efb-9a48-245bf153ef56", + "id": "f10d769d-9c56-4556-83a4-322196090973", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47936,7 +51366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b471b89d-f813-4b62-842d-505d3fe66a06", + "id": "06033b8f-ce3d-4b08-8443-af1d50ed44b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47993,7 +51423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6f21aea-e802-4375-826c-eb7e02128c86", + "id": "8458d0e8-8aad-4d9a-b46a-d2d5dfecaceb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48050,7 +51480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1314bbe-7e70-4ed4-a480-7948e0506be5", + "id": "530a4dbf-5067-4c3f-8740-066f78bcc55c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48107,7 +51537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be9bfecf-7130-48ed-8716-8b7ecc3bc8f2", + "id": "c7f9dfc3-6645-4578-8c66-124ff9a886e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48170,7 +51600,7 @@ } }, { - "id": "bdbfe173-6f7b-482b-ab14-21d97ec2788e", + "id": "255a104c-861b-4289-b7ff-1cb9c82a126c", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -48212,7 +51642,7 @@ }, "response": [ { - "id": "a2e88116-ec7e-49fe-8fdd-9c7dc67398f3", + "id": "b78db11e-416a-4af3-8800-87f9fe1ab2a3", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -48268,7 +51698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fc10772-9535-43c7-a50f-548ba9707bc9", + "id": "ca5f0e22-fb34-4d51-b7f3-64de3e339aba", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -48324,7 +51754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0827e2ed-6f3a-49b5-9523-99b83892cdb8", + "id": "7fcf7fc7-cb7e-47fe-9769-6bdaa16194db", "name": "400.1.409 Reference conflict", "originalRequest": { "url": { @@ -48380,7 +51810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c653e20f-eee8-4648-9036-060372bd3776", + "id": "1ed0ba56-b050-4891-b07a-cadd46a49764", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48436,7 +51866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8e61240-1ad1-41d7-b0c4-53591e6ed240", + "id": "dc3345b2-9041-40ef-9998-b34d4ea868d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48492,7 +51922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "035e83d2-ca74-4c48-a997-bedce42ab976", + "id": "866696b7-25f6-493b-a7ad-173882d55563", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48548,7 +51978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c252ddbd-0550-4d3d-8583-07abca72b884", + "id": "5b364266-3167-463f-a68f-78490dec1aff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48610,7 +52040,7 @@ } }, { - "id": "dafb1883-902c-4b5c-bb84-bdfe83cd989c", + "id": "8406bbc2-da09-421c-8fad-3056576f3b40", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -48694,7 +52124,7 @@ }, "response": [ { - "id": "2cf4bda2-284e-4b2e-b108-2172f6e34026", + "id": "d11ebc6a-967c-4dd1-847a-dc8daeaedfad", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -48792,7 +52222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48c7a31e-1a5c-449b-b277-97794e6673e6", + "id": "38b61fe8-4634-44d0-9c3e-77f80a0703a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48890,7 +52320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0759a79b-f7fa-4d1a-a366-ad24e5dc09d6", + "id": "a4502161-e816-4891-8344-922c4a6249b9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48988,7 +52418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ab864f6-e730-4162-bee7-67dcc0783ab2", + "id": "8aa81656-12f0-4b0f-8957-eb15e0d651d5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49086,7 +52516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2357544a-058e-4aa4-ad77-c8409b9a9a3d", + "id": "dbd514c5-89dd-4f4c-b877-276a8adb3ec2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49184,7 +52614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b94c6fb8-ea36-4d8f-98de-6b8343e19e2d", + "id": "48b318cb-a43d-4263-bfbb-1871fd941a39", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49288,7 +52718,7 @@ } }, { - "id": "005e5974-093c-470e-b8ee-8ef1cd17e23c", + "id": "4262ad97-df43-4a54-a7d9-ab940210fb7d", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -49329,7 +52759,7 @@ }, "response": [ { - "id": "8c36e61f-51cb-4233-8d2e-26a91430c4e9", + "id": "92f68af4-18a0-46d4-a6ac-9f99e07a2b28", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -49373,7 +52803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3013babf-e90f-453c-9e6d-3450e51a065a", + "id": "dd25a65c-5deb-46c3-9873-def9455e0511", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49417,7 +52847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dc97052-bf3d-4ddc-9f8d-6d17dbba1af6", + "id": "78b25c2b-98e8-4699-a444-3e564ebb1cbf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49461,7 +52891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb05ed38-563a-4899-af48-ea707c658ed7", + "id": "166df8d3-b2ff-4f2c-b991-4e5570670306", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49505,7 +52935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a44d66ef-6c64-4b6b-ae20-751e56b8ac0c", + "id": "b708df0e-6b72-42bf-bf02-015c191bbce8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49549,7 +52979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7841e4d9-cd9a-4dd8-bab8-86a48d5db516", + "id": "66349ad9-24e6-4cba-96f2-01ccb3c7f828", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49593,7 +53023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e182878-f10a-4a2a-8e48-b7c394e1b992", + "id": "3d35fa9d-1a0d-4972-9292-ddcdc456c273", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49643,7 +53073,7 @@ } }, { - "id": "4d75d343-8037-445b-bc41-2d74a8114e03", + "id": "3a660fe6-3bac-4847-b692-9074defa3dc4", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -49684,7 +53114,7 @@ }, "response": [ { - "id": "a6e8cbb9-8930-485c-b60a-94c6c580d1ee", + "id": "97c39c7c-7868-493c-9529-46b7ab546d04", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -49718,7 +53148,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e2ddf565-2cef-496f-9785-c18cd694b50b", + "id": "c30944d8-d5a8-4c90-be17-ee8101eaf3cf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49762,7 +53192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5dddab5-2247-4ee8-8f53-86d58b6bcd06", + "id": "bb3ea6a1-3236-44da-801c-b2a25cb7fbb2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49806,7 +53236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49ebe300-3765-42f5-ac04-335b4f8fcaac", + "id": "447b8acb-3ba9-4b98-947c-d7e75b157dd9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49850,7 +53280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbdd63b2-3ed8-459e-96c3-7d8a27c0a6bc", + "id": "3225c1ee-179b-473a-8153-f6ee33346823", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49894,7 +53324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4f3c762-4eb3-476d-b2a5-dcdfc885d4dd", + "id": "5529e038-dd61-43a1-a3f9-6d0f57acf3a4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49938,7 +53368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5323ed71-0a36-4b4a-88ec-a0ebadde3717", + "id": "4025e6a0-eb62-4b7c-abbe-727e6ac494b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49988,7 +53418,7 @@ } }, { - "id": "053d1b64-41fb-4e18-8df6-1197fada97c3", + "id": "0b88c48e-0bd0-467a-9f64-70dc61558114", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -50030,7 +53460,7 @@ }, "response": [ { - "id": "48d85f4a-af08-4256-b7d9-74ce2127a394", + "id": "db0dade5-d26b-465b-a584-0a76e7261192", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -50075,7 +53505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e648d7b8-9829-47b6-b7db-3e43737610e0", + "id": "c7a5598f-feac-4ddb-8d43-f03c3ee21e16", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50120,7 +53550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c29cdf04-5cb4-4c0e-9ea6-fb6938a3ba95", + "id": "488386fa-d391-4eff-9f11-88048dd9f97c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50165,7 +53595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79eb2108-25bf-45fa-a080-62262fe986d6", + "id": "79f3e919-10b2-4b30-8699-30b184ec2915", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50210,7 +53640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b55a1cc5-62dc-465e-89ce-360629528d11", + "id": "ac7df5a4-e3cf-4a1e-a572-23e50a23c7b0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50255,7 +53685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73386b97-4cb0-45c6-bfc3-72672bd0a237", + "id": "90035015-a84f-4d59-82cc-112b311c741d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50306,7 +53736,7 @@ } }, { - "id": "58e0f4d0-dffe-4032-baa7-cf9d9c83125a", + "id": "62b7f6ac-106b-4461-bc0f-b05d4a6d12b8", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -50348,7 +53778,7 @@ }, "response": [ { - "id": "854a45f8-e208-4e99-bba8-41356be83e2b", + "id": "c5af52ef-d833-4904-bfe0-2ce6e8462d08", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -50404,7 +53834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "417bff2f-e8ad-4beb-baf2-af984101e3ec", + "id": "6de6f4fb-a8bc-4357-85a4-2025a01a0720", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50460,7 +53890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71cf5b2a-9b76-46b2-aba1-8b5920d2c426", + "id": "6937829a-9e0b-4759-a231-f0c3b58fc7b6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50516,7 +53946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bb80933-f3a7-48d1-b085-f425f639b80b", + "id": "9c79be78-d139-4006-8385-3369cc0aa6a7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50572,7 +54002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0fc8b6c-8547-4de0-a969-7def5dd79205", + "id": "97bd8e4f-e926-4adb-ba5f-521858ff7f02", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50628,7 +54058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c74a5434-d86e-410b-9c08-449a7684471d", + "id": "4dd04f5d-8dc5-4872-b758-f108f36a833e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50690,7 +54120,7 @@ } }, { - "id": "a9cb5f2e-b172-46cb-9179-c7b762af4d77", + "id": "888953d5-32a0-4f7c-8817-82d0f49ec27b", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -50774,7 +54204,7 @@ }, "response": [ { - "id": "9e9a29fd-1373-4405-b7ff-ced9889ae6bb", + "id": "65d97713-979c-4b1b-9e47-d626b9745d14", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -50872,7 +54302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b20b6ab0-02ee-4890-a775-3b09b48da3cc", + "id": "8ff9e18f-73a5-4868-9f75-81b2e4481c5a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50970,7 +54400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f83c05ca-b284-442c-b699-501b64ef1f2a", + "id": "2ce14b69-e809-44a4-8664-1c0f7fd88a16", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51068,7 +54498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d266d2b2-6aeb-4e90-8c91-bc18ea273856", + "id": "76cbd1ee-fbfd-427c-84c2-b8ff76164096", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51166,7 +54596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d53c91be-09f8-45a2-bc67-9e7f08f94228", + "id": "2214591e-1800-46b1-9d2d-d0e91973808a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51264,7 +54694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "811846b4-a76f-4016-b573-4b0ee95900a3", + "id": "991d79aa-74ef-42ad-9d5a-4e5cdc4148d6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51368,7 +54798,7 @@ } }, { - "id": "70414dab-520b-41b0-8246-0695e5a56dcf", + "id": "84444415-39cf-46d4-a3a4-0c0bc7418205", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -51409,7 +54839,7 @@ }, "response": [ { - "id": "3c1df1c5-6eb5-4036-bbc2-3e8d84d500c3", + "id": "ef1cf053-8e83-4d53-928c-c5b1971c65b3", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -51453,7 +54883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "767d22df-b907-488a-a4e4-1ee7e373cf8c", + "id": "06bf81f4-7838-41a4-a819-50b3c7c4cb91", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51497,7 +54927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a0160ae-0b52-428c-9b6f-a48f133ad1c7", + "id": "682d2416-a5f1-4e88-8520-04c15cd359c2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51541,7 +54971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8329e0c-7dd2-492c-b2db-14a3b77e210f", + "id": "23dc52f5-fd96-4c08-87b1-e6368392b49c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51585,7 +55015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f852315-64fc-4c97-b3f8-7709afbf923e", + "id": "fefed867-c66e-4f55-a7d1-b847155358de", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51629,7 +55059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94ca5829-0073-4a1f-ac22-48a4a08b8acc", + "id": "04607887-c878-45b2-94ad-d271eee65abd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51679,7 +55109,7 @@ } }, { - "id": "4c90649c-e293-42eb-9e20-c0fa1722de21", + "id": "c43ff6ed-2a28-414d-9264-bb65f3cd6167", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -51733,7 +55163,7 @@ }, "response": [ { - "id": "fb6220c0-a5b6-4fa9-90cd-cc6bc39bf0d1", + "id": "e36bfbdc-0b58-4625-986b-2aab7df300ff", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -51790,7 +55220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71de6024-0d87-4e1c-99b8-0126d483dce9", + "id": "0b2f89f5-c27b-4021-91fe-fd07db399a2e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51847,7 +55277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b9d83d3-065d-4a0f-9562-f5c95781a7da", + "id": "cbd5c832-33da-4632-afe2-2be345d784cb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51904,7 +55334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b26143a7-55a1-404d-9657-5ecd8a2b3d37", + "id": "02946b0f-0f98-4bb6-a8cb-36f759d7e7a4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51961,7 +55391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6edb81a-1431-4f79-b12f-cae969ebdb6c", + "id": "cf4e93b9-a7b9-4977-b390-59e854a8f5ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52018,7 +55448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8858e5f8-26cd-4dac-bb18-e69f684e883f", + "id": "1c78896a-49ba-48f9-add3-9f5e4b2b8927", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52081,7 +55511,7 @@ } }, { - "id": "7cce1186-2fe5-42d0-8124-f7d1523e127f", + "id": "537d7da2-ef28-42b6-84c6-ceff2de0b0c9", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -52122,7 +55552,7 @@ }, "response": [ { - "id": "2b0ef2fa-bae5-4af0-9d83-a5adc1c8fedb", + "id": "c5f51a6b-c129-4fd4-ac1b-15db362a612b", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -52156,7 +55586,7 @@ "_postman_previewlanguage": "text" }, { - "id": "53eb99b7-9a99-4dc6-b216-1451b7f86239", + "id": "5b0fbf00-ca42-4d80-9b7c-a58dd82fdec2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52200,7 +55630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb67675e-ca2c-4a54-9bbf-009b60c233d5", + "id": "55463625-b9ba-4be2-ae29-34d7086e2143", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52244,7 +55674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "838c82df-64ec-45ed-a01d-b39dfc0245c4", + "id": "b8cb0ed2-0911-469b-bf34-c2d08eeb5460", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52288,7 +55718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b5b446f-a4fd-4af4-966e-ed31f721cb4c", + "id": "4ad2f507-51b6-45d3-aa0c-da4c19da15c8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52332,7 +55762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb47f07e-30c8-4831-aac8-feba6a66056f", + "id": "3b71cb48-1e49-4ba8-960c-3c74d748e9c6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52382,7 +55812,7 @@ } }, { - "id": "e6714327-4786-49b9-a92a-8b456e69cbcb", + "id": "1744e202-126a-4fe1-a6c9-53101ee05b3d", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -52425,7 +55855,7 @@ }, "response": [ { - "id": "c0b47d32-6ee5-4866-9b8a-b982cf04d55d", + "id": "19323561-bf5b-47d2-988c-99ae14b9f85f", "name": "Exported CSV", "originalRequest": { "url": { @@ -52471,7 +55901,7 @@ "_postman_previewlanguage": "text" }, { - "id": "df24e425-4c5a-4920-95d3-c765ef6abf79", + "id": "013147b0-25e2-4999-a767-abc6eb7d268a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52517,7 +55947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e30eac05-7fd1-47a2-9065-096f41b8e547", + "id": "ae15346b-602b-4827-a7c5-b069dd6ade50", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52563,7 +55993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ea30083-6209-424b-b1b2-9ea063ae20df", + "id": "092100e1-bb90-40eb-9d59-93f9718a641d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52609,7 +56039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4940233-7913-47e1-aed2-265e5728b7c9", + "id": "1508f933-311b-49f5-b0b4-008afc686b2c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -52655,7 +56085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a9b4810-60aa-4344-8c92-ac0c2e9acd2d", + "id": "7f306adf-2b16-42f7-bddd-ed1284019d9b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52701,7 +56131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a1e99a4-5aac-4e34-99be-2b47cab5868a", + "id": "059b49f2-8fdc-4627-a770-137c4ec3f1df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52753,7 +56183,7 @@ } }, { - "id": "5f1786dc-7b5b-469c-b676-aa6622b84683", + "id": "139105ec-d298-4399-8136-cda398e49138", "name": "Imports, or Updates, Non-Employee Records", "request": { "name": "Imports, or Updates, Non-Employee Records", @@ -52804,7 +56234,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "elit sit nulla", "type": "text" } ] @@ -52812,7 +56242,7 @@ }, "response": [ { - "id": "d060188b-c7d9-4338-a0ee-4a3140577ec3", + "id": "922684a5-a649-4949-969a-9f678a7bf3e7", "name": "The CSV was accepted to be bulk inserted now or at a later time.", "originalRequest": { "url": { @@ -52855,7 +56285,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "elit sit nulla", "type": "text" } ] @@ -52874,7 +56304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54e46ab2-12b4-4654-833b-a94a2a31e6a7", + "id": "4660b3fb-70cf-496e-885d-2c7b22414e7a", "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": { @@ -52917,7 +56347,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "elit sit nulla", "type": "text" } ] @@ -52936,7 +56366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "415c14bd-a373-4bb4-a971-f5730e35e656", + "id": "ecefdb82-a5c8-46d7-9a1c-981e9c42d47c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52979,7 +56409,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "elit sit nulla", "type": "text" } ] @@ -52998,7 +56428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0174fbf1-a14e-438d-82c5-71c7965f7518", + "id": "2ee3ae38-6f98-4131-8472-c2cb0c594fea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53041,7 +56471,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "elit sit nulla", "type": "text" } ] @@ -53060,7 +56490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "168cc6f7-ce55-446c-ad3b-07a33ec068f1", + "id": "b8452f83-efe2-45ee-8938-3a05b71f9b89", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -53103,7 +56533,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "elit sit nulla", "type": "text" } ] @@ -53122,7 +56552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "772f2821-2807-449f-a3d4-5a3b7e37bbe9", + "id": "b70cf1ac-5157-434f-98ce-3e36680a0f26", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53165,7 +56595,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "elit sit nulla", "type": "text" } ] @@ -53184,7 +56614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12d01533-9392-47c9-b6d8-f0942c50e614", + "id": "f19aff17-82a7-4278-89df-dae5b028882e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53227,7 +56657,7 @@ "type": "text/plain" }, "key": "data", - "value": "", + "value": "elit sit nulla", "type": "text" } ] @@ -53252,7 +56682,7 @@ } }, { - "id": "e0d48d25-9693-4896-8e39-738abcd1e619", + "id": "889a4a42-33d3-4eee-b029-39261197bccf", "name": "Obtain the status of bulk upload on the source", "request": { "name": "Obtain the status of bulk upload on the source", @@ -53295,7 +56725,7 @@ }, "response": [ { - "id": "1ca58440-f20e-4739-9874-b84a5f00e55f", + "id": "7521b338-1e60-475b-abf6-7b6974f6d8f3", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -53341,7 +56771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90eaaaff-1653-4a8e-9222-1d12f8f30304", + "id": "43761d1e-34fc-4bf1-8ce5-1e79f98d9611", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53387,7 +56817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96ab81b6-b5c2-44f4-90b3-bde035b9dd48", + "id": "ada374e9-3260-4514-940a-0a98cf73cfd5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53433,7 +56863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfafd857-e1d8-46f2-b300-4b774eaf9ec7", + "id": "1be09a4e-5af1-49ef-ae46-aacd19e022f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53479,7 +56909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "904e85de-2145-4e11-bb37-9c6f2a39184b", + "id": "af79763d-19bf-4adb-8dd7-fa948fd0279b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53525,7 +56955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57d7de69-6559-41f0-a102-2c6da6103062", + "id": "1a2be1b2-5c35-4584-9c7c-d4269706d4f5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53577,7 +57007,7 @@ } }, { - "id": "376ca7eb-cab8-4dc3-9ccb-af16d26af37d", + "id": "6d6f00d6-adaa-441e-9f03-5a489e8b20cc", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -53620,7 +57050,7 @@ }, "response": [ { - "id": "b74501d9-47f7-41c9-a997-4722100138b7", + "id": "b4dc7b9f-6701-4ffc-a789-a42ca7104ac9", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -53666,7 +57096,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ab774f8c-d973-4ec8-b154-20c174073095", + "id": "21e6339c-510a-46ee-8d2b-1e6c8c4ccf54", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53712,7 +57142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6742b48e-e9a8-4160-9559-cc54a9b2c95b", + "id": "47f179db-0abe-43d5-8fd7-524e92d6d3f7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53758,7 +57188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ad3779d-5be5-41a7-bc42-8d330c235c30", + "id": "8ac08ee7-8d34-4bc8-94c2-de729571b86b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53804,7 +57234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6943721d-dd32-4315-bd06-633f5e4c1941", + "id": "d2cf2900-bf65-4a81-a9d1-87ce8c2d8bc1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -53850,7 +57280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bf67d86-0830-4680-a2d6-ed3f8e2d6ae3", + "id": "9bfd900b-e27c-4a45-94ca-f13d350a03f5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53896,7 +57326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32451f20-2c4b-4ee1-9f31-2b6ee3e93a2d", + "id": "ad14cbb9-cedd-4807-bfb0-2e86d1a4c1e6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53948,7 +57378,7 @@ } }, { - "id": "eb339ac5-0ea4-460b-8e5f-c7a1bc5ceef1", + "id": "13117e9e-21f8-49b4-8251-f9d721658efb", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -54032,7 +57462,7 @@ }, "response": [ { - "id": "52252e07-3cbc-488b-bf9f-a955d77ebaaf", + "id": "bbab05f9-f6bc-4745-a686-f6e73abafa11", "name": "List of approval items.", "originalRequest": { "url": { @@ -54130,7 +57560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "657bc123-c670-4063-8ad5-768436f8b2a9", + "id": "b4d4ce91-3663-45eb-8f2f-120a1df2c62d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54228,7 +57658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c0bcc12-9888-463a-b80f-926b0eec2961", + "id": "23c16954-02cf-4f46-a23c-cbd99d9cd8ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54326,7 +57756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b5dcffc-c6b1-4458-98e4-8a21f3419ef7", + "id": "4cc1bbc7-94d3-4deb-8b6d-5fb00730feb9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54424,7 +57854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d533a5a9-1a23-48f6-a5de-fabf4e868252", + "id": "93fbad3d-2eaa-4a72-a493-20e05870008b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54522,7 +57952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "155852ea-664c-4208-8bed-8452669735de", + "id": "eea98032-24aa-435a-ba37-3db90245a22f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54626,7 +58056,7 @@ } }, { - "id": "36230399-767d-4a36-b689-3edc71c6950b", + "id": "66351a2c-be58-4921-a890-2d93800a797c", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -54677,7 +58107,7 @@ }, "response": [ { - "id": "c6eab64a-93a2-4db9-843a-23f2e79b06b7", + "id": "54a32ebd-c22b-4a9d-9e14-0e9bb72df85f", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -54731,7 +58161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34ce42e2-0987-4f8a-8286-214bfe60ef7e", + "id": "bc89711e-dda0-485f-8268-b832b893ed2d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54785,7 +58215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab26186c-312a-4547-8e6c-b8d756accf86", + "id": "f5705002-5e51-4b6e-91fa-ee211907d8db", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54839,7 +58269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74173dc7-1dc6-42c5-b6a8-65b026780a58", + "id": "ec9125d9-0818-4025-bf40-68a18442c14c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54893,7 +58323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcb8bf9e-fcf7-4c3e-8cd4-d98ea2c47b3f", + "id": "028655d1-6e39-42ef-9cb9-43bb91fc0636", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54947,7 +58377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5813d35f-39a4-43b2-acf5-c1800aff4d67", + "id": "873cd46e-02d4-4e07-8261-642ca6066e6c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55007,7 +58437,7 @@ } }, { - "id": "1e412eb7-9fb8-489d-a5d3-ae93cb443dd9", + "id": "c9bf82d6-e8fa-4190-8a12-3923e5dac517", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -55062,7 +58492,7 @@ }, "response": [ { - "id": "38b6ec1a-f4b0-4f59-9292-89f4ec55ee3e", + "id": "33eaec25-926d-4462-9496-0b0b9eb063f2", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -55120,7 +58550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a79b8b92-7f55-405d-a704-7f35cd7987d9", + "id": "f8ac6001-c533-4a89-b669-4cf9242798d5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55178,7 +58608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b0359b0-f990-4026-8557-9ada05260263", + "id": "e54b7426-0572-4112-9e39-b7def3812e08", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55236,7 +58666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8f7ba6e-4766-48e6-be35-3f0b64b9fe99", + "id": "0f515f59-e9ca-47ae-80f0-86db81be8593", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55294,7 +58724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62e0ee9b-7619-4992-87fa-1153cf44c62d", + "id": "508188d2-5bc0-4186-9460-8d8dcffe8032", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55352,7 +58782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27250596-bdb6-4707-94ab-27d3c292a1b0", + "id": "1001db71-92ea-4823-9c02-94b8999091b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55416,7 +58846,7 @@ } }, { - "id": "b902d39e-8427-420c-bfce-f0c10b274fc6", + "id": "47a59382-d78e-419c-ba8a-9e632f64a350", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -55471,7 +58901,7 @@ }, "response": [ { - "id": "9fa46bd2-d5dc-43d0-85a4-ea83d5fab19d", + "id": "d44511e8-c2e3-4f28-8952-1411379e642c", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -55529,7 +58959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57f43c44-2858-4f3a-af1a-415c39cac3c4", + "id": "4cb01d5c-f82c-4cce-937f-5f328b749ae7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55587,7 +59017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d0ad8c2-d0a7-42ea-9bb1-67201628bced", + "id": "f59518e4-2064-4d8b-9057-5739f31058f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55645,7 +59075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "971f34f7-104f-4bac-96eb-0ca3a33afc36", + "id": "65ce44bd-22cb-4228-a462-375f74fe62ce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55703,7 +59133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2393625e-40ef-4026-ab42-b541ea341916", + "id": "2252d15a-d5b5-4bc2-a36c-586e43ca33ac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55761,7 +59191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa443334-d1c0-40ab-8415-56af3de293c0", + "id": "e9ae4d0d-7eba-4f18-813f-f3a1c4758ccd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55825,7 +59255,7 @@ } }, { - "id": "a83eb94c-0975-4041-b66f-2a2855b66985", + "id": "0b079e33-ee77-46a7-ba2c-10b15d081156", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -55867,7 +59297,7 @@ }, "response": [ { - "id": "ef0c2f48-2078-4d36-a99b-e9f6698fce7f", + "id": "5fcc2ce5-ee15-40e4-a00d-9c114497cd37", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -55912,7 +59342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "809f3eea-5c41-48c9-8c16-41378abb94f7", + "id": "1c2f51da-2ef7-4ad1-9bf3-9cfd22fdbe26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55957,7 +59387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d02ff7f3-f445-4778-b09c-94e9b688ae36", + "id": "37b204b6-cf55-4b21-a192-b360c3fe30c6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56002,7 +59432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73cf5a4b-1c6e-4e29-9e22-e743523dffb8", + "id": "4b25bd50-8699-4f84-8f90-590d200dc065", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56047,7 +59477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f46df6b0-9518-4fcb-bdd0-62960f312473", + "id": "1e36bad5-aa6c-4845-b5e5-4686ac11ca05", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56092,7 +59522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91a428c3-5585-4c30-ad01-16e9822a39f2", + "id": "c2a9af30-1370-4a49-98f4-94a1dafad83b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56143,7 +59573,7 @@ } }, { - "id": "8b8bf11e-68be-4947-a144-66fdd76f5e65", + "id": "a8025c41-127d-4125-a8ef-c12a17244ce9", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -56185,7 +59615,7 @@ }, "response": [ { - "id": "2e22dc7d-34b3-413e-ad85-bf5541cb6c60", + "id": "89f177f1-641f-4781-9554-de9fcc4a7ff6", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -56230,7 +59660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f40b1ca5-7e9e-4362-986e-30eb7ff06eb4", + "id": "ffd075d7-9154-4106-b953-303f05b96b7b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56275,7 +59705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44281a9e-c9e0-438c-9395-f58132995320", + "id": "e34f3dbb-4499-40cd-8f7c-439f781b8ec3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56320,7 +59750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32acc916-350b-4fc9-91d7-bd11a095d444", + "id": "0164a6b8-ffab-4ca2-bc59-60c3db1de7b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56365,7 +59795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d1507a5-6f4d-4204-903f-740e59c1fadf", + "id": "86f9b56b-1792-49c9-bc20-399976828ad7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -56410,7 +59840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67470e4e-49e0-43e9-bea6-1ff704d7db28", + "id": "0a33721b-fa90-44f6-a55f-02cdcd41ad15", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56455,7 +59885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d47d384-8639-4fad-a3df-87e3f598c9d9", + "id": "85196a70-ee84-464a-93de-e73a35e545ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56506,7 +59936,7 @@ } }, { - "id": "05a5f6a9-7032-4172-9827-fd91a1e3ed7e", + "id": "75959d90-e69e-4e3e-b3aa-8962a3ffb430", "name": "Create a new Schema Attribute for Non-Employee Source", "request": { "name": "Create a new Schema Attribute for Non-Employee Source", @@ -56561,7 +59991,7 @@ }, "response": [ { - "id": "9a73b330-4263-4b7b-8ffb-7e7941546fa0", + "id": "7ae510da-f22e-42f7-a3cf-754f5bb8979b", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -56619,7 +60049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a1fa004-5cfc-4493-83d9-2bb708c27836", + "id": "dc8a2fdd-76b9-4aec-92c6-5d29b57f3446", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56677,7 +60107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "264bb0db-baa7-4e5b-8c50-074be270223a", + "id": "19c44b6f-0507-4909-adaf-4e3d39c18b03", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56735,7 +60165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f8afb81-8e0b-471a-b7cc-50016940c1a1", + "id": "f4f8bb58-0164-426b-9617-35d7e2185b9b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56793,7 +60223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1da86e3-fbd5-4308-878d-c85541a7466c", + "id": "f08ebe06-8b3a-4ccc-b488-1ba35dcdc4f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56851,7 +60281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a510c02e-fde3-4e1a-83d1-6aafce2e3ffc", + "id": "46cb3fb6-168c-4784-a36d-4b933fff73ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56915,7 +60345,7 @@ } }, { - "id": "1f5f35b6-6356-4915-971e-cca1fab4e6ef", + "id": "430b73a1-a6bd-4685-98ab-11fc062128bd", "name": "Delete all custom schema attributes for Non-Employee Source", "request": { "name": "Delete all custom schema attributes for Non-Employee Source", @@ -56957,7 +60387,7 @@ }, "response": [ { - "id": "333c79c8-2c96-4f7b-aebb-04bb62ddf19b", + "id": "6057e56d-459e-4eca-aff6-40836027baff", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -56992,7 +60422,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1cc68e2a-af4d-46be-b543-0218fa8883e1", + "id": "4cc12abd-244e-4472-b76b-49805cafb0ed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57037,7 +60467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "827c6e35-78ea-457f-9169-33e85b7e49fa", + "id": "1aa7653f-2e5a-43a5-85da-f9905688b0d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57082,7 +60512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de30f09b-0a52-4c80-af2c-cda6beefeb64", + "id": "2a71e7f0-4a64-49e7-9e7a-293f89042007", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57127,7 +60557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa5338af-1c15-4c2b-a90b-3e3d95998e61", + "id": "0a7bb612-af98-415a-9c8c-0bd8e9692152", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57172,7 +60602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebb1faf5-198f-442d-afe0-2dea481cd9f1", + "id": "2cf858ea-ec08-46c9-8cb3-8e187d28345f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57223,7 +60653,7 @@ } }, { - "id": "f3ad042e-009a-4fd9-a8dc-6a0c25ff5321", + "id": "774d779a-15b2-432f-9b96-5a40c0fff75c", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -57276,7 +60706,7 @@ }, "response": [ { - "id": "fa1dddb0-dba2-47c0-b143-3908f4c8e7d5", + "id": "c773c176-4ada-4a28-8240-7b189008a648", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -57322,7 +60752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a6a8338-cb8d-4e3b-8758-cd8f418e146d", + "id": "82abe9d8-23c4-4642-bf57-c0fb5adc42d0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57368,7 +60798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0abc32f9-52b7-4666-b375-dc59d132eb6c", + "id": "872db80a-ed34-4298-a5ec-6faca086475c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57414,7 +60844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fda1dbf4-3227-42b4-a104-be587c6bcca2", + "id": "e99809bd-d580-4779-b536-972b837c1675", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57460,7 +60890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9efa50d-d38f-411d-93f0-a4b39435b77d", + "id": "1a63f03c-c70d-44e9-a9c2-429f0131f1d1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57506,7 +60936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65e79cb6-fda2-4413-a58e-91fd601a8306", + "id": "a813d63e-74b8-4340-be73-9910e9957cc2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57558,7 +60988,7 @@ } }, { - "id": "bbd7e8ff-de6f-4fc2-ae38-39a351d613fc", + "id": "3b78944c-8c37-495c-9188-fe8e05811319", "name": "Patch a Schema Attribute for Non-Employee Source", "request": { "name": "Patch a Schema Attribute for Non-Employee Source", @@ -57624,7 +61054,7 @@ }, "response": [ { - "id": "6ffe726d-8444-41ec-a611-197e47989589", + "id": "991af8a5-28e8-4518-a84e-1b5fa75ced17", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -57683,7 +61113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39f53cd7-1964-4c6d-847e-2914e714801a", + "id": "520cb480-924b-4cb3-9c1f-cbcc4ef6cdc0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57742,7 +61172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcb19d9a-6f87-463f-8288-45f7e2216da8", + "id": "bdde2926-4e35-40d9-bec1-e1c7797d19b2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57801,7 +61231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5df0a5fd-6696-4c00-b700-bc96f0c1ffa0", + "id": "8272f315-78a3-4fd9-a6e0-2ffe722c7a39", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57860,7 +61290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adb71374-3927-4f61-beb4-f8bf9ce8bf0f", + "id": "92ac37a0-aac0-4038-b67b-63dc68c76fb7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -57919,7 +61349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8ba67c2-0bf5-4c6e-b82b-29cef7bd9f35", + "id": "aca6db06-c3dd-499b-95c5-54f88d570788", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57978,7 +61408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30a96817-e78a-449e-ad51-9f6d2ee2119b", + "id": "f49a794c-ea2d-44bd-8a5c-b91bec6fea8a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58043,7 +61473,7 @@ } }, { - "id": "4bad4795-c104-4637-aaa1-91a30b01eb67", + "id": "624f849f-55ff-4497-b09f-2f4bbe2db169", "name": "Delete a Schema Attribute for Non-Employee Source", "request": { "name": "Delete a Schema Attribute for Non-Employee Source", @@ -58096,7 +61526,7 @@ }, "response": [ { - "id": "c751c0c1-9099-4feb-8a64-a3bd35305ac8", + "id": "4e343f45-485b-4203-ab48-b6a22d10d5c6", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -58132,7 +61562,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3095e29a-5490-48c9-a026-1340737c5884", + "id": "504af760-c893-49e3-a186-9766ea6654a4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58178,7 +61608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19ad4217-0a88-4014-95e6-24b9533ed51b", + "id": "6c45f299-44f8-4c89-b924-b09065621ad6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58224,7 +61654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86ec0a8a-d192-41d2-bb41-eb4db258783d", + "id": "557e7884-2a63-498f-8965-09217136cb7c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58270,7 +61700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "872d8efb-93c9-4d12-a557-b92d84f4c6ff", + "id": "5865d911-3b03-4808-8869-d8bc03b9194b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58316,7 +61746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7743f02f-13b4-447f-8109-e98e9506db8b", + "id": "e3f1999f-3018-4e04-8ba7-fb2363e7e827", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58374,7 +61804,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": "6dd22124-3c4b-4919-abb3-2ce84e9f415e", + "id": "a4460a4c-0622-4aab-955f-43b5378668d7", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -58413,7 +61843,7 @@ }, "response": [ { - "id": "c1420b7e-0a1c-419f-91e7-9ad18211f97b", + "id": "2fa1352d-3960-4605-bc05-9f583f4655a0", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -58466,7 +61896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0988e6c1-fabb-44a9-b32a-50ca1ef5f1b1", + "id": "2d520f32-b413-4ad5-87ab-372ff23aca96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58519,7 +61949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3398dcb0-442f-4348-8a86-d3aee713afb7", + "id": "2abd1874-fc7e-4885-b2ec-61d04fab5a2e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58572,7 +62002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3558ca3-cda4-4b63-9994-13404e7b2621", + "id": "d37a2b78-bcab-4b53-9425-b94bbe443ca0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58625,7 +62055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67253ecc-485c-4e79-a8d0-92b35d60efad", + "id": "13ad39d8-cb0c-4cae-8553-8facf0885497", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58678,7 +62108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82133411-7c72-4fce-a94b-5b419c63ce7f", + "id": "499353d6-60af-41b9-8a21-fe4b38c13f2e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58737,7 +62167,7 @@ } }, { - "id": "54a04562-29ef-407a-907f-ccf665f521b8", + "id": "27c432c0-7f37-4969-8206-6aafd076fef7", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -58779,7 +62209,7 @@ }, "response": [ { - "id": "2a014acd-4f14-4e16-9236-3ed52317c231", + "id": "be0f22a2-5e2c-46bf-a8ba-cc1f33dab751", "name": "Request succeeded.", "originalRequest": { "url": { @@ -58835,7 +62265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1f2946b-99bf-4d17-bec0-f4e8b4045145", + "id": "10596522-b45a-4ef1-8090-31d6bcb211b2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58891,7 +62321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "829c50a8-f887-4f5e-8d77-f551a8e1da8c", + "id": "a3c2eb5b-91d5-41ad-a311-450cb2b71d38", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58947,7 +62377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86ea9571-9afd-42f6-8e4c-171316f3bc21", + "id": "b28dba6c-0e6a-40f2-ab56-56744cf9201e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59003,7 +62433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "890ac631-5150-4006-9324-5086f00663df", + "id": "928849c6-0ce4-46d6-b19a-b26e9f51a7f4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59059,7 +62489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fa5e1e3-c47c-4f29-90ec-5aaccc5c1b73", + "id": "88961532-0cf8-4b1b-9789-4448603d2a86", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59121,7 +62551,7 @@ } }, { - "id": "06cbc697-615e-4f0f-ac5c-490d6ce441ce", + "id": "78eb38e6-a3a6-414a-b0c4-5acd7af0a24c", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -59162,7 +62592,7 @@ }, "response": [ { - "id": "ac3c9f69-3869-40a7-8b35-ab204f7bc679", + "id": "2b1f4232-42a8-427e-9080-cb40749275ca", "name": "Request succeeded.", "originalRequest": { "url": { @@ -59206,7 +62636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53f1d02b-3472-4d06-8a1e-c9bec95d0e9c", + "id": "d50e6b71-f503-4cbe-9520-02497ca08325", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59250,7 +62680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cc0e45c-f06d-42bb-a0b3-5cdd1c665a4d", + "id": "5b96854b-98e0-4eb4-b5d3-1106a5d11130", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59294,7 +62724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2478971f-09f0-42d2-a936-4524224333cb", + "id": "845c1604-b930-4a9e-90ac-f5a503b04488", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59338,7 +62768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78586e1a-1c21-469c-bd84-34c817a4f674", + "id": "4255423a-aaf4-4143-9842-5982ec1ea2b1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -59382,7 +62812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e670a4f-ced4-4dcc-a9f5-f3be2ed8cfc7", + "id": "6167ad4f-ecba-4628-9338-6c38d305aca1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59426,7 +62856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ba06bfd-4bbd-4090-b569-6323b62b991c", + "id": "33c16448-d6e8-4a67-81fb-e5315253a67b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59476,7 +62906,7 @@ } }, { - "id": "85f37e3d-7045-4d31-a316-f6d727c0f1da", + "id": "f9a2bdd1-2a09-4543-ba46-0843c2059a59", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -59517,7 +62947,7 @@ }, "response": [ { - "id": "b9fcaa77-69b8-4c09-98b6-204dea401e7e", + "id": "e06f2620-6696-40c7-b9c1-fad5a0471b62", "name": "No content.", "originalRequest": { "url": { @@ -59551,7 +62981,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b5f615b9-022e-488b-9e6a-441329e41f99", + "id": "cb68f890-4cc6-46fb-ad5e-01791d23eabe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59595,7 +63025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64429b43-ea54-4216-9ea8-2678618bc709", + "id": "9e8e3c59-611f-4b7e-854f-e2a65ce770a1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59639,7 +63069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1872c17f-4678-4178-ab44-e8e4577f1c90", + "id": "94ac5668-c415-4f52-99d0-697e13aed67b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59683,7 +63113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24d29856-5e41-4fa0-b3ab-5c07c7ff7024", + "id": "5d0dddf2-dd88-43af-b55c-cb65f84b0111", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -59727,7 +63157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05edd63c-3758-464f-bb11-c7e3e99f7042", + "id": "f08765bd-4434-4123-bf4a-14a559f676bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59771,7 +63201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a04be60-84f2-4fb0-a89e-9ecece48154c", + "id": "f1ebd9e7-5f9f-40cf-8b79-d08c28692110", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59821,7 +63251,7 @@ } }, { - "id": "70114a0d-077d-4638-a508-0fbe3fc28670", + "id": "cb1f6eaa-b78e-42cd-9dae-6030610897ee", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -59875,7 +63305,7 @@ }, "response": [ { - "id": "2979eae9-6207-457c-b100-cdc5f7da9af6", + "id": "54892130-9fdd-4e7d-97e7-0d1e2e6d8ff8", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -59932,7 +63362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13f7a91e-bbaa-4f9f-b426-87383ba406f6", + "id": "d751216c-aa9c-4ddd-8412-a2402dffca82", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59989,7 +63419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d773f35b-d692-4859-be39-67d287982be8", + "id": "4b0741ef-3c4b-4776-a727-1c05e225ef69", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60046,7 +63476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23a0d8a4-bef6-4f6a-9822-80ddc440e42c", + "id": "72272706-74d7-4f95-9d9e-b5784fb07897", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60103,7 +63533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc95753e-2129-4ad3-976a-0d6e88d9cbdb", + "id": "55e935d0-d873-4980-999d-625d873500a1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -60160,7 +63590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fd183e6-dac3-4bbb-9f6c-2f8228b85cab", + "id": "c65e31ea-4745-4040-b32f-521d7b823926", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60217,7 +63647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15f1a3cf-f4ff-40db-9baf-714124772738", + "id": "76e8f864-90f6-4e9c-9a78-97cced4bb4ae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60286,7 +63716,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": "eb056423-d4d8-4a34-8854-c7081d783b4f", + "id": "d3591184-b150-4ea7-b3d9-7789e7369cd0", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -60315,7 +63745,7 @@ }, "response": [ { - "id": "a7126100-1499-4a61-86de-d2003b8425a3", + "id": "125ab8da-b15f-441f-9bd7-ef57326c5789", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -60358,7 +63788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a963384c-34e8-42c9-83a5-a8d31d9a750e", + "id": "f14d313f-8832-4e8b-963e-de18f26d1940", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60401,7 +63831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1eb47a82-3a28-4365-b8ab-f3ed96906dd3", + "id": "bfef8b2f-608c-4713-b393-1f3d56fd09b8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60444,7 +63874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fddefa4f-a742-402e-b601-fc135c96271e", + "id": "1d7d4612-1f21-4298-b6f5-cf331007dce6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60487,7 +63917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e023fe2-f183-4a07-9391-9dd3840b2d29", + "id": "6b02fc62-907f-444c-ba6f-d7d9571ac66e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60530,7 +63960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96abd438-17ee-436f-8450-f1ada242f8bf", + "id": "4e8a4806-82d6-4206-b74a-41d3a2d7f1bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60579,7 +64009,7 @@ } }, { - "id": "1efddae2-76e3-4c47-b8d8-3b318456ab23", + "id": "0a3582e3-9143-4761-92c7-eb0d199d007f", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -60621,7 +64051,7 @@ }, "response": [ { - "id": "a500581d-68cc-4279-ab98-12808c80ab8c", + "id": "f54eb5df-3a48-41d2-a4d9-9abaad99c3ba", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -60677,7 +64107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edfdf39f-1b46-4474-888a-b75f2e757878", + "id": "9eec0c5f-ab7c-42ff-94df-f82a6d7a0456", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60733,7 +64163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4778fd7-df89-427e-ae69-b30693f77bcb", + "id": "5bab4ba3-a721-4329-a673-33f451df2a93", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60789,7 +64219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "004080a3-2f67-4e30-8b40-1e2e83df18d8", + "id": "61563999-5ad9-41e1-b92c-b9c03bf648d8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60845,7 +64275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5912d905-7be2-4c35-b295-e0f086111f46", + "id": "d89d14b7-c7b9-47a5-8308-8e37cf9bbdfc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60901,7 +64331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac5e9894-3b87-4aac-aa69-83eeb3f69ba3", + "id": "997ab2a5-e8dd-40c9-bd51-8b67e7ecb125", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60963,7 +64393,7 @@ } }, { - "id": "096aa9a0-95d0-4260-b9d1-2568431b9cc2", + "id": "366743c5-168d-423a-9b5a-a1af9fea286f", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -61005,7 +64435,7 @@ }, "response": [ { - "id": "dec9b3ae-2b4a-4e5c-ae69-cffbc5869519", + "id": "83e7d306-8e02-4ed3-b887-0ed7861553da", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -61061,7 +64491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f7d2627-5c02-4cc1-96d1-3a722ca1c127", + "id": "2ccdfd3c-683b-4af6-92b0-ca568a69b702", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61117,7 +64547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc710e52-176c-4f79-8b98-6679f627c397", + "id": "9e5a4d70-bc1a-4953-99eb-26ad4edd2922", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61173,7 +64603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61fef10b-9af6-4bdf-a024-ba44784f77e3", + "id": "940ad4d7-d199-4ea9-b82e-17f3ca0daace", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61229,7 +64659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4db4827d-5a79-4a54-9dd5-c8c39ab361f7", + "id": "0438c0f1-8013-49fb-b1df-cfaeab9d9a05", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61285,7 +64715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "befef3ab-5712-4e46-b466-020d74ae66c3", + "id": "eaa8d438-2958-4d8f-90d0-f10643fdfcc4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61353,7 +64783,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": "e9edb0a9-8024-4414-a594-9bbf6fb7294d", + "id": "678e7f97-29d3-4449-84dc-75e151b5ae00", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -61395,7 +64825,7 @@ }, "response": [ { - "id": "5233aa5b-c236-4134-b19e-cfb9e4dce08f", + "id": "2c5218a4-f032-48fb-9962-d3b687a4b1ca", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -61451,7 +64881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f34ff2e-3359-442b-b682-49dfd8ce7a62", + "id": "189281d3-0068-4fce-988f-3205b1115ca5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61507,7 +64937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "849d2277-4d98-4bba-adcc-8d01967044b1", + "id": "7f35bdc1-63c1-4c18-bce8-ab809eedb0b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61563,7 +64993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8a6f6a3-b025-4f4e-96f3-1543ffe25ef8", + "id": "9f181607-f74c-4f74-be85-c3d4b34f572b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61619,7 +65049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63219da9-2978-4e5c-b970-dd235e37b710", + "id": "9cb2b255-8ccd-4195-a225-665ea8cf7e9c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61675,7 +65105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "591922ee-e992-427a-8894-0501e800f8c1", + "id": "525b5893-2874-4905-a122-feb3b50b1812", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61737,7 +65167,7 @@ } }, { - "id": "adc94dbb-2416-493f-964a-e31e5d22ed85", + "id": "b5a8e3e6-30d2-4593-8086-ee73e4c98024", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", @@ -61779,7 +65209,7 @@ }, "response": [ { - "id": "87a05e3f-fda3-4d8a-ac6a-39cfbacb639b", + "id": "ebd7a483-3dd5-406d-895d-ae2d67759dd7", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -61835,7 +65265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3871db10-d089-43ca-8010-bdcf362176dd", + "id": "3857e9f8-d4e5-4904-ab40-33f21beaa5ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61891,7 +65321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "400cce98-5e40-4c94-86ba-85e223b5b08b", + "id": "82c0bd7e-cedb-406c-bfa8-8b6920c8c9b6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61947,7 +65377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "503150fa-ec26-4b5c-b3e9-c51bd27c1f71", + "id": "69cff090-4e05-4094-8b28-0d7ced9e504c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62003,7 +65433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "429c0efd-fb3d-484f-9e14-6b15ad2c97db", + "id": "db8ccbd3-3732-4101-9ff7-52c3c9e197bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62059,7 +65489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c3cc726-7942-4185-840a-0e55c951daef", + "id": "8260f402-fff0-4778-a602-cfa6500fa614", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62121,7 +65551,7 @@ } }, { - "id": "4536ef7e-57c4-444c-8f77-42ef96580629", + "id": "c8b597a7-fec1-41bd-ab82-3f2327b14d24", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -62162,7 +65592,7 @@ }, "response": [ { - "id": "73f85827-a7ec-4a28-b716-9f1727ac7daa", + "id": "f84bffa4-7726-4666-a332-192bcd5276a9", "name": "Status of the password change request", "originalRequest": { "url": { @@ -62206,7 +65636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d08c1249-5d6b-48f8-a523-1acaa43c4d2a", + "id": "dc512b14-5e5d-45a8-abf5-cbf202527c28", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62250,7 +65680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed80a473-95a8-4298-a595-561b2101f9af", + "id": "2d6ff59d-996b-43f4-864e-03b367a16f51", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62294,7 +65724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bb0dfa3-68f9-4ed3-b21b-87f9f97e5dbf", + "id": "ba19bbf6-01de-454f-b5be-87427c899071", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62338,7 +65768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef50f810-af9b-45bd-9445-56e7720d44de", + "id": "15e6bc18-9b07-40ab-9dac-937da8282480", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -62382,7 +65812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b27f922a-1d97-4968-abc2-fa0a8c8fb2e9", + "id": "195ab9ea-6e50-4289-83b0-bda0eef4d4fb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62426,7 +65856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "411c6476-53ec-43df-8cc6-380ff0188f66", + "id": "3c124ecb-0ae9-478e-9300-6e7461224714", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62482,7 +65912,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": "4e7b5784-4571-49e7-9534-3bc477451776", + "id": "0ad202d4-831e-4996-9ec8-4f48fb44599e", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -62511,7 +65941,7 @@ }, "response": [ { - "id": "efdfaa2b-213d-445e-8a7e-d22648270b4c", + "id": "79eb94ea-06db-4ee8-9253-8b604544917d", "name": "A password dictionary response", "originalRequest": { "url": { @@ -62549,12 +65979,12 @@ "value": "text/plain" } ], - "body": "minim cupidatat in", + "body": "nisi irure", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "72011d96-55e3-43de-a28c-54775c420720", + "id": "b2758534-7b44-488f-9374-fc897d71b35c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62597,7 +66027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "135d08e5-6455-451f-8df9-9a42b17939af", + "id": "207def5f-8e3f-4c69-a6ff-9b36702a5d99", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62640,7 +66070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5e5d80d-c8f7-44f4-81bc-a592d94ea550", + "id": "c9daea46-2ad2-4366-88e8-229bcc0cddb7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62683,7 +66113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5163c90-1f05-4231-acba-170154939901", + "id": "45bd16dc-f4b4-4af0-a669-94ed5d4b7c13", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -62726,7 +66156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e72c18cb-afd2-4efe-88c8-7ecd6e1b397a", + "id": "c039b5a2-df8e-45d3-b0c1-4979a6641bf9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62769,7 +66199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65f6eed7-b4cd-42a1-bc77-44176a101dc3", + "id": "ed0bf810-7e2b-4004-868c-348d46a1bfca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62818,7 +66248,7 @@ } }, { - "id": "3eb8464c-813e-43f8-bea1-495ef40b69c6", + "id": "567ecd8c-6af7-4a0c-8616-d5cf09d37d14", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -62856,7 +66286,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -62864,7 +66294,7 @@ }, "response": [ { - "id": "7553af22-691d-4091-86af-70aa6c68435e", + "id": "a252655a-fb4f-4cdc-a6be-ebf9a258cb42", "name": "Successfully updated.", "originalRequest": { "url": { @@ -62901,7 +66331,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -62914,7 +66344,7 @@ "_postman_previewlanguage": "text" }, { - "id": "daf05686-0dce-4313-8fb8-5cf86ea92c4d", + "id": "a5fc6c78-28ec-404d-bc61-bbca83861639", "name": "Created.", "originalRequest": { "url": { @@ -62951,7 +66381,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -62964,7 +66394,7 @@ "_postman_previewlanguage": "text" }, { - "id": "60363420-5e96-47d9-972a-608dac2becf9", + "id": "45f4d171-1fc1-493f-8120-4382200535db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63005,7 +66435,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -63024,7 +66454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ff3ae1c-17ed-49c3-9fe5-e3dfb2f2e651", + "id": "d5bfc9c7-32e7-4305-9478-9a6c9f09dcfe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63065,7 +66495,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -63084,7 +66514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68fd239d-19b3-4565-b8e1-be871ee740fc", + "id": "5c2f5777-26cf-4191-a168-9b4e930d0d91", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63125,7 +66555,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -63144,7 +66574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6fa7a1a-7a4e-4d88-a238-31fa9d72edbd", + "id": "9c551208-62d2-441f-b164-f0972c4ad657", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -63185,7 +66615,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -63204,7 +66634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b228e2bc-2ae0-4431-bcbb-5eacce6d5684", + "id": "d2cbeb59-4593-4115-bacd-854887cc4cf9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63245,7 +66675,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -63264,7 +66694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2dac406-4ac6-4928-9d5d-21249edf110e", + "id": "ab84575d-e8d5-40fb-9370-4b2f28fae18b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63305,7 +66735,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -63336,7 +66766,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": "2e44a3aa-a9bc-47aa-9d88-48aec018dee8", + "id": "767b99ad-31b3-423d-94cc-6782e523ebf1", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -63393,7 +66823,7 @@ }, "response": [ { - "id": "4daf9276-6d45-4f33-bb76-8706deaff10c", + "id": "08f5481e-ebc8-423f-a7fc-079a6806f106", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -63464,7 +66894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b88e6d89-c8eb-4ac5-87d5-fb7836fe942e", + "id": "50d18b7f-a654-42eb-8056-4ebae09bfdd9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63535,7 +66965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2463fb04-5548-43d3-a1b2-0fa962d8deab", + "id": "c7dcbfd9-fac8-4af5-9d6d-ef3f6eeaa3ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63606,7 +67036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "316ae8c0-b5d2-4d98-a959-10d00446c527", + "id": "0a69d18a-de2a-4655-ad73-43be084f8346", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63677,7 +67107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e2048ad-e031-4ae8-8ae1-ec5b9535365e", + "id": "86b60c1b-6e05-4231-818e-4dff6779ce94", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63748,7 +67178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67bd4dde-fa19-4599-bffe-21cbabaa3323", + "id": "2f68a8b3-441f-4529-9a68-748a527f75cc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63825,7 +67255,7 @@ } }, { - "id": "645773f9-a6e0-4616-83ba-c44833493cb3", + "id": "115dcbb6-47f8-493c-b4d3-20d553ac74f6", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -63867,7 +67297,7 @@ }, "response": [ { - "id": "eeb19ed5-a059-4324-ac3d-f834be3de1ba", + "id": "886bba92-ef6f-41ea-8fc2-b747b88eb3c3", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -63923,7 +67353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "652f4ee1-135d-4d1b-b8bd-b0c7ade24c1d", + "id": "87cb36f3-d1e6-4860-920c-f1d327448912", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63979,7 +67409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ce838e5-2e62-4883-8980-80bc4c284fad", + "id": "6a752a31-8abe-4081-b1ba-e85de3dddf1a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64035,7 +67465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b018a55-e7ca-4fb1-b27f-2c68643ad212", + "id": "ede2620e-6ce0-4299-8a78-8c32aec2fa92", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64091,7 +67521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "870827af-0371-49cb-adc2-e0439bd4574f", + "id": "79354427-b5c8-4205-b532-9bca338ddda9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64147,7 +67577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ba0ad2c-955f-4165-b1ac-3820a557620a", + "id": "2356bf2d-92e4-4e08-b194-d914159dee90", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64209,7 +67639,7 @@ } }, { - "id": "bd8e9ef8-5b36-472f-a2bf-37d4997bde06", + "id": "f7c5e134-6c19-496e-94f1-64eb4ae44963", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -64250,7 +67680,7 @@ }, "response": [ { - "id": "7cbfcf5d-b3a7-4e25-bce2-b28da282e515", + "id": "6ec4e068-e49e-469f-add5-1bf753ddb296", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -64294,7 +67724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6db3d6e1-1310-40ae-8d09-6b7b573bd0a9", + "id": "77677956-88d5-4bdb-900f-d176521e63cc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64338,7 +67768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e26ddbb6-e1fa-4414-b67a-6a20ae408e9b", + "id": "1877644e-5e33-424c-83ee-a59ff0840b02", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64382,7 +67812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f3866d5-2b99-464a-8367-927bf2839a76", + "id": "e1c7cde8-a97a-4af0-b353-2ec4ed248dbf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64426,7 +67856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3ec6ab1-fc20-4bfb-a560-cc8ba329848a", + "id": "d264f60c-7a39-4cd4-be8c-5f75e8171567", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64470,7 +67900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f97740c-0749-4a9a-9e67-0e737840d5d5", + "id": "8c59f612-8a10-451e-b0c5-5a54e7770cb1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64514,7 +67944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d129b60b-c4f3-4e14-995e-0d52108beb90", + "id": "6002e4b8-1978-49a9-b0ec-39b7c1a4002f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64564,7 +67994,7 @@ } }, { - "id": "55037e1b-52df-415b-8581-eff5aa18dc9a", + "id": "ea1ca7b4-2016-4be3-a992-6e1e98379123", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -64618,7 +68048,7 @@ }, "response": [ { - "id": "564faa92-54bf-4ad1-9708-6773c4e68a5f", + "id": "649d1610-3b9e-42c7-81d6-28170e8023f9", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -64675,7 +68105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c373e5d-70cb-4a6b-a345-5389e6e31348", + "id": "5a6f76fb-20be-4597-9f3d-df579d439b2f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64732,7 +68162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2784aafd-1a07-411c-8bf0-6bca6d40fea7", + "id": "8e68ead0-4068-4cb7-b17e-143bb4e15dcd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64789,7 +68219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "337066c5-5a62-421d-bd6a-edc39f36d820", + "id": "49773dee-812e-4aca-8c54-c1531f5a56ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64846,7 +68276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97301b3d-89f6-48b0-a0fb-4f42c9c4f7d3", + "id": "b6635f79-0f28-423f-a1f7-76d072398f19", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64903,7 +68333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "702b4c57-9951-455b-a6db-1bd2a955ce16", + "id": "fe4e9435-4291-4061-bfbe-9f419477ddaf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64960,7 +68390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c57ff2f-7bfb-4aaf-8640-230c524e4e3e", + "id": "d1d00388-4587-4c9c-8129-21dae2671a6b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65023,7 +68453,7 @@ } }, { - "id": "95385b35-e605-4d53-b4e2-25e07963b484", + "id": "2570fdb4-0a6a-4447-8af9-67389b0ecc04", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -65064,7 +68494,7 @@ }, "response": [ { - "id": "1de5134b-4924-45a9-b1fd-4daa149e4d9f", + "id": "3197000e-6f10-447f-b777-8c9dd7687bdf", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -65098,7 +68528,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9888693e-7ce0-4003-9b3e-38a1e0e15406", + "id": "fb2db08b-0159-4a0e-941f-4004a77755f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65142,7 +68572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "704ecbd9-1fa8-4c01-afe5-eb405b9c14c5", + "id": "4d78ab7c-12f3-43b7-9c3a-c839aa0370ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65186,7 +68616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba7ba7ac-30e7-49d8-b30f-8050958ed1eb", + "id": "3691cd67-e4ac-4fcb-ba1f-715cb93bd905", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65230,7 +68660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b13e194-62fa-4b03-9478-a7eef0238510", + "id": "b6d5bbae-1633-415f-90e8-b6fde481b8d8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65274,7 +68704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b118776-ccce-4ac4-b078-5fee058b396b", + "id": "73c21afa-51bb-46bc-bc63-652454294b2d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65330,7 +68760,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": "95b8a9b1-08c8-4b9c-b4b7-bcdaf833028f", + "id": "a0f2d202-e2c8-4f6f-8d7e-c44178b4d1a0", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -65378,7 +68808,7 @@ }, "response": [ { - "id": "0741885b-0cbb-4012-911b-0d86dc4f1794", + "id": "503e68ff-35ff-4ea5-9af0-60632bd6faf9", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -65440,7 +68870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69efbceb-0759-435a-a7e5-5494106ade63", + "id": "a24bab46-12da-4a9e-852b-9ac756c202a9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65502,7 +68932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e314974-29e3-49d0-865c-630d9bbb52a8", + "id": "0a3bdd1d-ec68-421c-890e-d8e6bb9208a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65564,7 +68994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71087e6d-7b25-4733-9d53-b8ba00bc2de4", + "id": "9dd1c7fe-40ce-49b8-8781-899cac4b383a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65626,7 +69056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "845741b1-46af-43da-81cc-a4c82e49d6e4", + "id": "44ef67a2-0887-43bf-85b7-2b9b7e1f3371", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65688,7 +69118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e28b4edb-5674-41e9-8f07-f7f4c638532e", + "id": "9df9ac4f-1ab9-4b51-b6ea-f93756362a7c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65756,7 +69186,7 @@ } }, { - "id": "06fe2f22-8c7f-46ca-9afc-90019dea68d6", + "id": "42ee8910-23a9-4e46-beb6-9c85489d6d98", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -65798,7 +69228,7 @@ }, "response": [ { - "id": "147bee36-b4e3-41c6-82e0-6239d46e97e5", + "id": "aab4903c-91b4-4039-a8b7-00047a08b7ed", "name": "Created. Note - this is the only time Personal Access Tokens' secret attribute will be displayed.", "originalRequest": { "url": { @@ -65854,7 +69284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efe721a8-24d8-483e-91ca-e04d062febc8", + "id": "0138c806-44f7-4d60-9c7f-b1a8b3d22784", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65910,7 +69340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d81d6190-a597-4c48-b40c-3fbf1f9a662e", + "id": "5aa80ad6-ceb1-40c7-a65d-f6212a61689b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65966,7 +69396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc0586e9-4f12-4970-938a-f2e8ed6fc593", + "id": "7acb61e1-e16f-438f-a7b1-d94691f55747", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66022,7 +69452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae32043c-b4da-4b77-9b84-b71ffdeb97a3", + "id": "fbdd41ab-d65c-4ff5-a52c-bf2422d439c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66078,7 +69508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f18f77a-b3e8-4c52-a302-7f457e8ef591", + "id": "4e7b0983-4982-4c0d-9248-7e5db1897345", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66140,7 +69570,7 @@ } }, { - "id": "6a1f28da-f4d3-4a7f-ab82-69b10be30e10", + "id": "1d6c61bc-3755-495d-b575-e5be31644a1c", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -66194,7 +69624,7 @@ }, "response": [ { - "id": "5434a31b-ef41-4650-a0e7-7a839acae75d", + "id": "69366351-5460-4c82-9807-d7611765dcf6", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -66251,7 +69681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7b62d2c-759e-4776-9857-d02d03afac25", + "id": "92315352-56a1-4009-ad26-54a349336abc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66308,7 +69738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "394d3625-00af-4f50-9382-5e2322e74559", + "id": "3253acfb-b39c-4db8-9351-afaabdcadafe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66365,7 +69795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67bfc942-1281-40e7-959c-c473726e3ba9", + "id": "7a6ffc3e-f056-40b8-a36a-e321307e32c7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66422,7 +69852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7018e21f-f1a6-44ad-978c-4949f5505ff9", + "id": "270cd33b-c194-4d07-9a93-3f5916294a19", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -66479,7 +69909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc9cdc81-2589-464b-a8d9-2d7e062a20ee", + "id": "7701b9c3-d2c0-4e09-a26e-a04a4b61a39f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66536,7 +69966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84ad0f11-b901-4932-9e90-ab55c4162220", + "id": "42fae8c0-4612-4003-b7c2-0d165684c282", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66599,7 +70029,7 @@ } }, { - "id": "22a91c63-286b-4974-b811-1e5470293b61", + "id": "88bb8334-5281-40e9-9968-ead6158478e8", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -66640,7 +70070,7 @@ }, "response": [ { - "id": "668e0de0-3e65-4031-82c6-b4fc7bf99cda", + "id": "30d3323d-d7d5-4e5e-947c-66db6a13c292", "name": "No content.", "originalRequest": { "url": { @@ -66674,7 +70104,7 @@ "_postman_previewlanguage": "text" }, { - "id": "338a853d-17d6-4977-b92b-bb7ba962c1bc", + "id": "d53f7fd4-9d38-40ca-a4b8-59f539320dd7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66718,7 +70148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a61e1565-dc00-4188-be86-1190323ebed7", + "id": "feac3574-187d-45f1-b8a8-af06c07e9d7b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66762,7 +70192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f67c876-a440-4ce2-9332-8aee18b86243", + "id": "d54e428b-ba69-4acc-8ff9-961ab5e75a20", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66806,7 +70236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "156e37ca-0a35-47ed-b89c-afc1b8102df2", + "id": "7366074b-4584-407b-b1e3-edc0a750c021", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -66850,7 +70280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44976b9e-8689-40db-8a93-6ed329ef9d3a", + "id": "1c9d330e-6203-4fa9-8096-b30802ebe002", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66894,7 +70324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bdfafba-31d1-4184-b98e-7a7022837f93", + "id": "47369297-95f2-44f3-9cbe-4c1c43db2e76", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66950,7 +70380,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": "45bed587-1d88-4eeb-874c-be86309d6470", + "id": "e8e7545a-8d5e-477b-b48a-a88569b34965", "name": "Get a list of public identities", "request": { "name": "Get a list of public identities", @@ -67031,7 +70461,7 @@ }, "response": [ { - "id": "dce6a27c-aacd-455a-971f-49ad3d39d1f3", + "id": "f87c2e1b-5c39-4515-975d-fd1d8dfd1f96", "name": "A list of public identity objects.", "originalRequest": { "url": { @@ -67129,7 +70559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e9bf459-df2a-4240-9a29-94ceabb92bd3", + "id": "0d1aad21-62c8-478f-899e-c51f2e5c905f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67227,7 +70657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3709ec7a-3db4-40c9-9e5b-c91d91e176f7", + "id": "1abb3739-74ee-4317-a483-e26adffb4fca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67325,7 +70755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "778a84a9-be2c-4058-8777-c023dc729c38", + "id": "be5a6642-eaf8-432f-a67e-45f4fa1bd302", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67423,7 +70853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dec2f181-0bad-4118-8712-64cb8befdd61", + "id": "9117791c-32b0-40da-8896-08191a8a05e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67521,7 +70951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e27305bb-4fcf-4667-b695-b487125063e1", + "id": "436a9823-439b-4dde-a2c2-ea0f3e626b83", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67631,7 +71061,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": "a2063eb9-1450-447d-8a3c-2642587753a3", + "id": "8cfdfc47-8ede-48f4-92bb-478b5db3d611", "name": "Get the Public Identities Configuration", "request": { "name": "Get the Public Identities Configuration", @@ -67660,7 +71090,7 @@ }, "response": [ { - "id": "8df1327e-52e7-4d12-8098-6ae33dc722d4", + "id": "de58d20c-f14b-416a-b82f-b886464e9a86", "name": "Request succeeded.", "originalRequest": { "url": { @@ -67703,7 +71133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "294ce293-87b1-4840-b469-2dc6ceb08af3", + "id": "4521528d-704b-4d2f-8cef-24d3fda002e6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67746,7 +71176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab37bcc4-31b4-44e0-a575-3b202f2b57fe", + "id": "6c5461ab-9fe8-4fbc-9557-ed1ec85fec16", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67789,7 +71219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1859049-1b22-4dea-989b-786ceef6cbac", + "id": "a18a6d13-ff53-461c-9f04-16c222fae68d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67832,7 +71262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "158bb3cc-246d-4385-a871-223813e44a77", + "id": "45b8519a-2c24-4b77-ba26-0428dd6f1e60", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67875,7 +71305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df717057-94f2-4ba3-885b-83a0ee1dd9fb", + "id": "2b83119a-3da1-4770-9b9e-220403f58f6f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67924,7 +71354,7 @@ } }, { - "id": "08bdbe05-f5cb-440d-a335-91dd19539fd3", + "id": "72f6e4b9-e775-4d1d-b21c-d5ff1a962520", "name": "Update the Public Identities Configuration", "request": { "name": "Update the Public Identities Configuration", @@ -67966,7 +71396,7 @@ }, "response": [ { - "id": "07a20cdb-8835-4c7d-97a5-c26e3e1bd599", + "id": "dbe0287b-c859-4a91-851f-d8a4d47e56ab", "name": "Request succeeded.", "originalRequest": { "url": { @@ -68022,7 +71452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69d84427-ffe8-4599-b21d-8a20ae84198a", + "id": "c38e399b-4f6b-44e9-899a-67e8557f4760", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68078,7 +71508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bd8fb4f-5e1b-4075-9814-2063ec8b64d5", + "id": "16161708-2b0a-4c3b-ae06-1674ea7c6167", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68134,7 +71564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e86665f-5aef-4206-b77f-94f3cc49a198", + "id": "9f8d3967-76f8-46a4-8ab4-647ca3dc3722", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68190,7 +71620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdbdb0d2-2b25-4fc2-b6c6-e4cdbc561072", + "id": "984d64c0-0200-4523-877c-3d17ef6c83a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68246,7 +71676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67b07f7e-189e-4017-a592-23164f8653ad", + "id": "8f52a7b2-17a3-4a9b-a90a-9748bf8c4546", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68314,7 +71744,7 @@ "description": "Use this API to implement reports lifecycle managing and monitoring.\n", "item": [ { - "id": "73e9474a-dce4-4ab1-bfb6-dcc1c61acc60", + "id": "0da93b16-5b79-43f2-b1e1-8ea868fa53bb", "name": "Get Report Result", "request": { "name": "Get Report Result", @@ -68366,7 +71796,7 @@ }, "response": [ { - "id": "e4318882-58da-4000-93c9-0133525b5067", + "id": "28b75177-0cc5-4ee4-8a93-4314db3caf35", "name": "Details about report that was run or is running.", "originalRequest": { "url": { @@ -68421,7 +71851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8109fa16-a1a1-4b11-b337-95b950a1eafb", + "id": "cb1158af-8ac0-4f3a-83c2-762c2a1d7023", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68476,7 +71906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c412a590-ff04-43b7-ae56-a48421f41bc3", + "id": "298bc0ef-230a-496e-9a09-0fa132b01de4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68531,7 +71961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f89bcf89-31bb-43e2-8775-9f849a353a14", + "id": "2103fe04-5930-478e-92f4-9d8dc5f546dc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68586,7 +72016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "990b6490-d07a-4419-a225-98d97d6cf2d6", + "id": "9f360638-7194-4a64-a630-938644beed6d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68641,7 +72071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "217c996c-721e-402c-bf22-564edc82c65c", + "id": "2f491d50-a6b6-499e-b3e9-0a779849f600", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68702,7 +72132,7 @@ } }, { - "id": "5fe9fcb7-8d58-4588-9adb-da22d21b95d6", + "id": "081730e0-1c3a-48a7-8888-2246d1c57c66", "name": "Run Report", "request": { "name": "Run Report", @@ -68745,7 +72175,7 @@ }, "response": [ { - "id": "db111f2c-da11-4e28-87fd-4a7037ec8bba", + "id": "293371d7-e855-403a-adba-9357f024d98b", "name": "Identities Details Report task result.", "originalRequest": { "url": { @@ -68802,7 +72232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb4d5afc-dbab-477b-a21b-1e966ad57b07", + "id": "137fc46c-fd36-4fa2-89e6-87c755458080", "name": "Identities Details Report task result.", "originalRequest": { "url": { @@ -68859,7 +72289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e0912e2-ef60-4ca2-a461-391a1912bfec", + "id": "4034e0e1-1ae1-4b3b-954f-dbbc84ef5d8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68916,7 +72346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "627958e5-4344-4fd7-8ef4-b1ae244e8d1e", + "id": "9f16d136-5e4e-4365-865d-1539a91d4506", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68973,7 +72403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80ea6d63-a473-487b-8c67-60ea8fc22524", + "id": "2bedd94b-7c85-4d64-ba9f-d5ac7fafd09f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69030,7 +72460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "817e1bda-25f2-4932-be22-2f4c83387db4", + "id": "9b0cf4b4-354a-4ce2-ba83-cf19c4f63701", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69087,7 +72517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "216a1b9e-1617-4705-ace9-bfa674ffd4fd", + "id": "4a5979d7-8f70-434d-a8e8-70691018f953", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69150,7 +72580,7 @@ } }, { - "id": "c6d72c9b-b70e-4ad6-a9ce-7d21bd609e5d", + "id": "4d7d0565-5c8f-4c8e-9567-1196d1c1fc97", "name": "Cancel Report", "request": { "name": "Cancel Report", @@ -69192,7 +72622,7 @@ }, "response": [ { - "id": "1a2ad89f-6e0d-4b8c-ae52-b500952dcee4", + "id": "28422dc7-ea05-4613-8574-48d549e23571", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -69227,7 +72657,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2c65d1eb-d50a-47f5-ba86-b41616c1211e", + "id": "65d8df09-0d8c-4959-8dc3-f30ea358a907", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69272,7 +72702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8141fb1-0b26-4fba-8397-52187bd66c66", + "id": "4548059e-761e-46c7-b0c5-04fb5c701aca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69317,7 +72747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3233291-8e27-457f-99a4-625cc368b2aa", + "id": "a8317fa1-6718-47a9-bc82-9fc1f73a808a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69362,7 +72792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f26997d-5769-4450-b5a7-23f69f8cdbc8", + "id": "9121ea0b-3c39-429b-ad81-dcf59d9467b7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69407,7 +72837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d48bd064-4644-439b-a2f4-6c297f9524ec", + "id": "4b083838-8c34-4544-afdf-71c1af84b093", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69458,7 +72888,7 @@ } }, { - "id": "c30582c0-d2fd-4586-bf25-9e80f07e34de", + "id": "912ad3e8-544f-4459-9c49-ced212084c4a", "name": "Get Report File", "request": { "name": "Get Report File", @@ -69527,7 +72957,7 @@ }, "response": [ { - "id": "af344e57-3de8-4fb5-ae48-2d0610bf7aa1", + "id": "db139d8e-0ca0-4ad4-b541-fda54df9270c", "name": "Report file in selected format. CSV by default.", "originalRequest": { "url": { @@ -69603,12 +73033,12 @@ "value": "attachment;filename=\\\"fileName\"" } ], - "body": "minim cupidatat in", + "body": "nisi irure", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "1ad67615-f041-4c72-8a79-16a97b9e62ca", + "id": "ab95a2dd-b1ac-406b-8800-fbc497a70cff", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69680,7 +73110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81ea23b8-8444-4610-a48d-867ec47fd74e", + "id": "63170b3e-89b1-4ba1-8409-9829e62b4303", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69752,7 +73182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "722c18df-cb99-41bd-b535-170be0fbc1e0", + "id": "3ae5e6c4-ce12-4bbb-bf8b-535d16bca315", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69824,7 +73254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86f029b7-6c69-4809-b85d-3ccad98d0deb", + "id": "4218dcaf-4a4b-427e-aba8-5c38f332236b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -69896,7 +73326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a84e7065-ee0f-40d7-bca9-4e3a2e7dffd7", + "id": "5cf52c9a-54c8-42b1-9181-9d862111124f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69968,7 +73398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df221f1e-678a-4a86-8923-281825a5ead8", + "id": "3e75f52d-4489-4f70-beec-cd8e8430efe5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70052,7 +73482,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": "a8b1898f-d2f3-44da-ba90-fe0858a57f9b", + "id": "76e79015-498b-4bf3-9b28-f1b9c8932ff3", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -70163,7 +73593,7 @@ }, "response": [ { - "id": "79840a9a-ad74-41e9-a3f1-a78e38110c95", + "id": "c42737e3-5eab-4dfe-8150-e0be9f0eeb77", "name": "List of requestable objects", "originalRequest": { "url": { @@ -70288,7 +73718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a266f84-113f-4464-9242-c3a6b252aec9", + "id": "539ba4d3-7697-4207-8586-89e67a597c9c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70413,7 +73843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2abd91c8-d722-48ae-8513-3ceeee241082", + "id": "84e88842-ee7d-4b72-9a2c-9edf19e27d4f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70538,7 +73968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86b5d2e7-00c2-4724-a624-47a2cf917307", + "id": "418d3852-0abd-4f56-8206-7ea8f491085e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70663,7 +74093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ae2a2f4-aa5b-4512-a144-406a7aad38f9", + "id": "cce179be-3337-4093-9765-18f03d137bc4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70788,7 +74218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c62cc63-6cab-474e-a65a-2185264d608f", + "id": "1e0df869-1cad-4191-962b-15a960c64088", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70925,7 +74355,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": "14ac41f8-29ea-419f-8e84-5512fb99068f", + "id": "38f2df29-7db3-4427-a648-dec099112686", "name": "List Roles", "request": { "name": "List Roles", @@ -71027,7 +74457,7 @@ }, "response": [ { - "id": "7ab837e5-847f-4da9-bdd8-2ef44ed45358", + "id": "d81759c9-5a05-4926-b788-21c5d898e9d2", "name": "List of Roles", "originalRequest": { "url": { @@ -71143,7 +74573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bbcd6d5-7aff-4e02-9308-bce7cc80c185", + "id": "780b4dc2-19f8-4d0d-83cf-c606dc02d46a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71259,7 +74689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63806664-7f6d-465a-ac34-04a99b04d71b", + "id": "3cfc06cb-4dcd-4875-b9ae-ec9fe5d1ce86", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71375,7 +74805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4762601c-d56d-432c-bf7c-8f075d104909", + "id": "8320a821-145c-433f-8ac4-8f309f8f53cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71491,7 +74921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb518c6d-b38e-4ffa-a592-8f9bd1f0beeb", + "id": "e4d17f8b-7954-4fe5-a892-7c61c04b4b09", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71607,7 +75037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05836618-c4a9-4e1c-a1c4-018f45ffef8d", + "id": "3c7f7647-cb16-4481-ad12-327fc65da29c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71729,7 +75159,7 @@ } }, { - "id": "6e37bb66-6285-4df3-a375-e52480cdc080", + "id": "3d11cb41-4050-4687-abc3-2dc455223a82", "name": "Create a Role", "request": { "name": "Create a Role", @@ -71771,7 +75201,7 @@ }, "response": [ { - "id": "a4fb4f82-fe4d-4951-b06c-bdb784ea81a4", + "id": "090070d2-3982-4beb-9d0a-f1ec85b1e15e", "name": "Role created", "originalRequest": { "url": { @@ -71827,7 +75257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e4bd5f8-2e86-45b2-8da4-3f5ec6f3922a", + "id": "6f67b8f5-809e-467c-a86a-eda0982b187c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71883,7 +75313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13335f9c-e0a8-447f-8186-792f1e274de9", + "id": "bbfa5de0-c0e4-4d51-a7b9-b51a40536680", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71939,7 +75369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a3daf7d-a9ea-4bc1-a7ad-00f0ace7d522", + "id": "79f786e1-fd76-47a8-b564-b4fe771932f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71995,7 +75425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91322dff-f308-44eb-81ad-5559e69b7287", + "id": "cf062018-8c8b-4175-b99c-7f95516a8bd9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72051,7 +75481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea751d5f-ae59-4cc5-bf3c-6798cd8c5649", + "id": "6144ccf1-31d8-4f53-b295-b98764572799", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72113,7 +75543,7 @@ } }, { - "id": "0f25d1d9-3508-41f6-9cec-2ea4c4af1422", + "id": "254b8d23-1461-4444-8bd4-653f310456b4", "name": "Get a Role", "request": { "name": "Get a Role", @@ -72154,7 +75584,7 @@ }, "response": [ { - "id": "a54f1cb8-8f6a-46bd-adfc-8efd2dbebbdd", + "id": "f8f17b81-082a-45f3-99c2-3dd218ca4cd1", "name": "List of all Roles", "originalRequest": { "url": { @@ -72198,7 +75628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fba249a-a22b-4b7b-ba3e-d3d16f97a8fd", + "id": "e989014e-0969-42df-b1f5-5b22fbf2c22a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72242,7 +75672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2e314a6-6d17-45a1-a930-c53b434fa4b0", + "id": "a67186fd-9937-4aac-abec-bd7ca4078249", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72286,7 +75716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31e1ab71-9ba0-410f-be8b-53f4098b0b19", + "id": "cd23527b-e63e-458c-9042-1542b0a73367", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72330,7 +75760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3ecfb19-f50d-45b1-9d63-75534004d5d4", + "id": "e6471b6b-60fa-4a78-b0b0-ff9514db4cec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72374,7 +75804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f36c764c-20cf-4cb3-b4f9-b96cc493b87b", + "id": "839f1970-94e7-4c9b-9457-58f5d2db7085", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72424,7 +75854,7 @@ } }, { - "id": "d66693fa-c573-4abd-861f-92085bd01621", + "id": "119b0c15-eec1-4209-85ff-e144acaebeb6", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -72478,7 +75908,7 @@ }, "response": [ { - "id": "ea5d34ce-be50-42d1-8393-6b44ebfa657c", + "id": "3060f017-4071-4461-a665-736b4fe01908", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -72535,7 +75965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59b13b7b-c0eb-4065-957d-522b845248bd", + "id": "9dd32de9-fbde-4f96-bd7a-8e4bc9b103fe", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -72592,7 +76022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28489a42-616d-47d9-80d4-ece3a3001256", + "id": "2b74f386-2bcb-4f6b-af1a-bb4536431f5d", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -72649,7 +76079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9de2fff-1cac-41f9-b389-beb79b801663", + "id": "caa26ef5-95d7-4d6d-9652-0e2d6a65b3a3", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -72706,7 +76136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "985bb37d-a2cc-42eb-82e1-069ba60e53f0", + "id": "cd6215cc-9c29-4c58-ba58-2f60738971e3", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -72763,7 +76193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d2b1506-b05c-4d2e-9064-87bc8f6cddb4", + "id": "946de5ce-4fd2-4e77-bcf2-ae458039a7b9", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -72820,7 +76250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ca2394f-d33a-4294-950a-276dfcfbbf13", + "id": "39d9367e-0876-4273-b989-ba340a1048c9", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -72877,7 +76307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64a5d546-a01d-4145-a535-00e27981616b", + "id": "db4f7cd2-d065-4a6a-8076-3ed04dae3047", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -72934,7 +76364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a33a3326-df5c-4704-ac57-1049cd78a675", + "id": "5c4c96ad-8fc7-4744-9f9e-89000634eb35", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -72991,7 +76421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d2fa55a-6714-44d8-874e-d1d94821b9e1", + "id": "c34e400b-6748-4222-add2-48da6c557139", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -73048,7 +76478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e41f9dcd-90df-476f-aba0-f147c14592ba", + "id": "702bcaae-046f-4f11-a09f-a66b3571bf84", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -73105,7 +76535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02cb6a83-9df8-4141-a437-084c94c6f0df", + "id": "942d7d35-b3a9-4d9f-a970-c2ec3b2e79c3", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -73162,7 +76592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaea1d3e-99ca-42b4-a53c-3f0b83002af9", + "id": "2a35e7a8-ce63-4dec-85a8-fe425536a40b", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -73219,7 +76649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f637644f-e0cd-46e7-a4f3-f32b3a9767a0", + "id": "d74e4b3b-e695-4023-a6eb-4f7f5b4f75f1", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -73276,7 +76706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5809fa0b-1d14-41c2-9371-23384fa02861", + "id": "68be1a6a-ecbf-4208-8362-3ae2eacc2218", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -73333,7 +76763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56bd42bf-578e-44da-9fcf-d70735f738b3", + "id": "24bfe4a3-0364-4d7e-b484-81b43f4d7ac9", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -73396,7 +76826,7 @@ } }, { - "id": "649fa246-b0c3-4e27-bdb1-a95558469690", + "id": "675083ec-1759-4be6-b136-e192bfa0a90d", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -73437,7 +76867,7 @@ }, "response": [ { - "id": "86a6d090-882b-45cd-89ca-7a2c0adfb9d7", + "id": "40eae317-34ac-4b3d-ad21-811dc7b4daaa", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -73471,7 +76901,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8f818cbf-3755-4d35-9c78-1a3327464ee0", + "id": "3bcf4a67-eea9-40a3-87c0-1c8ad5c56f43", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73515,7 +76945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8483a94-697e-400a-89b5-c09e9494ac18", + "id": "51233dc1-e4e3-4bf9-ada0-64c9068efe19", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73559,7 +76989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5567e5ae-24be-4794-a5ef-5212be7bebe8", + "id": "9cc93f7d-8100-4921-b519-7515e9158ee1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73603,7 +77033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3176385f-d49a-449c-9965-c953e4e65bfe", + "id": "e9adefcb-a0ac-4b7e-b7b2-d33202fff69e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73647,7 +77077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51ca9947-9ad0-40ac-9f9f-1b840f1a4c2b", + "id": "96dd28a6-d593-4086-a40c-4caef1f96948", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73697,7 +77127,7 @@ } }, { - "id": "2831934d-2c09-4f40-bbf8-3497e96e7527", + "id": "20d70691-ff08-4273-9ad8-aa8a1de297d3", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -73740,7 +77170,7 @@ }, "response": [ { - "id": "ba75bedc-6fb1-4979-aab0-d6cfa84a5b99", + "id": "67e8a9b1-b9db-4e1a-855e-43bc56ca211d", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -73797,7 +77227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c3c9e89-e7c7-4b90-b559-e4b5301b5f89", + "id": "e93ce06f-5175-448f-b4d2-fbb9c8ef5bba", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -73854,7 +77284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8969cfa7-ae72-47b7-81da-5bf448e73b9b", + "id": "c3412be8-47f7-4509-8ca2-2f0048eca40f", "name": "400.1 Role ids limit violation", "originalRequest": { "url": { @@ -73911,7 +77341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "551e2f04-54cd-40e8-80b3-c4f55dd226a4", + "id": "057d61ef-ab3a-451d-a281-a420829f842d", "name": "400.1.404 Referenced object not found", "originalRequest": { "url": { @@ -73968,7 +77398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af022716-c758-4fcc-a52b-252b7e389e7c", + "id": "cb8e0ae0-1d4f-4d6a-a65a-2fc2e61ee04c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74025,7 +77455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6f3009d-ea52-45b0-862b-fa794831d0cc", + "id": "24ce3437-116a-4d94-b73e-47587d9c71c8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74082,7 +77512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a47ddc22-cdb2-4470-8c73-729c0d1e2a02", + "id": "724d0aca-5213-4396-b931-7eecdb4c48b6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74139,7 +77569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40f18977-acf5-4c87-a668-5309c44eff28", + "id": "4fc07401-29a5-4cfc-ae73-bc0bcf9a436d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74202,7 +77632,7 @@ } }, { - "id": "693ff9fd-c156-4169-9593-cb1deba00fcb", + "id": "e3b8de89-ea84-4017-bab9-90b1b929157f", "name": "List Identities assigned a Role", "request": { "name": "List Identities assigned a Role", @@ -74287,7 +77717,7 @@ }, "response": [ { - "id": "c8fc917c-cc5b-4f2d-911b-f04cc6594068", + "id": "e92f8e18-5b7b-4376-b477-58886626b014", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -74378,7 +77808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "099eee60-510a-4b51-945d-ba6f6f26bb84", + "id": "0ac353b7-4787-414c-977a-798f15237416", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74469,7 +77899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "573d92fd-4e7f-4851-ab53-0dff1315bb45", + "id": "cd9ed524-bfea-428d-a41d-e714f921deb3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74560,7 +77990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a922f4af-2a6d-4706-8efc-a06e3afc0e1a", + "id": "ccff3ad1-b58b-4e89-9213-c276a6cf05d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74651,7 +78081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c47b8bef-5e65-429b-9e90-23352312dc95", + "id": "a0c0455b-42fe-494d-85ad-cb168becd615", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74742,7 +78172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21df9e59-6e68-45ff-8470-424169512e99", + "id": "3bee4f1e-8049-4ddd-80d8-322a7420dcd2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74845,7 +78275,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": "fb4d0ca4-5aa9-4497-89d3-0796193074fe", + "id": "899ab51c-9df9-4bd0-84b0-123dee24409d", "name": "Create a saved search", "request": { "name": "Create a saved search", @@ -74887,7 +78317,7 @@ }, "response": [ { - "id": "e8ff5356-7b97-4b58-97bd-61ab3d6f55ab", + "id": "0ae9a4b4-8478-4179-a291-05dec1f9e8f4", "name": "The persisted saved search.", "originalRequest": { "url": { @@ -74943,7 +78373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65d89fde-dc1b-41d1-a065-38e0e79fd01d", + "id": "ef8b094d-823b-4b3f-8b1f-1323cb77548f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74999,7 +78429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc41cd6c-f5e0-4e47-83f2-4ad5b6725d2a", + "id": "321139f6-d286-4179-9194-7b4cb1876627", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75055,7 +78485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a31bace5-6000-4a3a-bee7-d012b552eb92", + "id": "82ed1504-0a34-487f-8b1f-56c29067fdb8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75111,7 +78541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ead5d28-dea8-4e1c-b10c-8859862484f0", + "id": "c9a299fa-4dbb-4eab-9f8b-565a2f8d665d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75167,7 +78597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f72eb63e-c6e5-481f-ae85-df4888573837", + "id": "5cce36cd-a6e3-4888-8f21-10e5045a239f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75229,7 +78659,7 @@ } }, { - "id": "fa3198a8-3b9b-449b-b258-bb0c8e3820a1", + "id": "8fafe884-e0be-4e53-afe8-002f824ade80", "name": "A list of Saved Searches", "request": { "name": "A list of Saved Searches", @@ -75295,7 +78725,7 @@ }, "response": [ { - "id": "d1e0f450-ed55-4dfd-b11f-dc52ea4c0fbc", + "id": "bf6bdb1a-dbbc-4c15-865d-01f96dd0bc60", "name": "The list of requested saved searches.", "originalRequest": { "url": { @@ -75384,7 +78814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6229c5e1-8929-4cdd-93dc-e1308159eddc", + "id": "e36a7eed-8c79-4854-939a-a45951861b2c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75464,7 +78894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77490831-e3d2-4447-a8bf-700126f01ebb", + "id": "1c35e792-2a28-43a5-a4d8-caa5fee914c8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75544,7 +78974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9045ba0-ea6b-41f8-bd9b-25bd2ddab99c", + "id": "515fc4c3-fd6b-4cf6-8223-abfdcca70a78", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75624,7 +79054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac0c2fbf-0f7d-4791-a490-26a92a3dd934", + "id": "9383798c-93ab-45e7-81e8-1214d3c09d49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75704,7 +79134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff05381a-ad8e-4fd2-9784-f604d17e9b3b", + "id": "781ac826-dfe0-43f1-9cf2-a509cada01be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75790,7 +79220,7 @@ } }, { - "id": "6809b562-69ac-49c1-abc7-89275deb1483", + "id": "d47d6e65-bf5b-4a79-bc43-383742a1fbeb", "name": "Updates an existing saved search\n", "request": { "name": "Updates an existing saved search\n", @@ -75844,7 +79274,7 @@ }, "response": [ { - "id": "d9b75389-d18f-4ee4-a607-4f470b010739", + "id": "3fde9bab-a5ad-422d-961d-08a06de35002", "name": "The persisted saved search.", "originalRequest": { "url": { @@ -75901,7 +79331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c5d1d34-9dc8-41b2-b2dc-6805cf8a0b27", + "id": "660b1b68-ee30-46f1-8d98-ad37f848bb6c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75958,7 +79388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c15dfbe6-456e-48f3-9f8a-9b182a3cb968", + "id": "8046ecdc-ffc2-4995-b33a-713e84ee922c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76015,7 +79445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7bc133d-4165-4ad7-afcf-0bb14c74c573", + "id": "ce2ca31f-a24c-405e-89da-301df183e499", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76072,7 +79502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccb31453-5933-4764-af1b-fb82bd99426a", + "id": "1e663408-9018-4eb6-9889-d3006d8753fc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76129,7 +79559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4308bba0-794f-44c1-9206-6ab3c86d3b57", + "id": "e0d83430-fd3a-4492-b7c3-7124a434082d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76192,7 +79622,7 @@ } }, { - "id": "14ddd73b-fbf8-4c31-b275-8e5fd5a60a5f", + "id": "a072a963-d5c1-401b-ab49-30c7d91dd45c", "name": "Return saved search by ID", "request": { "name": "Return saved search by ID", @@ -76233,7 +79663,7 @@ }, "response": [ { - "id": "4c571465-bd63-4d7c-b8b7-757cce6eabc7", + "id": "fce585c2-febe-4a3e-a801-231d66b5ec31", "name": "The requested saved search.", "originalRequest": { "url": { @@ -76277,7 +79707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d094eeff-c3c9-4528-9cde-fb0427f77bcf", + "id": "7a657b56-85a4-46f9-b099-91bcf311e70f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76321,7 +79751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80a13d1b-0283-47e6-8860-97f40405ce5c", + "id": "a9077e17-1392-49d5-a2de-c06e14a2b717", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76365,7 +79795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bb8ed87-fa73-4975-9088-482a926f585c", + "id": "295fea7c-67b4-4b14-a817-843cb41cc5dc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76409,7 +79839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27561d61-e7d0-4de9-977c-df1fd4fcfa9c", + "id": "61737987-59dc-487d-acb4-a2c4d3d5adf9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -76453,7 +79883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96d6ba5b-93cb-4525-ae11-bd3e8d666161", + "id": "24b2131d-7574-4a7a-8677-f16b562ea146", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76497,7 +79927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee8f9064-8107-42af-9007-19f20fd435e4", + "id": "4cd095b7-b4a2-4d1a-a7ca-947718b1a536", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76547,7 +79977,7 @@ } }, { - "id": "83f8a938-c0be-47a0-928e-2c0fd10b722a", + "id": "d4fc09b0-be61-4cc3-93fd-9b28514918b9", "name": "Delete document by ID", "request": { "name": "Delete document by ID", @@ -76588,7 +80018,7 @@ }, "response": [ { - "id": "c3fd8c4c-11a7-40df-aeeb-3551b8326cf2", + "id": "38f67156-0a54-4eef-b14e-a6998e536cc4", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -76622,7 +80052,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0ad28f92-b432-42c8-8966-087ddc2a98be", + "id": "667dfcae-ccb2-4ed0-89ed-0417e5e2e1cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76666,7 +80096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a673f1d0-84db-4e34-9cab-b3d3bfed39fb", + "id": "ea35a618-dd72-4ebd-99b6-edfb696c9e1f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76710,7 +80140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd5d309b-bfbc-44ca-883c-6937c60378c9", + "id": "f1b063ae-b28b-441b-ae5b-5db1c61f690e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76754,7 +80184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eefc7b2b-1bea-43e4-9cbf-a8a6da594845", + "id": "44945321-bdb1-4bbb-8cae-2bcf8430e47a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -76798,7 +80228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bc4ba06-63f2-4189-87f4-7b604bd96b29", + "id": "980a8299-ae92-4712-9c3b-a37869f4daa6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76842,7 +80272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a3b2c7d-95f2-4bdf-9a76-20c80ab27ba3", + "id": "283377a0-37a5-4669-833d-f112e53229bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76892,7 +80322,7 @@ } }, { - "id": "da7ff046-6459-463b-8967-16551d1649b1", + "id": "50894d63-99e1-4f00-93ea-2a8fd9100a2e", "name": "Execute a saved search by ID", "request": { "name": "Execute a saved search by ID", @@ -76947,7 +80377,7 @@ }, "response": [ { - "id": "72403a31-9d09-4592-ac90-f1ef6ef1d0f0", + "id": "8da2e6b3-1a64-4a65-aaa4-f2b6763cb96d", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -76995,7 +80425,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ad60a912-3372-4b7e-9998-917de8764079", + "id": "d68b50cb-c97a-4413-898e-4e2bfbdc68c2", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -77053,7 +80483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ebcb06e-7a47-42fb-8e94-68e783c175d8", + "id": "f3b58437-5bc7-4dbf-8695-20c1bf54952a", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -77111,7 +80541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32053738-ff19-4999-8621-32cd3d5fc18b", + "id": "0120a81d-907c-497c-915c-040fcd2106a8", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -77169,7 +80599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "490983fa-4ea8-4f5d-8ca0-e85a9b6e8bba", + "id": "9c63133d-39ba-4b53-8695-d18982048ddb", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -77227,7 +80657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00512bf7-f907-48cf-bf9b-6f4c1fa750b5", + "id": "01b31c39-950e-450a-ac25-b2274a829c05", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -77285,7 +80715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85c84f5e-0783-4451-be6d-2f5facb3a989", + "id": "e1cc8c50-3e28-485a-af57-60b33e311a16", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -77343,7 +80773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8676515-4130-40ad-885f-ffadc008f834", + "id": "dbdabc59-34d9-4ff0-9b74-9812d0eedada", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -77413,7 +80843,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": "310331c2-4174-478b-8659-8b717a49ac0b", + "id": "fe872add-5c0a-4f02-a126-4f069e87c645", "name": "Create a new scheduled search", "request": { "name": "Create a new scheduled search", @@ -77455,7 +80885,7 @@ }, "response": [ { - "id": "61831d2d-cab1-4d7e-9713-f3484175346f", + "id": "4338f8ef-2c2c-49f4-956b-cfac166efc72", "name": "Daily Search", "originalRequest": { "url": { @@ -77511,7 +80941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59446bd8-be48-4a3b-a100-1cf3f247b3b4", + "id": "67683acb-b916-4a59-a666-62c5a058395d", "name": "Weekly Search", "originalRequest": { "url": { @@ -77567,7 +80997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34dabab4-5035-4c75-a01e-c94ec52d7bf6", + "id": "025b663c-5952-4640-a408-d780b38280a9", "name": "Monthly Search", "originalRequest": { "url": { @@ -77623,7 +81053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64212b2d-34b2-4d14-b073-58deacf26a5c", + "id": "b71d9b25-2aff-419c-a204-392aa54958a7", "name": "Calendar Search", "originalRequest": { "url": { @@ -77679,7 +81109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cfe2500-d0b0-41f4-a036-4827dfd6f67c", + "id": "5f206d17-826c-45db-a571-85e910c60d6a", "name": "Weekly Search", "originalRequest": { "url": { @@ -77735,7 +81165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1f0d2f5-d153-42ae-b840-a3c05fcf17e6", + "id": "bc8f5bef-ac41-456d-8ee7-615f5dc02e04", "name": "Monthly Search", "originalRequest": { "url": { @@ -77791,7 +81221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "647279e1-d13a-4bb3-975e-b5365129a9da", + "id": "763de83e-0627-4b4a-ace1-3b1307bf649d", "name": "Calendar Search", "originalRequest": { "url": { @@ -77847,7 +81277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74bf503e-89f0-4664-9b30-659dab61487d", + "id": "e384f9f0-c713-4d38-9a08-d0c66ec86f42", "name": "Monthly Search", "originalRequest": { "url": { @@ -77903,7 +81333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e4e275e-0d8c-47e0-9f2e-00f88a07db15", + "id": "8ce11ae1-6b39-4c2a-9ec1-420f0bf73350", "name": "Calendar Search", "originalRequest": { "url": { @@ -77959,7 +81389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee0b8e00-16d6-49b7-9b5b-4305c833a4c9", + "id": "81eda9a7-6bd9-40dc-a254-aad0f288c005", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -78015,7 +81445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86f5f283-e17d-43de-adce-5d01005a1167", + "id": "7f4a108c-78a2-4b4f-8008-0434b7d5ced2", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -78071,7 +81501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a43f884c-c66e-4ee7-9f54-26152b1e5d39", + "id": "082768e3-950c-436e-9cbf-b334f8cfe015", "name": "Daily Search", "originalRequest": { "url": { @@ -78127,7 +81557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51cedf8b-945a-46be-b657-75c6eb232d56", + "id": "f64003cf-1892-43be-9605-df7bf7b8d86d", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -78189,7 +81619,7 @@ } }, { - "id": "4bc5cb9b-a26c-4449-b5d9-67d7058f5a67", + "id": "8c14cfb1-05d3-40a0-8adf-fdcf68baa6ce", "name": "List scheduled searches", "request": { "name": "List scheduled searches", @@ -78255,7 +81685,7 @@ }, "response": [ { - "id": "fca91c2d-ddc5-462b-a5ac-aaa60f15c509", + "id": "aef2ce6f-25c4-481f-828b-25d711786a3a", "name": "The list of requested scheduled searches.", "originalRequest": { "url": { @@ -78344,7 +81774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0d56d31-44f9-40ba-b3b0-3a91670d9ebe", + "id": "386184c9-4451-4979-bb6c-5b480e9ae257", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78424,7 +81854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a72c65fc-4a5b-4a50-b661-0c07532447da", + "id": "fdf6741c-ce32-41ba-b700-24fa0c590e9d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78504,7 +81934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e95c829f-86c6-449f-9493-2235402632eb", + "id": "6914304e-76da-46ab-a221-4bbb4ccd2d0d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78584,7 +82014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "846687ee-2611-4eed-81e7-6b2436bb93b0", + "id": "c4427c3d-f07f-4e32-89d8-02247a8ae863", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78664,7 +82094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfa65d13-7110-44fa-9e72-bdcdb4aef730", + "id": "3880df1e-c93d-494b-8f8c-f63c68d2bd53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78744,7 +82174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a32b3497-efdc-4932-8a2a-bfc159cc82c3", + "id": "0934e220-dc83-4b94-9e57-f0b1172b1568", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78830,7 +82260,7 @@ } }, { - "id": "5b8dfc89-bfb4-49ed-9ddf-9007d6abaf83", + "id": "816d8b92-2726-4f86-9833-fb2d8dd57e29", "name": "Update an existing Scheduled Search", "request": { "name": "Update an existing Scheduled Search", @@ -78884,7 +82314,7 @@ }, "response": [ { - "id": "4a8810cb-cc66-4891-b3ac-7b3a43d7a0a5", + "id": "e1ae983e-e104-42bc-8cea-befc62b557c9", "name": "The persisted scheduled search.", "originalRequest": { "url": { @@ -78941,7 +82371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb85c871-56f7-44ca-98c2-ab50bcf760d7", + "id": "65bc35b7-f331-426a-bbee-6a4bdecf7030", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78998,7 +82428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "623c2be0-26d4-45e7-9153-68f9084ef1d1", + "id": "d53ed2f4-d2d9-4261-b1ef-adec17c6c3eb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79055,7 +82485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10114dd0-b1c6-4a67-bde9-f6f04dcef114", + "id": "2fa1056f-5256-4a18-aad7-2e3420cccdf5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79112,7 +82542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1eb49ba-7e9e-4175-aee9-9c2e99698278", + "id": "c40a4fdc-77b9-475e-bf3b-fadeb8fa7ea6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79169,7 +82599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f81101d3-9c1d-417e-b9e5-b95912c01c35", + "id": "7923b925-fd7b-4384-89a4-cd101eea5899", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79226,7 +82656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95aced93-d9cf-4ab3-a65e-6e182134abb1", + "id": "72f33936-6a27-4531-aa04-323c5173031c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79289,7 +82719,7 @@ } }, { - "id": "9ac86748-a3c4-4380-ba8b-96260cc85315", + "id": "32ef48c2-12c8-4fd3-9fdc-d1c46dbf4756", "name": "Get a Scheduled Search", "request": { "name": "Get a Scheduled Search", @@ -79330,7 +82760,7 @@ }, "response": [ { - "id": "40ddd717-59b7-4441-a5fc-afd26b351395", + "id": "d373504c-3942-4892-8185-3e643f237e27", "name": "The requested scheduled search.", "originalRequest": { "url": { @@ -79374,7 +82804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04b84971-9593-489b-b0b1-4bf20810cc2f", + "id": "fc891562-571f-4217-a7ae-3e7f09d744b9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79418,7 +82848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d1ca25b-cfc3-4fe1-9d49-d380edf61242", + "id": "3afbea16-52cc-4913-9e2b-2f97a72a673c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79462,7 +82892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27085803-3829-415c-9885-b8c78c9ba298", + "id": "7677fe78-12d2-43df-892d-1f10a3bbb6a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79506,7 +82936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52a87620-43c4-420e-8e90-1c491e9c33a2", + "id": "45efb2f1-028a-489a-bfe7-79a67e89b051", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79550,7 +82980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a93668e-06ba-465e-95eb-87cdef1d53f3", + "id": "fcc82fec-163c-4ee5-91d3-0da119bb8507", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79594,7 +83024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0b7cb07-9b4a-4dde-8dc9-a180de761d60", + "id": "a7b93347-16b5-44a0-b277-d920e8d1a9d6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79644,7 +83074,7 @@ } }, { - "id": "1e3e59ef-524c-42b5-961e-add118d99485", + "id": "619b726e-1003-4b1d-8ea2-c2cbe857a7a2", "name": "Delete a Scheduled Search", "request": { "name": "Delete a Scheduled Search", @@ -79685,7 +83115,7 @@ }, "response": [ { - "id": "b9713b30-dbe2-4bbe-ac06-0176b1b93fbe", + "id": "2caca7f7-34cf-4cea-a612-7fe79192c098", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -79719,7 +83149,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2c22931b-030f-45ec-b954-9eeb6de84296", + "id": "83c05931-f738-4eca-a889-bfd45927f11d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79763,7 +83193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4319de4-6cbd-4989-b8fc-d9893cf0230b", + "id": "3549c22a-7013-4a7b-93a6-f4bc5ae95681", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79807,7 +83237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8961cf0e-8fc6-44bc-8ede-0cf0bfb08d52", + "id": "7bea552a-6583-4733-b5f9-03224a8d3195", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79851,7 +83281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3b05ff3-c6e7-4c73-8b5a-58b4b36ff678", + "id": "0c6b1fda-c369-49cd-9389-8d3c69ccc6ac", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79895,7 +83325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd87e2fe-35e4-48c2-9f3c-865ee6cf7c4e", + "id": "a7d4be2c-7f2c-41d7-82f2-162854046d34", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79939,7 +83369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6cbbf24-cec6-4276-ad8b-18054126f8f6", + "id": "f68d4938-6548-4776-857f-218d896ba233", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79989,7 +83419,7 @@ } }, { - "id": "6afd65a6-7b87-430f-b268-754829a0e5ff", + "id": "cc2c8ae9-3acf-41cf-8cad-067deab1a65e", "name": "Unsubscribe a recipient from Scheduled Search", "request": { "name": "Unsubscribe a recipient from Scheduled Search", @@ -80044,7 +83474,7 @@ }, "response": [ { - "id": "0dc832b7-2aa7-4280-abca-ff0b36ec4b19", + "id": "48c32a0e-a05b-4a6a-90d6-73bf273a3aff", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -80092,7 +83522,7 @@ "_postman_previewlanguage": "text" }, { - "id": "900536d6-be0f-4f09-940c-c97b2621ca9b", + "id": "ff023ed1-04bb-41dd-b546-944bbd2c1544", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80150,7 +83580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afff5807-4c29-43ff-a866-821783fef0ed", + "id": "accd69e9-e186-4b4d-9380-8db71c130253", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80208,7 +83638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9dc0a57-6d3e-4b87-beb1-1eeea0ff0b39", + "id": "70e60962-b4bb-4d64-bfcf-e6653ab075b6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -80278,7 +83708,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": "5f8cefac-ccbd-426c-89de-7c1eaa320c98", + "id": "e77fff57-6a4c-4301-aaba-fca84b09f0b5", "name": "Perform Search", "request": { "name": "Perform Search", @@ -80348,7 +83778,7 @@ }, "response": [ { - "id": "1210d378-868d-41a1-9bfa-3eda4f9e0190", + "id": "af998fe8-cff5-41dd-bb34-f528bee0acc1", "name": "A collection of AccessProfiles", "originalRequest": { "url": { @@ -80441,7 +83871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8edd4028-8c9e-4f15-84cd-73972f672ef3", + "id": "72ce65d1-eb17-41c7-8fc2-c73cf255f07c", "name": "A collection of Entitlements", "originalRequest": { "url": { @@ -80534,7 +83964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70cf6e17-7f3e-4e51-bb01-66fa52e053ac", + "id": "04bc3ee6-87f3-4688-9fec-51741f1a9662", "name": "A collection of Events", "originalRequest": { "url": { @@ -80627,7 +84057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ce89385-068c-4cb2-ad5f-3e9db8439ad9", + "id": "0a1cae41-8c2f-4c5d-96bd-43b3cfa48437", "name": "A collection of Identities", "originalRequest": { "url": { @@ -80720,7 +84150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5df075a1-bed1-486e-bfc6-05de6cbb29f7", + "id": "7481bcae-770d-45ee-93f6-323427fbda78", "name": "A collection of Roles", "originalRequest": { "url": { @@ -80813,7 +84243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1342bf2-7520-4670-9e4f-19377d0ea544", + "id": "0aa34dd3-b811-466e-8d7f-4039b7ad9b61", "name": "Filter with Exists", "originalRequest": { "url": { @@ -80906,7 +84336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c6572aa-3f00-4c44-a064-0f06146dfd4d", + "id": "ad6c2d5f-932c-4340-85c7-1a394a73ec3f", "name": "Filter with Range", "originalRequest": { "url": { @@ -80999,7 +84429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2f49552-cde2-4085-8726-4c7f678aca48", + "id": "b47e1d6c-9866-48bc-8024-e6caa82f4cbf", "name": "Filter with Terms", "originalRequest": { "url": { @@ -81092,7 +84522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1c76e65-f15f-4990-b62e-d078899011f8", + "id": "210ebf0a-7d1b-4b0a-84ba-6b4c323e569c", "name": "Filter with Exists", "originalRequest": { "url": { @@ -81176,7 +84606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6949d8f2-9e62-4d2e-94ab-5b52898fc32b", + "id": "4ee18ca4-853c-4409-ac77-eb429c4f15fe", "name": "Filter with Range", "originalRequest": { "url": { @@ -81260,7 +84690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3240eabb-261a-4b99-a14d-0ab40ca4bfbb", + "id": "2be3ebf3-b716-47f7-8fce-75ff20f12c5e", "name": "Filter with Terms", "originalRequest": { "url": { @@ -81344,7 +84774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1196c78-a852-4d0a-ab4f-2038c3ba73b3", + "id": "0bf01ba7-ecbc-4cfb-8c14-c1780fa375a4", "name": "Filter with Range", "originalRequest": { "url": { @@ -81428,7 +84858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c84d2ecf-a8cf-451a-9f08-780edb9e505c", + "id": "bd448ccf-f2c8-4973-99a7-0b3716296d30", "name": "Filter with Terms", "originalRequest": { "url": { @@ -81512,7 +84942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8bf9419-f4a2-478d-bd5f-09ec96feef31", + "id": "b47f0a15-3103-41b8-ae85-5d25e8d9daa4", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -81596,7 +85026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e95886ba-d589-4ff6-9086-44540288fab9", + "id": "f634720c-4185-4169-add3-2352fc36a1e7", "name": "Query with Fields", "originalRequest": { "url": { @@ -81680,7 +85110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6763656-cd30-49a8-8980-90f92ca58607", + "id": "eed930f8-fb22-4b9f-95e6-1b1d4d04bd5a", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -81770,7 +85200,7 @@ } }, { - "id": "df06d1cf-b29f-4a5d-8eb9-53269ef5019c", + "id": "dbfefb22-fb19-4908-a65b-b84ddc466730", "name": "Count Documents Satisfying a Query", "request": { "name": "Count Documents Satisfying a Query", @@ -81813,7 +85243,7 @@ }, "response": [ { - "id": "1ba0c82b-ea45-4eb1-8c0b-399641cb304f", + "id": "a77bb5b1-43ce-4d61-8e63-6907030b904a", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -81870,7 +85300,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bb769d0f-0e02-4c31-881f-5e4348f75071", + "id": "9cb00a4e-3a89-415a-9ad9-fa8c12f28284", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81927,7 +85357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0268aa8-c965-4eb8-886c-2e0fc1d78b39", + "id": "06f126ff-6d07-420f-b9ca-37da0337ce04", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81984,7 +85414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8086c197-a6a6-43c2-9f38-9ebbd8f74851", + "id": "ba3a2a03-03bc-4cdb-b0ca-12f06e2a7f79", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82041,7 +85471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e5f42fd-d916-44aa-b972-356bea54acd9", + "id": "1fd7ac26-6e08-446a-82d9-e143a0bfd8de", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82098,7 +85528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87e7d0c1-580d-49ff-8ff4-a0bfcf94815f", + "id": "6b0de659-14dd-4cab-8300-68e16a7478bb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82161,7 +85591,7 @@ } }, { - "id": "e5877981-a119-4850-9468-374fad0f4173", + "id": "d6904f99-9aeb-4f21-baa9-0aaed03d0b29", "name": "Perform a Search Query Aggregation", "request": { "name": "Perform a Search Query Aggregation", @@ -82232,7 +85662,7 @@ }, "response": [ { - "id": "4d138d59-e4dd-4aad-bfb2-1c5ab8201c11", + "id": "046504c9-4478-49aa-b643-4f3c7a5e6312", "name": "MetricAggregation", "originalRequest": { "url": { @@ -82326,7 +85756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2db632f8-e442-430d-8bb7-4136c9c74310", + "id": "49dbc845-53d2-4ab0-a9fe-55aecd93a586", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -82420,7 +85850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92410436-4177-4a00-a79e-36ef5dca8e10", + "id": "d82d57d2-e76d-482e-889c-9db74eb60b01", "name": "BucketAggregation", "originalRequest": { "url": { @@ -82514,7 +85944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cf0ee68-265b-4f70-b6d9-9df0d50c94bb", + "id": "acd1b4c3-6b01-4078-9757-b8a61e3c3cf6", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -82608,7 +86038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40d2b23b-ce69-4c02-bdb5-550fd5af54f5", + "id": "44442689-b20a-4338-956f-bf1706b412c4", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -82702,7 +86132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b22dd185-22a8-41ab-8bf3-6ae5520303a7", + "id": "22a95cbd-8680-4c40-a395-9d2d7d3b87eb", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -82796,7 +86226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "953db3f5-27a3-4361-afbe-362d9ce3d9c6", + "id": "aee6c8f4-1fbe-48e5-87c9-3bd5d8f7cdcd", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -82890,7 +86320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37e245cb-3e04-41c8-bcbb-d753cad0acad", + "id": "51498d8a-b85d-48ab-813c-7a7647964452", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -82984,7 +86414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6368c610-c8f8-4f24-841b-e4451504385c", + "id": "a2e85c94-d47c-4ef1-bfcf-ce1f473cc37c", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -83078,7 +86508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e2aa493-281d-47c4-b217-43ec011ba2ef", + "id": "b66242d1-63d2-40fd-9a0d-6da4c87bb7d9", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -83172,7 +86602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "048b3809-df63-4ce6-afca-c5502fb97385", + "id": "42110463-62ae-4ee3-8b93-efd6b428ccf4", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -83257,7 +86687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d27b12c4-3616-46c8-a04f-97afd653066c", + "id": "a8a4829f-a8fe-44c4-9e03-38bc31afd22f", "name": "BucketAggregation", "originalRequest": { "url": { @@ -83342,7 +86772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4651c5ac-22b4-4968-9a99-78de7c8b4a86", + "id": "69485a19-1e7d-4d03-9a36-57088a4a9393", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -83427,7 +86857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a848a2ea-3b58-42dd-bd40-b39ceda00dee", + "id": "4d408632-31d6-4aeb-97b8-8ec630695348", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -83512,7 +86942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca570bb6-db69-4f97-8120-5ba0e7ae5509", + "id": "0d2b7910-fa20-4132-8300-5b048a3a0356", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -83597,7 +87027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8623418-fdbd-446d-9970-ad090cfdc414", + "id": "ae4bc304-120a-4253-bd67-252b40a1bdc1", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -83682,7 +87112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4c198b6-0846-4cb4-8a3c-55db442d6706", + "id": "801a642a-bbc2-4a70-b1a7-b0f1bd6fe313", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -83767,7 +87197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80e62b20-0d02-41ea-999a-c3ccc2b87426", + "id": "e4880513-7c09-42a8-8125-604dfcf77b17", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -83852,7 +87282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5874b68f-ba13-422d-872c-60dce530dc44", + "id": "62032d72-1507-4d2d-855a-1f21e9fc3f59", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -83937,7 +87367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2285fa5-2cbb-4325-bb12-16a6d0e04210", + "id": "9d8c78da-2370-4d99-a60c-2a5b150f2ce8", "name": "BucketAggregation", "originalRequest": { "url": { @@ -84022,7 +87452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bdca470-951f-4215-b77a-ae127890d50b", + "id": "4d51534d-d995-4a46-b25f-e7266e5bec62", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -84107,7 +87537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30264f65-c6f8-4739-a8f4-c83cc2e88d85", + "id": "83bbb40a-f944-42c2-a283-51092907b741", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -84192,7 +87622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a031b0ac-4e17-45f7-a2a8-29360b79a2a5", + "id": "0bbf7ab3-dcf9-4a4f-ba2a-049a2a91bb08", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -84277,7 +87707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ef06208-0a42-42fc-b03f-590290bb0893", + "id": "9765e8eb-64a8-45c9-9038-7ae5b553c317", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -84362,7 +87792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b996a25-a8d0-4b53-beb7-f6ad0b5f4555", + "id": "0f2f059f-81ba-46c6-a9a4-d9886250c2e4", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -84447,7 +87877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38c2908d-3e33-44d0-9104-0cfa4a9477fe", + "id": "e260462c-a88e-4be9-8acd-13dfe6698aa2", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -84532,7 +87962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c0b2303-1750-4ac8-a743-0688c71d7a96", + "id": "df9c68e2-7c5c-4427-8ac7-a30923592b34", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -84617,7 +88047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cff521e2-fa46-4f57-857b-67b9e75abe4b", + "id": "8838a0d5-4e45-4188-b47b-db07627f863a", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -84702,7 +88132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faaa59e9-0e16-4a7b-8631-9515c35e0ddc", + "id": "46dacf98-bba0-4c31-bb2f-258d285544b3", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -84787,7 +88217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e181895e-5f27-4d72-bfc0-c3893aec7862", + "id": "806bd759-a031-47d4-8bd2-2ea2ad75bdfc", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -84872,7 +88302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd99073c-c60e-443e-890f-6a3f450e46d2", + "id": "693af1e6-8415-403b-a916-79b3b5fa19c4", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -84957,7 +88387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcef06eb-9f66-4d98-a392-dd5c8dfa8b8f", + "id": "1568e49f-6f3f-4377-8076-a2950f31b048", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -85042,7 +88472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d663ee36-8ab1-48ec-883c-1e1b0eb79336", + "id": "da47ce8f-254d-4e91-9bc1-44fdb6a4f140", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -85127,7 +88557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "954025eb-456f-4365-86e8-435937d283c3", + "id": "69ff0847-96ea-4406-ae19-b75ae1779f8b", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -85212,7 +88642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71c50507-1f52-4379-af28-41d4cf341149", + "id": "1d5ca4fa-7da7-4514-813e-c63e5de5bceb", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -85297,7 +88727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d503c2ca-b2ea-4bef-a6f7-99293e96e5ec", + "id": "3abce482-f7ca-4d07-b3ec-9b777714493e", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -85382,7 +88812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "380ca761-cc10-44a1-bd68-822655fafdc3", + "id": "8c22caf7-bdaf-44cc-aa8c-f2171203070f", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -85467,7 +88897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2d03dae-ab52-45b4-9cf6-3ca9382300f3", + "id": "82334098-2c7e-4bb6-b4ef-056395648d02", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -85552,7 +88982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e17b503-07b6-4d94-803d-8c142de35a55", + "id": "7a04be96-3854-45e8-a82a-2c2b1f1e2034", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -85637,7 +89067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16be7c5a-3e16-49ad-8809-7e49f0a6cfc5", + "id": "7fc62ead-4cae-4e1e-8130-662418eae893", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -85722,7 +89152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bd17686-08b9-486a-aced-0c10d175cc2b", + "id": "253815c0-5706-4c98-9267-c170f14b83b9", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -85807,7 +89237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb603979-611a-4b57-9907-5663cb3c85ee", + "id": "3af19be9-ad37-4bf5-825a-e9a10eba9973", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -85892,7 +89322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab906abb-d169-439f-b7ef-326e9dfaf236", + "id": "96b53c66-bc56-42f5-9cf2-402cdd21f144", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -85977,7 +89407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c866a75-bf94-405c-a89e-1099a43eabfd", + "id": "2a2b1ab6-afc4-4b9a-9bec-8128969f5548", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -86062,7 +89492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "602e3c93-e9f9-45d3-9c46-f5b8f1320a46", + "id": "ab0fb5cd-90ce-4e80-ab8d-ba7bd315ddb6", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -86153,7 +89583,7 @@ } }, { - "id": "7bccca3c-298f-42d2-8f98-14c1eee1479e", + "id": "7420e357-87b6-490d-b1c5-36afebbebbf9", "name": "Get a Document by ID", "request": { "name": "Get a Document by ID", @@ -86205,7 +89635,7 @@ }, "response": [ { - "id": "1cbe0e6f-bf11-43c7-96b3-cf8a4f1b036f", + "id": "806e6831-e623-4265-bc8f-f2a4c9d2116d", "name": "AccessProfile", "originalRequest": { "url": { @@ -86250,7 +89680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f7fdb97-570b-4ba5-aa80-a8f166f0bf44", + "id": "74ecdf4c-3ba2-41cd-ba96-4c5f39d265e6", "name": "Entitlement", "originalRequest": { "url": { @@ -86295,7 +89725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88d3d7aa-052b-4284-965e-0a15add13b45", + "id": "ec3efced-d253-40f9-b755-e7d5f4617c07", "name": "Event", "originalRequest": { "url": { @@ -86340,7 +89770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "147bc06f-9560-4838-882b-90e1dd25f632", + "id": "b6fa8023-2d48-4d33-9ded-07024e8756d0", "name": "Identity", "originalRequest": { "url": { @@ -86385,7 +89815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9b6e5c3-71f3-4f88-a45d-a994fde687c8", + "id": "48f2ad6e-1e26-42fc-bf02-a600b1516c72", "name": "Role", "originalRequest": { "url": { @@ -86430,7 +89860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cdb2039-9fa6-42ed-8725-f9cb7335b11f", + "id": "4a20a894-3a09-420b-82e6-465a6bfdd4b5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86475,7 +89905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29a4eaa3-132f-4692-b477-c299b0aadb9f", + "id": "560c5b43-1f4f-4c5f-9ad9-5ec6a730eea6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86520,7 +89950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "000ec16b-8859-46c5-9c74-72c08682489d", + "id": "3d88136d-fa2d-4fb4-9fe9-ae80b0bcae2c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86565,7 +89995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "647029d8-ba41-436e-8b5f-ad39541e8487", + "id": "a0890bdd-2953-49a5-b767-d3aba33f3dbb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -86610,7 +90040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3ddbd54-00e7-4145-9bb3-a15f6a6e1b7b", + "id": "1449af78-62ee-4d23-9085-a19492de555f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86655,7 +90085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0cf4837-7db7-48f1-b1d4-c77fc7f52f3a", + "id": "287badb7-6025-4790-83e4-cf4cdbb1806f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86712,7 +90142,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": "1973e8b7-83be-4663-9829-fca8ef11e53d", + "id": "df5e4efa-466e-460d-b614-4e24d5dbc095", "name": "Create Segment", "request": { "name": "Create Segment", @@ -86754,7 +90184,7 @@ }, "response": [ { - "id": "b5cf197b-050f-47c6-9f59-51ddc4ad4a0b", + "id": "61b33da8-632b-4938-b74d-acb7c2f82edb", "name": "Segment created", "originalRequest": { "url": { @@ -86810,7 +90240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b2ef6f8-8a9c-465f-82ac-fa8f8ee09c02", + "id": "bc8d2d4a-8f3c-4be3-a3b6-6628f089726f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86866,7 +90296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96ee15c4-f942-4250-b79a-1eced847dd74", + "id": "bf65ecf0-c636-4948-a4fc-b5ae5059fbb0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86922,7 +90352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e82f6c98-6e9e-4ae4-87c9-6b225d5fcba5", + "id": "236ba012-29da-4dd4-8887-9f64b9710c27", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86978,7 +90408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c11bbc9-f119-404a-9b32-e4938ee38cc9", + "id": "0d210df0-3f1f-44aa-935a-6245e18d0943", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87034,7 +90464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f53c77be-08d0-438b-851f-edd6898078b1", + "id": "ef0ccc53-f9f1-4920-bae9-83980cd1bd6b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87096,7 +90526,7 @@ } }, { - "id": "bf95725f-6f2c-4bb2-bf6d-7f913afc1551", + "id": "9fa0f448-91ed-40e4-b4d9-3bc3904db250", "name": "List Segments", "request": { "name": "List Segments", @@ -87153,7 +90583,7 @@ }, "response": [ { - "id": "abc8e7e6-e02c-4f30-ba98-b5ae43961197", + "id": "96a1f5ca-e20c-4511-aba7-e48d652989c5", "name": "List of all segments", "originalRequest": { "url": { @@ -87224,7 +90654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9002463e-ac70-4993-b5d1-7f4c16d417a4", + "id": "4211b95a-cb4b-4379-92c3-cb40e7ebd828", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87295,7 +90725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66be7460-b67e-4711-9a58-5f92c082cdd5", + "id": "1fe81c10-9477-4dff-a824-b205869ed16e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87366,7 +90796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cf316cd-d6c0-4551-8c14-2bcd69895373", + "id": "62e3f32f-7bea-4ea3-a601-9f6aac2022e2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87437,7 +90867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26445ebb-bb70-4aa1-9820-4efe30dce0d0", + "id": "934f1005-2525-429e-840d-786fb710ae77", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87508,7 +90938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ff61694-ad6a-49e9-b831-13a62397f632", + "id": "f036f2f1-7c59-4c56-9749-038000381fdf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87585,7 +91015,7 @@ } }, { - "id": "7be3b8d4-9d2c-40bc-bafb-8db9c8c1a8f7", + "id": "e9ad49cb-8a31-4184-860e-7522f95f38ec", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -87626,7 +91056,7 @@ }, "response": [ { - "id": "59732d7a-79da-4f26-a6bc-168439060d4b", + "id": "a5047263-5ac9-4c4f-9f36-b44b03fd8d59", "name": "Segment", "originalRequest": { "url": { @@ -87670,7 +91100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b89609f6-59cf-4fb3-b003-1d9f6fc5d2c0", + "id": "f0abe194-4cba-40f0-8198-dcf161021c83", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87714,7 +91144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7dcbc14-ef6b-4e6b-bc15-71c9ae9fbeba", + "id": "05af62cc-21d3-4924-a78e-de5682f844bc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87758,7 +91188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4ea3374-621b-4bef-a6d6-45f3ac2337bf", + "id": "c0e9f225-a055-4809-ad62-1471bf325280", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87802,7 +91232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6b086e2-563d-45a0-88f5-9016164c72cd", + "id": "190ea6e9-19b2-42f5-8561-5f29e351b54b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87846,7 +91276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a7c52f4-e86b-403f-be7b-390da5c094fd", + "id": "1e65b6ae-56fa-493d-ae92-7744542e8164", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87890,7 +91320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51745843-4287-4bba-85eb-ec6c19ce3c58", + "id": "7a9ef83b-7f55-4ae7-8c45-2e1b2010bf38", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87940,7 +91370,7 @@ } }, { - "id": "bb7b8855-f382-4534-b821-fee39277be94", + "id": "7453a2dc-96cd-490c-bf9a-0a3ed36f23b1", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -87981,7 +91411,7 @@ }, "response": [ { - "id": "94d4d046-e661-4019-850a-5c1c142348a0", + "id": "214b8358-7b64-4685-8313-ebfc746cd825", "name": "No content.", "originalRequest": { "url": { @@ -88015,7 +91445,7 @@ "_postman_previewlanguage": "text" }, { - "id": "85c7ddda-7475-4e62-a908-e8d52b347375", + "id": "13984eed-e2c4-4b45-bbc4-b360c7f35918", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88059,7 +91489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7b7962e-7c5b-4284-adad-df790ccd757a", + "id": "2a0a1018-e800-4aba-9fb6-730a1fce544b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88103,7 +91533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b44742fd-ea64-454f-9bfd-0021c29a4391", + "id": "174196ec-a3d0-4fb0-95e0-6c452c75e4ce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88147,7 +91577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5882013c-54f0-4260-927b-2f5eae3d6de3", + "id": "80aeb757-1ad5-4ef6-97c0-431873bc0b06", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88191,7 +91621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb8cbb99-db3c-412f-b128-4d7651369505", + "id": "411b7d13-56db-4549-b9cd-ae7ae47b6919", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88235,7 +91665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4f4ab15-e085-455d-a977-252eca8973dd", + "id": "acd3b790-c563-49b3-b32f-aa7aec28dd60", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88285,7 +91715,7 @@ } }, { - "id": "d39a1023-554b-4fd4-a012-e49feeab61a8", + "id": "bc95aa3b-bb10-4e9b-90e8-ea9a4f1ab86c", "name": "Update Segment", "request": { "name": "Update Segment", @@ -88339,7 +91769,7 @@ }, "response": [ { - "id": "7089b79b-aad8-4bc5-b3d8-3d272a5c683c", + "id": "af27d3be-5326-4623-80ff-a18cf71e87d8", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -88396,7 +91826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be58eda1-047a-4c4b-957c-3d3543c3d1d8", + "id": "b81871e9-d80d-4879-a748-88dc1d8fecb3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88453,7 +91883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42032ff0-6362-42e0-8d89-6bd2c65e40c7", + "id": "add12091-2654-4c66-84be-55b95c71e8a7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88510,7 +91940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c53f2c5-ba9a-49b3-bf57-adb55f8a8f69", + "id": "f51b9fc4-6b7f-457c-92f4-6bb392c27d0f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88567,7 +91997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e562d3a0-8f11-465c-921e-8b30d52fc38f", + "id": "f9a1457c-5a37-4cc5-8de8-860a9d81bffc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88624,7 +92054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2805f83-d39c-43cc-a195-7dd2a5d8eb17", + "id": "b41f8457-f5a1-4be9-9327-5f011c7b01d7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88681,7 +92111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b86cee6-4de1-44ac-8e20-25187af58052", + "id": "8a1b0588-5edd-4715-88fa-1725f3db7ce2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88750,7 +92180,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": "c52baae3-3fab-4b13-87b3-f1f7ffd62762", + "id": "c123851a-2783-4828-85eb-a578b4ae8d4a", "name": "List existing Service Desk Integrations", "request": { "name": "List existing Service Desk Integrations", @@ -88825,7 +92255,7 @@ }, "response": [ { - "id": "eb30e23f-3dab-40d6-a29b-b09c5cb2b1de", + "id": "aeaabf3f-7873-4da2-a084-153a244229aa", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -88914,7 +92344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cc14255-7e4b-47a9-bed6-e14ce8cd6207", + "id": "f9d48b7c-e897-4e06-a16b-b47209581b97", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89003,7 +92433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffb6fdb8-fdad-4955-810b-39ff5dacdab9", + "id": "29d9d69d-2d47-46d3-a44d-906fa9ca5b56", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89092,7 +92522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "021e5730-b01a-42ee-af9c-c16a65c8f284", + "id": "3908a14b-456a-450b-9556-6ca032bd0ee5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89181,7 +92611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8eb6b6a3-a642-4148-ace1-533a7303f30d", + "id": "ddfcb4a1-d3ba-438b-9285-979e5f3f8dda", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -89270,7 +92700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef34550f-eea8-480e-8fe1-29bdbb60bb42", + "id": "38deba0d-76fa-4017-a590-d0a2794c4704", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89359,7 +92789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c39e3c0e-c46c-4b8a-b042-41d262e07b90", + "id": "f8f67f51-63b9-4021-914d-82f5075d5935", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89454,7 +92884,7 @@ } }, { - "id": "70d99077-c873-4826-9a15-de943371cf5d", + "id": "2be0ed9e-24ad-4faa-a461-6260758d3b5b", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -89496,7 +92926,7 @@ }, "response": [ { - "id": "abc88655-d1ea-43db-9338-d2522e0d9a87", + "id": "505cf641-db0d-4187-8c21-c50fb2455f84", "name": "details of the created integration", "originalRequest": { "url": { @@ -89552,7 +92982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1154d87-30cf-4eb7-8250-7908a0536a94", + "id": "1f169d2a-17fd-42c7-bd51-cc17e3226cf7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89608,7 +93038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc1528af-9899-429d-80cb-0cdd19b5eb00", + "id": "020b0083-608e-4ddf-bc4e-074a1a6aca31", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89664,7 +93094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e655dec7-a711-434c-9185-8944b405bb6b", + "id": "8f211b10-cf2d-4f97-a921-ecb60f181a6a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89720,7 +93150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bad9c3cb-6698-49d6-9767-136aba08add8", + "id": "9deb8668-a603-422a-b08f-6a7d0911add1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -89776,7 +93206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6dc7cdd-39b0-4257-9148-8bc09c870391", + "id": "bc4b3b73-e099-4238-a3ad-2fc837c466d2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89832,7 +93262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f832382-2793-469c-ba44-20790f7d3b92", + "id": "c4079c0d-f080-47dd-948b-a28da0d1458f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89894,7 +93324,7 @@ } }, { - "id": "340927ca-5deb-4430-ad48-66798bbe1780", + "id": "52c318f9-72d0-46f5-b2ac-c7b7b0aa2aa8", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -89935,7 +93365,7 @@ }, "response": [ { - "id": "3b2df933-4044-49b4-a211-bb5b12524f32", + "id": "86215811-14f7-48db-ad0a-d48277657945", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -89979,7 +93409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ace5f122-c189-4a86-9b8c-ce078f19401d", + "id": "97c05c39-386d-49bc-9a7f-20e03e8b1be7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90023,7 +93453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7073b4a9-0298-455a-8a4d-b46bed8b1155", + "id": "f3393cb1-bc8a-4ef1-8cb7-f6810b98a4ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90067,7 +93497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b5a968a-b645-40dc-9d99-399f323ac8e7", + "id": "d4ad9eec-8b48-4113-ab88-3b6491184d40", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90111,7 +93541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb42591b-4c3b-4398-8aba-d96a60a7d84e", + "id": "467d5e4f-cb17-4fec-855a-d1f1ace216fc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -90155,7 +93585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14eb18d8-ea41-4034-9b4e-64b1d19fa024", + "id": "a4366674-1d80-4d62-8918-af1d2a8f2e73", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90199,7 +93629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9190b1f6-2a07-49be-865b-33be000051d7", + "id": "f4800e0c-81af-4c60-a313-5f1be22558d7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90249,7 +93679,7 @@ } }, { - "id": "93c722b5-a379-48f4-bc87-4f8e80444709", + "id": "699df56c-b34d-499f-8dc0-44f4e6b7b3bc", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -90303,7 +93733,7 @@ }, "response": [ { - "id": "473d4313-15b6-42ae-8a56-c18d7d3bce27", + "id": "7cf127f3-eef9-4726-a47a-76e772459bc7", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -90360,7 +93790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38334f83-54e7-4bc9-8f8a-9dfe7b020f0f", + "id": "629e5bb0-16eb-477a-9c69-6e5e435df75c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90417,7 +93847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cc648f7-6b40-4bdf-83da-1a03ee87494a", + "id": "386a4f31-c9cf-4d94-a325-79ccbd70d09c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90474,7 +93904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4edcde75-290d-4c7a-b602-93e5f2867be0", + "id": "8bc125a5-5531-4142-a451-aa680653f889", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90531,7 +93961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e70e7f29-e147-4fdd-9d58-b003b83c3e5e", + "id": "eebc64d1-57b0-49d1-a92b-6a9a5a91f5b6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -90588,7 +94018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "947d9473-e17f-421e-b8a8-53849311575c", + "id": "ab4ee5c6-608e-4c36-8181-c6ca597e3d18", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90645,7 +94075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c5f954a-5714-412c-9ec0-a6cfe21f6445", + "id": "5b81063e-cb71-4ed7-93d9-8761e87ad32f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90708,7 +94138,7 @@ } }, { - "id": "24f84518-5c62-475c-8d6a-a3bafdaabf3e", + "id": "a45d02b9-d1cd-43bf-908a-1f99d009f385", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -90749,7 +94179,7 @@ }, "response": [ { - "id": "cbceaecd-4448-48f0-aedb-a74268581dcd", + "id": "ed088280-fe1e-4147-a354-ba7b0fefab47", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -90783,7 +94213,7 @@ "_postman_previewlanguage": "text" }, { - "id": "399a8eb2-fbae-4887-bacd-85ff884ce87f", + "id": "eb88cda5-0d63-459d-a605-c21509b4fe14", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90827,7 +94257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a9f91d0-a309-464a-b1ac-a36bb27e9f2a", + "id": "3f3d4ad0-0d0e-48e3-a58a-86bd9e895bcb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90871,7 +94301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25571ef7-277e-47ba-92bd-a86f5d294508", + "id": "6102ab9b-6096-4234-bb17-9c0e0550b6f8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90915,7 +94345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2220027a-5ea1-4031-9a47-94a8e9fcbcbe", + "id": "1002dd00-5c36-4159-a134-d37bf50c56e2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -90959,7 +94389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b6eda21-0778-48dc-a83f-29ecb4215ef9", + "id": "f26af65e-4c25-42ca-9afc-17e5eb53705d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91003,7 +94433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "941128aa-ee83-4eca-bad6-a3fd75f29c06", + "id": "1de3cacd-4205-4fc8-87b5-57c254192e7a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91053,7 +94483,7 @@ } }, { - "id": "86b51cf9-b136-454a-b524-452f90d0ca29", + "id": "b78fe911-f08c-4782-9e34-36a6f27ada2c", "name": "Service Desk Integration Update PATCH", "request": { "name": "Service Desk Integration Update PATCH", @@ -91107,7 +94537,7 @@ }, "response": [ { - "id": "5a817640-e05a-49eb-8c02-d7e4d80f9c8f", + "id": "66c35e34-c635-486b-a7ee-3a3221ae60cb", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -91164,7 +94594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "018f181b-4513-482d-98b1-3aa082f47e8c", + "id": "925918d9-435e-417d-ae84-f06961182b49", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91221,7 +94651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d78f558-8ea0-4510-9820-dfe08de2d6a7", + "id": "a1e3840c-813a-4f61-932f-2a444877cc7b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91278,7 +94708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20d46101-f52a-42af-911b-10951f7b3687", + "id": "2ef50b1f-3da3-468b-ab11-4890b0101b85", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91335,7 +94765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8183fd36-7bc8-4eb0-800b-f3ad0a68c55c", + "id": "28e8778c-2cd9-41bf-86b7-cb67df999b3b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91392,7 +94822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4580537-2f2e-4d14-b3ee-58d227762a37", + "id": "6755144e-ab80-4ecb-b67d-11260c03ad7e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91449,7 +94879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e2cadf2-2e23-4ed2-9325-b529ad133765", + "id": "0bdf7a27-42f8-434e-bec4-cef4c4fc92cb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91512,7 +94942,7 @@ } }, { - "id": "ff19c490-0670-4998-a064-43a145f04b7c", + "id": "33668f42-b766-460d-969b-6ea101470a4b", "name": "Service Desk Integration Types List.", "request": { "name": "Service Desk Integration Types List.", @@ -91542,7 +94972,7 @@ }, "response": [ { - "id": "c7e51ae5-2d25-48f8-a160-3aa5dc2b14fb", + "id": "3679a8ec-61c1-4381-af60-cdae9c5bdab9", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -91586,7 +95016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67abe631-b6fb-45e0-87fa-70acbf5119c4", + "id": "0f196123-d63d-48eb-9577-764ed7d545c8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91630,7 +95060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b38fdae9-430d-4fbd-bc29-df415ab579dc", + "id": "649fbff3-ec9c-4d2e-9c8a-a5bf4a4713c3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91674,7 +95104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85b6a417-cfe6-451d-99a5-39d69872381a", + "id": "7ace43bf-442b-46d8-9546-b3b605a2a9c5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91718,7 +95148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecafc470-6780-4843-bc84-7907c92fd430", + "id": "a20311c2-6a39-433a-a52d-79de35530092", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91762,7 +95192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c45bc9b-4b3f-42a1-93b8-ccb3fe2bbae1", + "id": "d08fe30b-5d19-42c7-beaf-cc6162c22156", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91806,7 +95236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28951b7e-a141-4c27-a9d1-34994619c3af", + "id": "aee9f11c-2f88-4897-823f-e83b4be0b484", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91856,7 +95286,7 @@ } }, { - "id": "85ef5486-7946-45e5-9697-9d1493a912ec", + "id": "7b9dad72-a577-47b8-8d0b-f4df8667bf5b", "name": "Service Desk integration template by scriptName.", "request": { "name": "Service Desk integration template by scriptName.", @@ -91898,7 +95328,7 @@ }, "response": [ { - "id": "7810637d-e820-40f9-8126-d8b64fa4d264", + "id": "0c5c3227-77b7-4888-a473-1630d893f907", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -91943,7 +95373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "456b7696-a39c-40c8-b051-3141a9fc1200", + "id": "423a5073-6405-4e49-bca5-81c20500474f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91988,7 +95418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ed04a37-b119-4874-b081-6ba321f6614e", + "id": "db2d5fd6-625b-4e9f-bc52-b2f74a954751", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92033,7 +95463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbaa3190-fcc6-4620-b6ac-53e36a2be065", + "id": "8eb9ded3-42e0-4c42-96fb-dc7fd217cafc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92078,7 +95508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c171ab58-b37d-433a-86e4-f4501e54cef3", + "id": "b0a1446d-18ae-4228-9055-5a036d568cd2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -92123,7 +95553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dc61e5f-5736-4d7a-9a28-e727763aa12a", + "id": "c3368763-0c24-44d8-9fba-e37479c28989", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92168,7 +95598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc767095-c099-4876-99b4-c2163f91c06e", + "id": "4527f764-603d-498b-b600-cd98d68cf618", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92219,7 +95649,7 @@ } }, { - "id": "596dd31f-d272-4799-97f0-85a16e467331", + "id": "8b901e78-7f03-41d3-98f8-93bd798c140f", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -92249,7 +95679,7 @@ }, "response": [ { - "id": "f553afd5-79e4-4086-9567-16aa9406d782", + "id": "12af94af-521d-45c0-a325-85049ed8d0f0", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -92293,7 +95723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de886cbf-d799-493b-8820-db977310ac33", + "id": "e8b089e1-cea3-4e61-b091-cb72942e4778", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92337,7 +95767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8b7ecc1-32cb-4c9f-943b-9c51962a6f40", + "id": "f87910e9-63b3-4a0f-b945-ce66a97dbf19", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92381,7 +95811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b787c81-9d57-4687-8892-67b6ec224838", + "id": "3e345ebb-663a-4742-9ff3-356305ee1ab2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92425,7 +95855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fbc199f-b9e6-4cf0-95f3-bbae3f9f82bf", + "id": "4205d981-1a9c-4963-9700-322ac1c56f45", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -92469,7 +95899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa9d6e3c-16f4-403e-a13f-21789082a042", + "id": "4decb4d9-d46e-4f4e-b27a-ef5994482d5d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92513,7 +95943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faee1f2a-a902-40c9-8420-5efb9f1d08b7", + "id": "750d7cd4-6e5d-43fd-9003-197c81cecf86", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92563,7 +95993,7 @@ } }, { - "id": "db6cd4fc-36d9-4b37-b082-398fe8d39751", + "id": "ec7bcaf1-38a5-4db8-b21f-7f1a1d5f7c83", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -92606,7 +96036,7 @@ }, "response": [ { - "id": "2417895b-8bf3-4105-bd22-95cdb8c63ab8", + "id": "87ba32af-9e2a-434e-a078-fef2727acde7", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -92663,7 +96093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ff841bb-6b90-432c-bea9-6e5d9f649743", + "id": "a0d0de79-404f-4a33-80a3-801258452493", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92720,7 +96150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91b30bb6-c000-41fd-abf7-888bc64ef9b8", + "id": "e43d8db5-7d66-4e10-9dd2-e4230dac102b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92777,7 +96207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9455655e-5c65-44ff-9c70-b23c4867943e", + "id": "a1c66542-6c0b-4fb7-b7ce-d0de0eb49884", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92834,7 +96264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec3cf697-a927-4627-a9e0-fb7d67153467", + "id": "938fbe3b-5e00-4aa9-bf12-e73b4ebddd24", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -92891,7 +96321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "421cdba6-6c34-4a88-b68d-e5a93c280441", + "id": "cdb051f6-1d44-4d52-979e-31e27136dff8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92948,7 +96378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "500e348a-d827-4423-9e99-f44a73c0063d", + "id": "00ef85d4-4b0a-4c2e-a8ab-910fdf4586ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93017,7 +96447,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": "6eaec8b4-2954-4f55-91f6-4344f4e8df87", + "id": "11ef00ca-d856-40e9-86e0-551a71a14935", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -93059,7 +96489,7 @@ }, "response": [ { - "id": "fa7e8de2-aedb-4ed1-b34a-a34e5b744ba9", + "id": "b9f5141a-2d7a-4471-9198-5727e5e1bd56", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -93115,7 +96545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78153b36-051e-4954-b08f-3ba2790a55aa", + "id": "3ef91ea5-9e53-43d6-8a65-92272c461126", "name": "General Policy", "originalRequest": { "url": { @@ -93171,7 +96601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b21ae692-ff0a-485e-a825-ccb1fd4c37e8", + "id": "619c8ed6-0a84-4390-baf4-d4a2b7131ce8", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -93227,7 +96657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6267f07d-97f8-4f58-b439-50d2ea01835e", + "id": "a2bfc029-e9c5-4cbe-b898-4e0e2dc0ce0d", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -93283,7 +96713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a9c957c-ae65-4fc0-b539-f3ad729327e8", + "id": "d08e8c29-e2d1-48e0-a72b-b7599d9cb52e", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -93339,7 +96769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb39019e-0245-488f-be71-a7a035ec20e4", + "id": "2859bb1c-e8e0-42da-ae75-68035d3be4eb", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -93395,7 +96825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0e7a9ee-9f0c-46f2-af92-71f8705641df", + "id": "f10452a5-c9c5-4f2d-9410-b42f942a5c0c", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -93457,7 +96887,7 @@ } }, { - "id": "d7dfa2d1-f551-4962-91c6-34c5efed4ee0", + "id": "f9633352-30a3-4649-a1b6-93984483606d", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -93523,7 +96953,7 @@ }, "response": [ { - "id": "4735c9b6-2711-4242-9f7f-ceed5f034d0b", + "id": "5cc696ef-c03d-4e61-8569-09915e40890a", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -93603,7 +97033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e88547e-d85e-4ec2-92bc-9be73468dd2e", + "id": "18284d01-814f-4e3f-8ce6-8575fd8a96a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93683,7 +97113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc4802aa-4286-4bcf-b236-a026a139494e", + "id": "0a46065b-e1e1-4efb-bc86-c6dea9cfe7b7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93763,7 +97193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c41b5b61-d810-4a1a-a1b1-2deb7e1de271", + "id": "2e820165-b0dd-40e5-8766-20d5c82d2d6d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93843,7 +97273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8893b9bf-ea65-49f6-bada-5fe2963f09ca", + "id": "a3469806-8df2-4262-b5a3-5e0a0c289d52", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93923,7 +97353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90fa8d31-cb5e-4419-bebd-58ad6afd985b", + "id": "cefd9b1a-803c-4f61-91f7-ad15c3d86238", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94009,7 +97439,7 @@ } }, { - "id": "b7765ef5-6c5f-4d16-94ac-5bc525ffffb8", + "id": "e735a2b4-f635-4b96-9bf6-edb0ec062e0c", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -94050,7 +97480,7 @@ }, "response": [ { - "id": "f7adf72d-620a-4f2c-9a67-1f74ffbf3a58", + "id": "4209f456-d2ed-4962-851d-1ebd92a1deaa", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -94094,7 +97524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f0478e0-5ddf-4f22-8022-96a84bcf44e6", + "id": "2bd28100-7735-451d-b889-f9d64300aca7", "name": "General Policy", "originalRequest": { "url": { @@ -94138,7 +97568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "477d00d2-173f-446f-a4c7-8d6ad37a1f3d", + "id": "79c9519e-41c7-4f73-881f-f69e42011726", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94182,7 +97612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "253d4deb-55fd-45d2-a227-648bcdc252dc", + "id": "dc58b0f5-63da-4320-9ffc-20ef731a9501", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94226,7 +97656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71bf1272-9d5b-4844-94cf-61dfd0f3c2cf", + "id": "8d80fcc3-0b2a-456a-a352-df840cb6e17a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94270,7 +97700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86aed391-3ab5-47c1-b6b8-0c81e24dc6e7", + "id": "50b47f4a-6a3b-4c67-8dd7-44f0d533b8c8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -94314,7 +97744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d3e5747-369d-48c6-9039-4d8c0931c3f4", + "id": "06af5619-7738-4444-b721-dd55a5a6aedd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94358,7 +97788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d97c023b-4be5-4bc9-89f1-98c3784f2244", + "id": "4c51d5bd-b3d3-4009-8150-b6d4dc91c890", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94408,7 +97838,7 @@ } }, { - "id": "535abf12-b13b-4d6f-8e5a-0d498a1b0b1f", + "id": "71a17564-bdfc-4eff-86be-7413e39a1a4e", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -94462,7 +97892,7 @@ }, "response": [ { - "id": "c7c2a9cd-cb2a-4425-bb4c-fe621c5dd049", + "id": "ba196914-e98a-4668-943a-96e8a47caddd", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -94519,7 +97949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51373171-63f1-4b88-b83a-9591c0397fbf", + "id": "90be339d-66fd-4f54-af62-75a1b0934521", "name": "General Policy", "originalRequest": { "url": { @@ -94576,7 +98006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b39e440-1d7c-45ab-8fe9-08c58b5e2c52", + "id": "87857c55-a203-4d9e-8486-892e427725c3", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -94633,7 +98063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84197e37-e3f7-485f-93ea-be9d88f047f8", + "id": "4536ce2e-ac1e-474d-8db5-022bf4a6f16f", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -94690,7 +98120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7d66c22-77ad-43cd-8efd-df5c92051b5d", + "id": "9c6ad163-1023-41bc-a28d-5b7e70ae4589", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -94747,7 +98177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a93c2ff-0758-463d-a135-9e6060bfeb28", + "id": "2bb1ee4d-ea40-4a47-ae9f-93256fafd4b2", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -94804,7 +98234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f96cb70-0e75-4492-8834-0116a099f6ed", + "id": "9bb30af0-2ae0-4613-851c-db8e7582e689", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -94861,7 +98291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0ca6ca2-bde3-4a46-8711-ea6da3eabee3", + "id": "7bc470b3-fbaa-4df1-9d76-8b1cb5ce916a", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -94924,7 +98354,7 @@ } }, { - "id": "83b003dc-0b6e-44ce-a01b-c52ee1e2ffce", + "id": "6d5d588e-a3b2-464d-9c2d-1b6f0c0c3585", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -94975,7 +98405,7 @@ }, "response": [ { - "id": "f49c2048-7a16-43d4-bea7-cfd9ec673867", + "id": "9666f5f5-0cdd-4ed5-881a-edd9bdd422c8", "name": "No content.", "originalRequest": { "url": { @@ -95019,7 +98449,7 @@ "_postman_previewlanguage": "text" }, { - "id": "91b4f841-2444-4ea3-a70d-012dc04f0a1a", + "id": "5fe18c1d-02a4-4857-a8ed-2f3d33901219", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95073,7 +98503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "208c2dd5-9ec8-4c7d-8dd9-6d0dce81a6f3", + "id": "b62c45e0-dc98-4785-b0ad-b70330e4a9bb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95127,7 +98557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ef6d3c3-6a31-427b-810e-3774e85d57bc", + "id": "ddaff98f-25fb-4fdd-a51a-f552b8c150a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95181,7 +98611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc85dfc9-5642-41f9-a4ab-de9d57af76c5", + "id": "36dde1c0-cccf-406f-a288-13046e23503d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95235,7 +98665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fa81315-7131-4801-bbe0-4cd9a877a07a", + "id": "7ec5d263-d63e-47e8-b88a-ae24a12def10", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95289,7 +98719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "084c7288-4afa-4dc3-833b-7a9a1ee4e933", + "id": "6f453bc4-88e9-470e-83d9-a520dcc40da3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95349,7 +98779,7 @@ } }, { - "id": "21e2c977-c19c-43ad-ab8c-f21610c29e61", + "id": "12f093ce-9525-49c2-aaa4-ecfb538c2e7e", "name": "Patch SOD policy by ID", "request": { "name": "Patch SOD policy by ID", @@ -95403,7 +98833,7 @@ }, "response": [ { - "id": "7b5f4fa7-904c-46a5-a107-7e90135e1b20", + "id": "ce990e04-1898-4182-b737-9634bd13facf", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -95460,7 +98890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84c166ea-1318-470c-b57c-618fc73fa42e", + "id": "1cc9499e-95e9-44e9-baf7-eb1bd1c2fcb1", "name": "General Policy", "originalRequest": { "url": { @@ -95517,7 +98947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5be9c565-25d1-4116-a0a9-04ec600c405a", + "id": "299d005e-4b24-4665-ba3f-efba5306d374", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -95574,7 +99004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b43ffd4-ba51-4ba9-a1cc-c7ee43c0983c", + "id": "7c25742a-50f0-4e96-b438-caa67dac2402", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -95631,7 +99061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d56f775c-a3ab-413a-a937-68e2b3bba7b4", + "id": "402854f9-1b37-4135-9395-a244bcfa80e5", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -95688,7 +99118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dae08b9-a395-4e1e-be4b-d6b497f65787", + "id": "d93511f3-fc90-4499-8d1d-0fa793fb7658", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -95745,7 +99175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11e4d1c9-558f-487f-9e40-74a971d54c96", + "id": "b1f4022f-7e3f-4709-93ea-440529e74bc0", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -95802,7 +99232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b31332b-e833-455c-bb6a-4a237f80208b", + "id": "0fdc598c-01bf-4b78-9da2-bc2a3d8dc061", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -95865,7 +99295,7 @@ } }, { - "id": "c2a87b95-9010-4d93-ae2d-26265f778a6e", + "id": "1eb805dd-455a-4707-a8b5-a76a957af928", "name": "Evaluate one policy by ID", "request": { "name": "Evaluate one policy by ID", @@ -95907,7 +99337,7 @@ }, "response": [ { - "id": "1e88a551-30fe-41db-8a3f-38276a5f6db5", + "id": "26464418-dfe3-459b-a6d3-dc93000d70fd", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -95952,7 +99382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "655186e7-46ff-44b4-9661-e29cb26b7910", + "id": "d1eb9612-aed9-4ddd-a19d-a04cf959babd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95997,7 +99427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14c093df-bd6b-4ef3-b541-494b67f72722", + "id": "9e8800f9-43d6-495f-b23a-a0ddb075e652", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96042,7 +99472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b024034-7fb9-43c7-ada8-b8e6a87afcb2", + "id": "045faf13-8bc7-4be7-8d44-12f0e07977aa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96087,7 +99517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c21256ba-f2db-4c0e-acfa-d419da062ea3", + "id": "77a06b19-b9c8-4ee3-9b07-813fff3bcc0c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96132,7 +99562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fae6212-72d7-4a4d-966f-96542c86704d", + "id": "0fb62679-f440-4ecc-9b72-85b52f678e95", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96183,7 +99613,7 @@ } }, { - "id": "4eb6d256-7019-405b-acb9-8c5f80d2ab93", + "id": "42272799-f5da-42fe-b38d-d8987b99a474", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -96225,7 +99655,7 @@ }, "response": [ { - "id": "a4638337-a341-4e66-b25a-8fd004a4d02c", + "id": "4b64e99e-a5a0-410d-950a-6d734503e678", "name": "SOD policy schedule.", "originalRequest": { "url": { @@ -96270,7 +99700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70582616-b5a0-4cb3-9863-17fa770e5fc8", + "id": "ba904ec0-a9a1-4afd-bbbe-6a0cf2c3cb1a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96315,7 +99745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "407efe9d-2aef-43a6-909c-06fc6f5188c3", + "id": "9e09becf-904c-4c73-8c03-7669b56d0e84", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96360,7 +99790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7b8e5b5-2567-4ab0-ab06-185bb6acc882", + "id": "8ad44edf-e983-41aa-99c1-2b207aec4acd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96405,7 +99835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f32c6dd-61ba-40ce-b108-78c4bfd0de3d", + "id": "d7e4ddf5-aa6c-476a-b1e4-b1099d0b80bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96450,7 +99880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0840aa5b-a1ef-457f-a2bf-f9fa5947111f", + "id": "413b6e38-6b4d-42ec-86e2-0a6da33cbbf3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96501,7 +99931,7 @@ } }, { - "id": "d2c9e993-c3cd-473f-b9dc-77664f747cc2", + "id": "919d9563-2c6d-413c-9311-cd27ebbd5f29", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -96556,7 +99986,7 @@ }, "response": [ { - "id": "b9cf101f-7872-40c3-876a-61517ac88eea", + "id": "06d9318e-c1b9-40f4-86c7-bb28a7b6e51e", "name": "Created or updated SOD policy schedule.", "originalRequest": { "url": { @@ -96614,7 +100044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caecc79a-0135-4a71-b221-f4427c607a68", + "id": "a22627a7-d367-4aa6-842f-52e0df67e6fe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96672,7 +100102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b9a68a8-4b6f-40a4-a4e4-906e28a3d2cb", + "id": "cf010380-d24e-493c-bb3d-43566f6a7cd6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96730,7 +100160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a94bb17-7dda-41c6-b722-1a3c2945d860", + "id": "0b0f961f-ed83-45a4-a998-3b672b7439db", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96788,7 +100218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3346694-09a2-4cba-9349-f04057161723", + "id": "1fc37b7d-89ed-45aa-8b08-568195561411", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96846,7 +100276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ca57459-e3bf-4639-bffc-d3419c491e78", + "id": "238e10a6-e9eb-4d1f-9995-3c1c759b77d8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96910,7 +100340,7 @@ } }, { - "id": "515e8cc9-f602-4bfd-a961-b278e198cb4d", + "id": "30609cec-75f6-4cb1-9254-f45729a4b68e", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -96952,7 +100382,7 @@ }, "response": [ { - "id": "207d39fe-6ad3-4294-949e-289568b9571f", + "id": "2b838e6d-af07-4ead-b558-23ffa05925d3", "name": "No content response.", "originalRequest": { "url": { @@ -96987,7 +100417,7 @@ "_postman_previewlanguage": "text" }, { - "id": "67e2207e-abc0-4a83-bf15-b0c9e3ac888e", + "id": "2f55d84f-af9d-4c7d-a5e8-f16c8212ef97", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97032,7 +100462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5900b830-726a-404c-8960-82ec2ac6d0f5", + "id": "0f548727-f9da-41de-b768-fa2560a06eaf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97077,7 +100507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "115b77e7-7933-42e2-8d20-174a7cf90a5b", + "id": "6b1da92b-e090-469d-ad4e-d653d423090a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97122,7 +100552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6e8ec9e-e6a9-4567-8164-af70505ae16d", + "id": "3488c980-b192-4830-af52-4c5ec976ab5c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -97167,7 +100597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c17366f4-cf12-4c60-a37c-696d1ac42ee9", + "id": "0843813e-8aba-44b3-a42b-3cf7b63d14e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97212,7 +100642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1661ce7-7bda-4091-936f-777687b34fc6", + "id": "abf80888-7d50-4c89-835c-54bf917100e4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97263,7 +100693,7 @@ } }, { - "id": "4074c51b-b8e0-4894-9da1-4e6f115a969e", + "id": "6511a6b8-7d2f-4162-9522-8fe2d16c7320", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -97306,7 +100736,7 @@ }, "response": [ { - "id": "bf8a8d63-2e28-4328-bbe8-6066eb6b89f9", + "id": "4a394ab4-b8a1-49d3-a22d-204aad0a60f7", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -97352,7 +100782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c236fc15-d463-4183-a786-3fae6fca3ad7", + "id": "7b4c0541-e11f-4142-a309-9274c6702428", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97398,7 +100828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8af6623-c94e-408f-b3ce-d40cf5b7bbd8", + "id": "4c762d02-85cf-4ac6-89e4-83343a98d977", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97444,7 +100874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22088603-a2a6-441a-b564-409c9bf1b95a", + "id": "affe42bc-57e8-4986-b774-792780ef1a79", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97490,7 +100920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25b83c31-2696-4df2-9832-3937c7b5c2f8", + "id": "8f14a9f6-58b3-44b4-87d8-29d0d6ec5030", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -97536,7 +100966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0480c2b2-7e8b-4343-9a3b-be8b3b439fb3", + "id": "e6751889-c302-40bf-807a-4d1119313f4b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97582,7 +101012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1162e7b-385f-4536-a75b-9f731553e40e", + "id": "9afde52a-1980-4d50-adf3-63d9c8955130", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97634,7 +101064,7 @@ } }, { - "id": "2ed6591b-b4ba-4316-b6d9-2551ed886ad1", + "id": "aaeb886f-774e-429c-bbeb-2768fc23a59f", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -97676,7 +101106,7 @@ }, "response": [ { - "id": "548788ce-6973-4e68-ab3e-432e57d4e614", + "id": "d176dbdc-21a2-4207-9be3-e08c7e686a31", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -97721,7 +101151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fc0dce4-ea25-4864-a039-f59a4ea9b654", + "id": "cd0be4fb-a2ef-4517-8a26-0bfb1ee06c15", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97766,7 +101196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e06faace-8ff3-4b85-a279-bd73516107e0", + "id": "9aa16f75-2e35-4c69-92cc-6ddc843af865", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97811,7 +101241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "477cedbe-4553-4053-b0a2-00cf9c310aed", + "id": "c7a5f595-bcbd-4c00-90cd-0327ebe62d35", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97856,7 +101286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "093343d2-44fc-4ee6-82e9-355d852c8d70", + "id": "07b8741d-8860-4b19-a25b-b7b7ea39494e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -97901,7 +101331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa98eb73-1b5a-4fe2-8b05-6b4991371f80", + "id": "f3705e22-8e4b-4174-be21-180f813d40bf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97946,7 +101376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb87eead-1ff6-46b1-a4db-e4e068b2d4c5", + "id": "d4cf12e2-e27c-485e-9ea9-dfec8474c20f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97997,7 +101427,7 @@ } }, { - "id": "1e8995fd-69e9-4dd5-acf3-f05ec72889f0", + "id": "7144360c-7684-4df2-b8f2-acf426c1b600", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -98039,7 +101469,7 @@ }, "response": [ { - "id": "a542a042-a73b-49b8-97ea-ab93aa085d28", + "id": "131e1e99-7fc8-451f-8e93-bb84781ef7a5", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -98084,7 +101514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d069bc97-de34-407a-8990-ec8c55e51a1c", + "id": "4e76ec47-f058-4925-8e31-e0eebe648fec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98129,7 +101559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f503815f-9e28-458c-9501-ac659379cfdb", + "id": "d1630543-3fd9-43f5-8546-bf27cf39e9d0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98174,7 +101604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73241a26-bdc4-463e-a25e-4132a3a803f2", + "id": "c85cb028-b354-4f0b-9cf2-e45cc5943c37", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98219,7 +101649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da978840-080b-4ba3-8f1e-f6c17904ff91", + "id": "a7f82f87-b7ca-4470-8e15-5f0176ed305c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -98264,7 +101694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db576318-4981-4ad3-8ee7-647dffaa88ef", + "id": "b848e0d9-be5c-4d8b-9864-a8abd0637ed7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98309,7 +101739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea652154-1a30-4b49-bdf1-cc53787439a0", + "id": "5030bf9f-bb3e-4546-88bd-e39959e1a8e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98360,7 +101790,7 @@ } }, { - "id": "551fa22c-a5fb-4f7a-a082-54a06cfa491e", + "id": "e5bf10b9-8523-475c-84f7-3a0cc33f1f5d", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -98403,7 +101833,7 @@ }, "response": [ { - "id": "c5b8d8f5-3a05-4eb4-91f8-3f27ea2e11a5", + "id": "06d641f9-8c58-43f9-81ee-b45800759e18", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -98460,7 +101890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60bb0611-594d-4768-8f86-9e47eaf757d5", + "id": "3d057e17-3cd6-44af-a3e0-71ad108dc8ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98517,7 +101947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b984b89d-b741-4ed8-8ef2-5450fb0cccc1", + "id": "ddf3179d-5847-4401-a49c-425850ef05a5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98574,7 +102004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6945831f-cd09-4d68-a27f-44103b4473a1", + "id": "4ec4b821-d76c-4565-ab1b-f510d9481ef0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98631,7 +102061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58f662df-ba6d-4bd5-b620-5499270caf49", + "id": "d7295b18-5129-4bf9-9422-8b9573a853ec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98688,7 +102118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6505c343-8d7a-4a0b-930b-9143227801c3", + "id": "f7f092c6-8c78-43f4-a41d-3fa9975e349d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98751,7 +102181,7 @@ } }, { - "id": "ac2d1ab8-5efe-4428-a835-fda4c12e4d64", + "id": "1f6f10c4-eee9-453d-abe2-1e0d89506264", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -98780,7 +102210,7 @@ }, "response": [ { - "id": "ebbafd2b-826e-44c3-8ee1-80e3640edfdb", + "id": "ef4ea860-8d20-47d5-9461-917c1e287ead", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -98823,7 +102253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b002e4c-5dfa-4718-8af4-aab4be40bf0c", + "id": "472b1d76-5add-48a1-83ac-adf122bd1449", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98866,7 +102296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0e59b71-4502-44c2-8e1e-09acbafb5884", + "id": "85f61e46-aab5-43f0-90fd-6d399fd72dc9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98909,7 +102339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c09503ed-442e-45d8-89af-938a91345f2c", + "id": "fbec10b8-dfc6-438e-94bd-7e73423f5749", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98952,7 +102382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc4ea9bd-17f2-4e68-a2c1-4e6643e04351", + "id": "78e69160-6ce9-4855-a65b-76578b494044", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98995,7 +102425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbd452c7-f82d-4203-97e2-7cb5555fb29a", + "id": "1fe3375d-6118-4de3-847c-4e84dee2f2f7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99044,7 +102474,7 @@ } }, { - "id": "bf779afa-864a-4a63-b823-6af2262a00f0", + "id": "bf7c8cc5-a2c3-4c8a-be00-d8d406f78f21", "name": "Download violation report", "request": { "name": "Download violation report", @@ -99086,7 +102516,7 @@ }, "response": [ { - "id": "7c44607a-dec6-46cc-ade4-d38a0584028b", + "id": "875692bf-34ce-4e41-a7eb-0262c6c7aa57", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -99126,12 +102556,12 @@ "value": "application/zip" } ], - "body": "minim cupidatat in", + "body": "nisi irure", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "711bf3dd-6732-4924-8e2f-4cf206afb301", + "id": "305e87d5-4458-4785-a811-ee2994a44e69", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99176,7 +102606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d7fbc50-960d-4f82-aa0d-4030d6140373", + "id": "eabf5a29-cae4-4aa1-b3ed-812fd8a64836", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99221,7 +102651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4eee315-9b3e-47be-b7cb-d66eee54e0dc", + "id": "5ee036a3-7b77-4e57-a02f-96f6bddf3a45", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99266,7 +102696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01b518a6-32a5-4b63-9e5a-caf410d7f21a", + "id": "a2418349-6bb8-4b3e-9dd3-1a6455f23f35", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -99311,7 +102741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5892e6a-de39-44f8-83f7-370fa7c5cde9", + "id": "2692ebe4-c22d-4bf0-98a8-d37e03c78997", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99356,7 +102786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8839e8c-2046-4564-b558-3ea8fa847efa", + "id": "b701b25f-1267-4bfb-91b9-66c5536b19d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99407,7 +102837,7 @@ } }, { - "id": "5c8dbbd8-0f08-43db-a875-871b61da2de3", + "id": "a15fa83c-02d6-47d4-948b-24d9e229350e", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -99460,7 +102890,7 @@ }, "response": [ { - "id": "8c31f2a8-4024-43f8-b2db-a95a015282d6", + "id": "bd8d2a27-69ba-4519-a228-1b8c6c0f749e", "name": "Returns the zip file with given custom name that contains the violation report file.", "originalRequest": { "url": { @@ -99501,12 +102931,12 @@ "value": "application/zip" } ], - "body": "minim cupidatat in", + "body": "nisi irure", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "87484e7e-eb14-4e9e-865c-e3e4f196be50", + "id": "7498645e-f269-4fe3-b9d2-b550b2f92c97", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99552,7 +102982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "136c8f03-e43f-428b-8f1a-31f1eee54772", + "id": "cf0aa493-2049-4b7a-84a5-98b320cbb9f3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99598,7 +103028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48eff1e2-27d9-4d3b-923d-a6da7f7e7c8a", + "id": "fbfdf321-f151-460d-9c7c-ca4e7eabfe32", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99644,7 +103074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fce00f6a-46cd-4f94-9558-556969c014a3", + "id": "4831efd6-ae33-4c07-9163-c2a872b4dabd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -99690,7 +103120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb81701a-25be-4278-a333-ce80c381e613", + "id": "7cacc35f-4372-4e7d-9746-2ee6e1ca7553", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99736,7 +103166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97b5732c-e3e0-46de-9b0c-03be0360f737", + "id": "fa7ad523-c958-490d-90d9-502d1444c138", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99794,7 +103224,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": "41a11f76-f348-4710-a0ec-eb6a6c7803dc", + "id": "2d0b8167-52b8-4019-8afc-7a1eb7b7d569", "name": "Predict SOD violations for identity.", "request": { "name": "Predict SOD violations for identity.", @@ -99837,7 +103267,7 @@ }, "response": [ { - "id": "25ad23ee-0e05-4a79-83cb-37da7431d68f", + "id": "2b36ce21-8489-40f3-ae7f-91bf35be6487", "name": "Violation Contexts", "originalRequest": { "url": { @@ -99894,7 +103324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae8d6bbb-d97c-4f13-8201-342beda2e5eb", + "id": "7b8057dd-8a1f-4488-94f6-7d63acabc3c4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99951,7 +103381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7be50266-5891-43d8-abe2-7c6acb85561d", + "id": "a88f6b89-0bd8-4e63-8e05-49f930fbcd74", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100008,7 +103438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0f87bea-c1bb-4343-9f38-571dce83e5f7", + "id": "463a1587-85bd-42b3-acfb-f4db9dbf276a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100065,7 +103495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68105052-2143-42f1-81f1-f8a440b8a2c7", + "id": "522a29fd-84a3-48e3-addf-15dd8a8a4c3d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100122,7 +103552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "692b8c31-0d49-4c24-96a5-3beaf748a0d2", + "id": "93b881d2-50a7-4b53-9b8b-09e07b661264", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100179,7 +103609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "549eb077-7d86-4cef-b93d-1aacd64fd35f", + "id": "d1b79aae-ca87-4ecb-89e9-2fd11118f0b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100242,7 +103672,7 @@ } }, { - "id": "a292b502-df85-476a-af33-c6462fa5a9dc", + "id": "fa241e84-73b1-484d-8c71-fbffccd7f4a0", "name": "Check SOD violations", "request": { "name": "Check SOD violations", @@ -100285,7 +103715,7 @@ }, "response": [ { - "id": "f8ca0184-412b-4123-8ddc-aa9bb8a09cb1", + "id": "b9c4e824-de44-410b-a95d-5a56c8a80b5d", "name": "Request ID with a timestamp.", "originalRequest": { "url": { @@ -100342,7 +103772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07d1d450-3b13-41e7-8e3d-fad1e3c6a135", + "id": "0673c551-2172-47d4-a8e4-752bf34d573d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100399,7 +103829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d917bb9-52e9-4eb0-a341-298b3e14d5cc", + "id": "f105b9bf-8246-4ce0-913c-d77ab72b7c06", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100456,7 +103886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5aab1b4-f3cb-4864-94bf-c2f6f656957d", + "id": "0f402b20-423a-4b2a-b69c-3e28553c892d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100513,7 +103943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a1ec566-66d4-478a-8b61-0b4f53afdc38", + "id": "4cdade1a-ee35-4fc2-8b6d-9956c343db78", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100570,7 +104000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a4c37aa-ef4d-4a5b-97cc-cc5b176fcd11", + "id": "85802629-635a-49bc-9180-531dcb3886a7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100627,7 +104057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cddc5b6-b93b-4342-b3fb-18fe424edb59", + "id": "74c49c7d-2700-492e-98d8-e50fed804e77", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100691,12 +104121,913 @@ } ] }, + { + "name": "Source Usages", + "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": "2a7e7208-c188-4426-b003-7a475628965c", + "name": "Finds status of source usage", + "request": { + "name": "Finds status of source usage", + "description": { + "content": "This API returns the status of the source usage insights setup by IDN source ID.", + "type": "text/plain" + }, + "url": { + "path": [ + "source-usages", + ":sourceId", + "status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "2c9180835d191a86015d28455b4a2329", + "key": "sourceId", + "disabled": true, + "description": { + "content": "(Required) ID of IDN source", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "95af93e6-e34f-4b3a-9b7a-aeaf50a58c7e", + "name": "Status of the source usage insights setup by IDN source ID.", + "originalRequest": { + "url": { + "path": [ + "source-usages", + ":sourceId", + "status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"status\": \"COMPLETE\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "9e1ea230-8ab0-436c-8ef8-8430d3196fbf", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "source-usages", + ":sourceId", + "status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "b4f4c2f2-b562-4b6c-9553-2ee64654a52a", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "source-usages", + ":sourceId", + "status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "750304e0-624a-41b1-9a15-d40ae16e1f10", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "source-usages", + ":sourceId", + "status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "669d738c-c66b-4c48-93df-61fd96088f13", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "source-usages", + ":sourceId", + "status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ba8edef9-741c-4719-9859-067cf3bb3bfd", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "source-usages", + ":sourceId", + "status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "914195c1-cb5d-4515-98dd-b5e151f294a9", + "name": "Returns source usage insights", + "request": { + "name": "Returns source usage insights", + "description": { + "content": "This API returns a summary of source usage insights for past 12 months.", + "type": "text/plain" + }, + "url": { + "path": [ + "source-usages", + ":sourceId", + "summaries" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", + "type": "text/plain" + }, + "key": "sorters", + "value": "-date" + } + ], + "variable": [ + { + "type": "any", + "value": "2c9180835d191a86015d28455b4a2329", + "key": "sourceId", + "disabled": true, + "description": { + "content": "(Required) ID of IDN source", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "81ca5636-b75c-4d27-89bc-1ec2677dee7d", + "name": "Summary of source usage insights for past 12 months.", + "originalRequest": { + "url": { + "path": [ + "source-usages", + ":sourceId", + "summaries" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", + "type": "text/plain" + }, + "key": "sorters", + "value": "-date" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"date\": \"2023-04-21\",\n \"count\": 10.45\n },\n {\n \"date\": \"2023-04-21\",\n \"count\": 10.45\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "c737ef5e-2217-410e-b0ba-9bde6b0b00f8", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "source-usages", + ":sourceId", + "summaries" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", + "type": "text/plain" + }, + "key": "sorters", + "value": "-date" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "c8eed0f2-6fcf-4bc8-979e-ea73c9c68f3f", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "source-usages", + ":sourceId", + "summaries" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", + "type": "text/plain" + }, + "key": "sorters", + "value": "-date" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "4619c00d-c4f3-43bf-8621-8979f9aebb91", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "source-usages", + ":sourceId", + "summaries" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", + "type": "text/plain" + }, + "key": "sorters", + "value": "-date" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1f770138-c262-47b9-ac75-810a10425a4f", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "source-usages", + ":sourceId", + "summaries" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", + "type": "text/plain" + }, + "key": "sorters", + "value": "-date" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "c828a4bd-46fa-42ce-8bf5-e8c21dfe4fbe", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "source-usages", + ":sourceId", + "summaries" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", + "type": "text/plain" + }, + "key": "sorters", + "value": "-date" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + } + ] + }, { "name": "Sources", "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": "77828b2f-fdad-440e-b5f3-7d18633a5c2a", + "id": "2e20a6b5-404a-4b69-9e82-12c6f57f9c94", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -100780,7 +105111,7 @@ }, "response": [ { - "id": "2604da31-1ea2-4f22-a068-eeacc7a5695a", + "id": "0ff46a69-1935-4022-9f17-d6499248a963", "name": "List of Source objects", "originalRequest": { "url": { @@ -100878,7 +105209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90ce3176-a78d-41e4-8d62-b336a5eef49d", + "id": "f9b9fcb8-1e05-4055-a9e2-09328487c210", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100976,7 +105307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0230bd7d-b17d-4088-abb8-27900950a6d2", + "id": "05be0f0c-0442-415c-9944-c957e486ee1a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101074,7 +105405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e07fb403-f308-41f4-bb6c-58d10c3f8660", + "id": "cfedda53-1663-4d0c-974d-36cc8ef60353", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101172,7 +105503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db05996d-da58-4f8e-b33b-2af8f01d4c7a", + "id": "4a00db7a-9d8b-4d47-84e9-f531d3a92b39", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -101270,7 +105601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f893c79-79e9-48e1-82d6-294275940af8", + "id": "f1b148d3-1114-4d1c-ad21-519ff922acd1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101368,7 +105699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05a8d350-dd1f-4a05-9110-6b0127edf7c5", + "id": "5b8bad0d-754e-4010-859f-c49d515b60d1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101472,7 +105803,7 @@ } }, { - "id": "6b54c877-b523-4ed8-8f59-7eeb34c7a34f", + "id": "d8466aef-c351-4891-8958-012305003ba0", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -101524,7 +105855,7 @@ }, "response": [ { - "id": "ff423a9d-f243-49c2-87a8-1c449ca80975", + "id": "8ad70fdc-e092-48c6-a335-b27c88bbcaee", "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": { @@ -101590,7 +105921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "067e395d-fbd4-4d23-9f3c-bec263ded089", + "id": "79c5235a-7d65-46d8-90c8-e3e851e64d81", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101656,7 +105987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "160a165d-910f-4399-a173-6252585dd8bd", + "id": "9e800148-0f23-41b4-9caa-6bcaf171426d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101722,7 +106053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "897eba41-16aa-40c9-8cd1-5f2d62d2d856", + "id": "be4e76c8-4f71-44c6-8a33-0f29672adc17", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101788,7 +106119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ca31b80-cd03-4b56-8e8f-b3498846a699", + "id": "0610cbbe-9224-48ec-b534-96e8424839f8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101854,7 +106185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "949a8b66-ad69-4991-92d6-a9a19e1b4177", + "id": "c6644932-913c-47f8-bce1-22346184bf3d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101926,7 +106257,7 @@ } }, { - "id": "6772e575-5b40-4ac4-b999-03f2f18c747b", + "id": "27beadb1-9e4c-410b-a157-be08f4f34b91", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -101967,7 +106298,7 @@ }, "response": [ { - "id": "5827ae3a-4ba1-4a4c-a17e-2aa7fcc0a8d3", + "id": "b2326e83-5a23-440e-be53-1faa0fd43509", "name": "A Source object", "originalRequest": { "url": { @@ -102011,7 +106342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b37bccb0-f84a-414c-9c81-bda80e4e3bb3", + "id": "0e925a3f-85a8-495b-b11a-c545b3b1421a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102055,7 +106386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1abb5f37-1bed-404a-95f0-ed773284759d", + "id": "423d6439-11d7-447d-8996-0fe958149ff9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102099,7 +106430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0bc9d94-d73c-46aa-b382-088d17554af1", + "id": "75c87acc-d34c-4cbf-a1a3-2a1b0e19473a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102143,7 +106474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2bff1e8-9334-4045-85eb-cccbb978bb52", + "id": "11bfb5d6-9ccc-4fcb-971d-a9c145c01937", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -102187,7 +106518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e8a288f-4c0d-413d-b13c-0b8b586fdea7", + "id": "8ff29171-248e-413d-bc99-46937c1a49b3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102231,7 +106562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15b106d3-3c9e-474e-b52a-b60e7a5e074f", + "id": "b3f83034-744e-439a-9b8b-c29c46aff5ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102281,7 +106612,7 @@ } }, { - "id": "ef537f46-6e0d-4aa1-835b-b5a493167dcb", + "id": "3fb8cb16-7ec9-48a8-8d1c-9dea308e1341", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -102335,7 +106666,7 @@ }, "response": [ { - "id": "4cc44015-4081-431c-ba2b-b18202b8c988", + "id": "4143a0e3-7a0a-4a8f-b809-660fa67d0f88", "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": { @@ -102392,7 +106723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ab93f4c-f80c-4cf3-a79f-6291acee762d", + "id": "9af256cb-9cc6-4ba1-a44e-949d14d4daa6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102449,7 +106780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae5d9e39-b310-44bd-ba42-bac10d94e680", + "id": "29b9715e-3801-4a78-97bc-31c78b2f38f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102506,7 +106837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1072f06-d7ab-442b-85ad-e23788730192", + "id": "e16ec665-e17d-42a1-80b4-78a20bcef092", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102563,7 +106894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8d54746-07e7-4684-aa1b-a917b92499b7", + "id": "63ebea8d-c208-4e84-85a8-165530a60f65", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -102620,7 +106951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "948f248e-799d-4e51-8dca-fb72f113b1fc", + "id": "0eeffab2-482a-4615-a40e-6b8cec7e9aa1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102677,7 +107008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d61bcfcf-37bb-4032-8bce-0cf61e30df2f", + "id": "214d7cc3-ba0e-473e-9c15-acfb2236041e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102740,7 +107071,7 @@ } }, { - "id": "4f6fe5dc-c55f-4a44-9261-a0f80c9600e8", + "id": "2560d403-89bd-4915-ac9c-853da007e59e", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -102794,7 +107125,7 @@ }, "response": [ { - "id": "e9eaebd3-e932-412b-a3eb-95706cade0f3", + "id": "58778cec-1c38-4758-a552-6dd0fb637cfd", "name": "Edit the source description", "originalRequest": { "url": { @@ -102851,7 +107182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a9e7ad1-5bd3-4490-a754-eca598a9ef7e", + "id": "7b30b8c5-820f-4b61-8022-15471255584a", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -102908,7 +107239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a15a1d97-90a4-4d93-9d6b-aaa8762cc07c", + "id": "36f959d2-88a3-4197-b1e3-c57359a72cac", "name": "Edit source features", "originalRequest": { "url": { @@ -102965,7 +107296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98dc0222-e8cb-409d-94b2-c3202510d014", + "id": "e5ae4406-34dd-41f9-809f-4e9649543a93", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -103022,7 +107353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "000c5ab7-5a20-49fe-9848-db43997e9f78", + "id": "e0231281-9460-4388-9f9d-20c2910ee716", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -103079,7 +107410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b890b06e-fcc5-4ce3-9a93-dedc89a7d82c", + "id": "86e1c928-64b7-4d65-8d0c-cfe856f3f743", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -103136,7 +107467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dd852df-e45c-4031-8f6b-63abde8af0ed", + "id": "6040f4a2-0ba8-4365-bdee-dc85fbc6c85a", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -103193,7 +107524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3d40094-7d3a-4229-8c4b-eed564c2e31f", + "id": "834f8290-5a8e-4286-9f05-d4721133f642", "name": "Edit source features", "originalRequest": { "url": { @@ -103250,7 +107581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e05391c-1bc9-4e09-918e-977a737b4118", + "id": "5c842205-e2e7-4cb2-b4c2-f93b8b7538c4", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -103307,7 +107638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d1bdc35-2fd1-4d9a-9023-036fb1fa15d2", + "id": "5442cce5-a4ca-49f8-a1dd-524a531552f5", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -103364,7 +107695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef7b7310-0a23-40ca-b872-0e724bd7ff03", + "id": "c8682359-7ed2-4dde-b849-30d66c1483a4", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -103421,7 +107752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7223e69a-c7fc-4c93-b66c-3f50806a0714", + "id": "c253f684-aa74-4ff9-bce4-e8e6322db07d", "name": "Edit source features", "originalRequest": { "url": { @@ -103478,7 +107809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bc1c0b8-af36-40e9-94ca-9be3be14f60b", + "id": "375dd233-d2e3-49e4-918d-93ec9e5c978f", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -103535,7 +107866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48a01bf5-4d61-43b9-89e8-d5e573c31bc8", + "id": "1fd7ed83-5883-4923-a63b-2ecd5fbb0c6c", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -103592,7 +107923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb6c2975-22f8-4a5a-8643-790d9249af0d", + "id": "37821b22-c720-4528-8e34-8ca52d7f6461", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -103649,7 +107980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44ecabb7-5936-4880-8094-2e9d55b98b4f", + "id": "83e45062-d314-44cf-b081-ca0e684f100e", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -103706,7 +108037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e2fca56-48fc-434a-ae57-8512fcfbc7c5", + "id": "118aa3de-f8f4-4449-aa69-cbd3a4d06675", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -103763,7 +108094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2995cbb-e0c9-4b60-8928-5c2ad8e95d55", + "id": "fe7bdf61-2aef-44fc-9c2b-04fe353cb8c5", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -103820,7 +108151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "948f8fe7-86b5-4df5-9092-fac97d6036aa", + "id": "a49e4e88-6d9b-4e25-b28b-ea520a6e61e8", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -103877,7 +108208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75c54d1f-d64f-4998-aad1-171252c52b0e", + "id": "3b35bb78-101b-489d-9d99-2a0312d12240", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -103934,7 +108265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8871747c-8c31-46cc-bc91-7f3cd665d94e", + "id": "1d704a27-ed41-4b1e-8dde-373b29b70a56", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -103991,7 +108322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44e3987a-4bde-4c4c-a2c5-15cc96fcf460", + "id": "34683ee4-5dc1-4868-82d5-e46feca025a7", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -104054,7 +108385,7 @@ } }, { - "id": "e92825da-1699-43da-8b5d-72ee321ea381", + "id": "5c69deb3-0a1c-45e6-9c4f-9f35b9226bc7", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -104095,7 +108426,7 @@ }, "response": [ { - "id": "e1025687-7fd6-4ef1-bf19-0b9789ac00f2", + "id": "82685bfb-7120-4ee4-932b-2b7b876f0ad1", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -104139,7 +108470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6e4ea76-d685-4ac1-8497-1cc0077d204e", + "id": "044342ec-533c-4716-9ad8-b5fc0a64fbe1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104183,7 +108514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48d44488-2793-4ac7-a068-b75da230cf1f", + "id": "3eb844f5-fd38-4b9f-8f18-7042211a2056", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104227,7 +108558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "753d9b4f-315b-4756-a5c2-787f70298fe2", + "id": "1650638d-49ba-4203-b5e6-5ae04fce6820", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104271,7 +108602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a36b1bb-c4dc-4db4-846d-891e732678f3", + "id": "83852326-c3f8-416e-b235-3c9eac731e0c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -104315,7 +108646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53ac1d6c-dfe1-4820-b737-77a368b25f5f", + "id": "33e36e07-03fc-4159-8a32-fdae82a4c329", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104359,7 +108690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12d35527-a628-4e7c-8dd4-4bec1ccf0e31", + "id": "d8dccaab-3c92-42a0-9748-2f3a6c764782", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104409,7 +108740,7 @@ } }, { - "id": "b5695e9e-0164-4b39-a357-9d36b8e1bed2", + "id": "30512356-abd1-4539-936b-825c7ec8ce1e", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -104451,7 +108782,7 @@ }, "response": [ { - "id": "e927ed20-82b4-4c30-aa63-7b15faf0a899", + "id": "84788bb6-e02f-4ad4-8c17-fc0889b51ade", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -104496,7 +108827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30a20265-f667-4329-92a6-12ae9d05c0d9", + "id": "f7c4dc6d-9dee-4fc1-9096-7afcfdeff059", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104541,7 +108872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af4fedb7-977e-4ea4-939b-01981ce553d7", + "id": "369b3446-523d-459f-9303-2c74a8256fdb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104586,7 +108917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a8d478e-1dde-4b3d-a699-ea0afeb06f05", + "id": "ecaeff3b-d2f5-4881-9b88-d04c1952b8e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104631,7 +108962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbd48ec0-79d6-41a9-813a-47e35e808e6e", + "id": "7cf3d9e1-4030-4f4e-a69d-a5233007cb13", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -104676,7 +109007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1683af6c-2c82-493c-b375-f2b2b6a45fb1", + "id": "7259fd46-88c6-40f4-959e-47a89a9d7f3d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104721,7 +109052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e476b4a-3208-4571-938b-e6b1681dcb72", + "id": "5c2c7bd0-d891-4c66-8f06-78cba09e383a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104772,7 +109103,7 @@ } }, { - "id": "77eb66f3-8e63-40ec-aebc-fe38e46a5014", + "id": "6fe389ee-2280-40a3-81de-6729d5ae5051", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -104827,7 +109158,7 @@ }, "response": [ { - "id": "1e46928f-f206-4c91-b615-a3aa00e81aed", + "id": "446d1a3b-6523-4a2c-82dd-184a613748ef", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -104885,7 +109216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ce8ca86-3757-489a-a78f-c9469781aec8", + "id": "416a9dea-d0bb-44b6-ad76-73afcbb26ceb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104943,7 +109274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9154d8d-4762-41ad-9f2d-ef3b81ad25f1", + "id": "4455d8aa-aa82-46fb-9a6b-ad65d4668c26", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105001,7 +109332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08242f7d-adaf-4f6d-8918-c89b70d228c0", + "id": "2e578df5-3327-4c8b-a16e-9112054f19e6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105059,7 +109390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa76562f-d0d4-4c62-aff5-9b95e4f7071d", + "id": "ac087fab-0d44-456d-9ed9-5a922e66cf1b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -105117,7 +109448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8265c191-12b9-4a3d-8c87-680cdbe547ff", + "id": "362d2276-117e-4a80-a030-b3d9ff2d98b1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105175,7 +109506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "612d5f3b-00b1-42c9-95da-537321e9bea7", + "id": "044d08f3-7da1-48ed-98cf-652b3771d47c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105239,7 +109570,7 @@ } }, { - "id": "e8d86d22-9766-4a5f-8ac4-9aca400bc668", + "id": "7d876d43-9cad-45b3-b0f1-07047c4f23a0", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -105292,7 +109623,7 @@ }, "response": [ { - "id": "47a64dc9-9d86-4bcd-9a6b-6a6102ad72d6", + "id": "5d045fd1-6aff-4c0d-b809-2c346c84624a", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -105338,7 +109669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de27f43e-f193-44f4-8462-eaa08fcb0eed", + "id": "105f6399-1643-4cd3-b08d-6b293668cdc9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105384,7 +109715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21be333c-ba49-4a41-9875-6517e4dc4a31", + "id": "8ab92f8c-e645-42f1-b668-999828d9bb7c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105430,7 +109761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83fad4d4-f63d-48b1-973e-c7ce986d63a0", + "id": "648c4f6d-0663-40de-aff5-87c05b7dff6b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105476,7 +109807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5aafe311-08cf-4011-8e58-538683743fc7", + "id": "b9c7ff44-a78b-4985-8f1b-96e9149e0369", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -105522,7 +109853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60bf91cf-3e8c-4248-b07f-14af90560dde", + "id": "1d6d130a-10ce-41dc-a5b9-843129948c39", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105568,7 +109899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "114b920b-3632-4f75-a745-40369c69e778", + "id": "d3c143e8-121f-42c3-b2a3-0ecc21c960a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105620,7 +109951,7 @@ } }, { - "id": "c05db0ef-1964-432d-91ff-b9a8355f97ca", + "id": "72a8b9e6-a871-4ee6-aa02-eeaa80a29d08", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -105686,7 +110017,7 @@ }, "response": [ { - "id": "730957cd-87d8-44d7-bd2c-1b67df03fe35", + "id": "3d511a84-143b-4375-91c9-20c790d2097e", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -105745,7 +110076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07007572-9ea4-4901-9ca7-2c48e60137f3", + "id": "264f76f1-7c0d-41d3-91d6-298ebfe8c5dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105804,7 +110135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2b62625-3d45-4428-989b-e2ef3f38da0d", + "id": "93c67c4c-b7c3-42f6-900a-6e998ffad11a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105863,7 +110194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cea0d666-6093-42a0-b19d-cab8c78aa5ed", + "id": "9726d8d0-2703-48c7-bcd2-e7d1c617da62", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105922,7 +110253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3a82efb-d7d3-408d-8510-13010b3358d8", + "id": "5b1de545-ad84-4d79-a939-655ddd80a284", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -105981,7 +110312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76ded024-f885-41fe-806f-ccab8c10eaea", + "id": "3ce38207-2c4b-4308-a878-178304982c40", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106040,7 +110371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1aba397b-d8bc-47db-a3b0-457b4d699240", + "id": "92ec0bde-7ebb-40a2-99c3-4b4efa200d80", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106105,7 +110436,7 @@ } }, { - "id": "b04cc5ed-db9c-40eb-ab4d-3d910602f7c0", + "id": "9096f325-ba1c-4dad-9e4f-05ebf3472498", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -106171,7 +110502,7 @@ }, "response": [ { - "id": "ec40897d-ff30-43ef-9a04-764c383dd4cd", + "id": "3cab326c-9817-4842-b02c-eca37edcfc07", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -106230,7 +110561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17d3bf2e-cfc7-4490-ba23-636d7328ac0a", + "id": "40361937-f032-4232-8046-ca365c7281ea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106289,7 +110620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ccd6df6-e4b5-4e3c-8cc8-6e084adeaed0", + "id": "bc6d32cc-8d00-46f3-b2a7-9f0a22803f75", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106348,7 +110679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cf2df71-16f0-4ac9-b6a5-6a1ce52718af", + "id": "6b43bacc-6b23-421a-a273-cfecc296b34f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106407,7 +110738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bf6767f-1cd0-4edd-a327-8296716b2971", + "id": "d5655551-65a4-4624-92aa-3a1b93b56178", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106466,7 +110797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "516ff7d3-bb56-40f7-94dd-04d2519ee5b4", + "id": "52f15635-cc6b-435c-ab86-cf8396cd9c19", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106525,7 +110856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec21e0d1-a5a7-48f7-9cf4-91b5b90debb9", + "id": "af2917e3-3528-4db9-8ee9-c566ecdebe40", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106590,7 +110921,7 @@ } }, { - "id": "c20c9026-6555-4fba-956f-1b8502670a08", + "id": "44090992-f1a5-48ca-b0d6-fe032ad8e2da", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -106643,7 +110974,7 @@ }, "response": [ { - "id": "356ad7a6-f80f-4b56-89e5-ad4c375a4e77", + "id": "75df8d1c-251f-4269-b789-1b1f1e80b702", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -106679,7 +111010,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a31ed1dd-5349-4467-b503-ce67b7d48ef8", + "id": "0c63b7e1-9060-44da-8448-f5cd1939f1b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106725,7 +111056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acb042d6-f428-4d18-a793-844f5ae3b296", + "id": "3cebbb7c-c3e8-4a93-a098-bf5c6feed1ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106771,7 +111102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85069296-8e9c-43e6-adff-33364217561e", + "id": "b694f22c-2097-48fa-98a0-4bec5e41d511", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106817,7 +111148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6beed280-6009-4415-8ea7-a48331820abc", + "id": "6ed28d94-631e-4d8e-995d-5c900d43377e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106863,7 +111194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55e58aff-2403-414b-9fac-fc975787d398", + "id": "b749730b-c82f-407d-a4e3-5ef9cb89013e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106909,7 +111240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "133769d6-e8a4-401d-a91a-36bde9d125ec", + "id": "8d0bb4f9-2444-4b19-a708-2ee88f59e714", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106961,7 +111292,7 @@ } }, { - "id": "0d02a343-87cb-49a0-966c-478e479276e6", + "id": "1ccdc57c-4f42-4d88-8925-aeb4f6d4b4af", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -107017,7 +111348,7 @@ }, "response": [ { - "id": "2aaf9ae3-c4c3-4b18-a49e-d760cf97e3b6", + "id": "6c470b0b-e153-4f5d-b785-c0c366ba14cd", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -107076,7 +111407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b719a419-5117-4404-99ab-ba4d1d27247c", + "id": "fc5f617d-2abc-4d83-9b4e-6a829c873d61", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107135,7 +111466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81cfa8db-4d7f-4166-9ba2-8e45f7a76f6c", + "id": "d3876a23-6f77-427f-8c89-9ce636771b8a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107194,7 +111525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e3584c2-d294-4fdd-8229-af1f67dffe1b", + "id": "9ba80818-9e88-419a-8976-01a5d5484861", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107253,7 +111584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59da82e0-500f-447d-8590-0fc5f0834b6b", + "id": "28fc55bb-8d8f-4b13-8b8c-315f6711a0b9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -107312,7 +111643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71ae7015-eff5-4f51-976f-45e2668dd2f1", + "id": "0b611f07-f644-4e13-96bb-7ae12d81b090", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107371,7 +111702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1956c2b7-b1e1-4197-97b4-dbc6dc6ef6a6", + "id": "df527052-a3aa-4da8-be6f-4a8d92d02256", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107436,7 +111767,7 @@ } }, { - "id": "9c1af143-0d59-49ff-9892-a205f161af0c", + "id": "ef44df5f-de59-4122-ac75-524662f16312", "name": "List Schemas on a Source", "request": { "name": "List Schemas on a Source", @@ -107488,7 +111819,7 @@ }, "response": [ { - "id": "3f5e820c-dfe6-4d86-bc39-8faf7596ad84", + "id": "f1fe7681-c80e-4aac-bf30-5c6a326ac727", "name": "The Schemas were successfully retrieved.", "originalRequest": { "url": { @@ -107543,7 +111874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43b4a28f-a7fb-4e5d-b63f-1a24b98c0276", + "id": "cdbf7378-17c1-4518-9060-d6e9a2a4a336", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107598,7 +111929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18b52c5f-737a-4349-8d8c-b26810dc754e", + "id": "97ebb982-26b4-4764-a731-b51b58b93b0d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107653,7 +111984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1fda8d1-a7dd-4ac5-93e0-93e1b7035df2", + "id": "255a0b12-c09d-4f93-9dd0-a6e70aa408e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107708,7 +112039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "299bb6de-1dc3-4e6f-8773-38213346d6e5", + "id": "5692f07b-2b46-4122-a8cd-085528c23901", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -107763,7 +112094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f35672b0-77a7-4224-87b2-32b4f2d864b0", + "id": "0ad5c5e0-9988-45d5-9181-73c5e558c8b0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107818,7 +112149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c1c433e-ff80-4eef-bdea-72a8808cf7c2", + "id": "28f216a3-fdfe-4732-8c44-bd358aaf2383", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107879,7 +112210,7 @@ } }, { - "id": "036fa049-7699-4e1e-8c49-8a8268b8b6e0", + "id": "92c2ce11-352a-449b-b8e6-23d0941618f1", "name": "Create Schema on a Source", "request": { "name": "Create Schema on a Source", @@ -107934,7 +112265,7 @@ }, "response": [ { - "id": "000be9d5-08b5-432c-bf6c-ad785ec6eb0e", + "id": "9dc0e95e-1795-42f5-a1c5-1ad5dfd155ab", "name": "The Schema was successfully created on the specified Source.", "originalRequest": { "url": { @@ -107992,7 +112323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7fff2f9-7964-408e-8040-b271348e8ea2", + "id": "dfa1c7fe-993a-4249-abea-e97c3a72c72f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108050,7 +112381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c037427-dce3-4bc0-9e39-4cbf22b67a54", + "id": "be28b3d0-7b21-4543-acfc-0345aa2e42ba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108108,7 +112439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a4748c9-c221-49b5-bae5-7ba4ffe6fb82", + "id": "2d8eb667-cc4c-4b72-b7ef-28716eee5d55", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108166,7 +112497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cab12bea-3ecb-4e55-b47e-7a171a3d4930", + "id": "c0e35801-30ff-4b99-a6e2-dea072b8f037", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108224,7 +112555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11466247-d7ea-4cf1-a3f9-bbb3708825dc", + "id": "29d7254d-ef48-4eb5-905d-bcedbdb8373d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108288,7 +112619,7 @@ } }, { - "id": "9a5115db-bee7-4e13-9ae7-8e998e301938", + "id": "c43f52f1-ae40-4c67-8e42-4581dcae0052", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -108341,7 +112672,7 @@ }, "response": [ { - "id": "e6e390ce-0f58-4061-a4c5-80bf311768c7", + "id": "8789c8a6-dcbe-4579-827f-86e1d8e1334b", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -108387,7 +112718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7782f532-3a60-428d-9608-d7d41af8be7d", + "id": "95020aa1-9b3f-454b-994b-3cb358623daa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108433,7 +112764,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74e0a1cd-f641-4665-9a93-8149aec4534b", + "id": "52e97344-dcb7-499e-8e2c-202a56c89b68", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108479,7 +112810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5af762a4-7f36-4d5a-b386-ba7000dc01b0", + "id": "beef9566-e9c8-4b16-902a-4f617f90d913", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108525,7 +112856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65ec8162-dbf9-4d0b-a56c-5e3448e58210", + "id": "4ef864a7-84ae-4dcd-af2f-c7fa351f5dfb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -108571,7 +112902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30cdfa12-277b-43d0-a5d9-86cdeefc3828", + "id": "ebdf21d0-b5fb-4307-b05a-3f6b5d23e652", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108617,7 +112948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f38af2b-db34-4e46-9697-fcc9d2c87c10", + "id": "fdee6d65-f0aa-4c18-a963-063d44e9eec5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108669,7 +113000,7 @@ } }, { - "id": "aa42d8e0-740e-4d96-b2ea-84753c9667c8", + "id": "523db6ef-ccf6-4079-ba0c-d0f813f08281", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -108735,7 +113066,7 @@ }, "response": [ { - "id": "adcac3af-e0a5-4903-a503-f5024ddf2d04", + "id": "f4ebdb2f-c9eb-46e5-8a76-d096f221d60d", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -108794,7 +113125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4761ecc-1b97-4c06-a857-b552bc7a2b8c", + "id": "13220586-52ec-42dd-ad53-d7775a189cee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108853,7 +113184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d04f9a2c-b370-44a1-a8bf-a4325ef1979d", + "id": "7227e89e-7db6-4211-bad0-6d584b41e711", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108912,7 +113243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ad6bbf4-bd3f-4ef5-aeab-43f9088e9e4c", + "id": "5c8e64ac-b9f4-4e3b-9580-017504eac5ae", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108971,7 +113302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fb0844c-7643-4c1d-8962-7716e5077063", + "id": "757663cc-f45d-45e1-82c2-51a281ba289b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -109030,7 +113361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbd7094a-f486-406d-ba5e-5f182fce0707", + "id": "65efb15c-d519-48ee-872d-73689675cba4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109089,7 +113420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "407b2fdc-7084-4522-9b44-228b03fa54a5", + "id": "8e171735-7309-47b0-9824-b6d201b0ef21", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109154,7 +113485,7 @@ } }, { - "id": "6a68ec26-d810-4e68-9b4f-30ccfa99613e", + "id": "eb9eca9e-c293-4761-99e1-5d263d74752e", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -109220,7 +113551,7 @@ }, "response": [ { - "id": "32fc3ad9-b072-4011-a550-1fd8f2a809a4", + "id": "b7399517-ed32-47bd-8269-61db8a4c0672", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -109279,7 +113610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "661f96bd-1d9c-4c26-b2ba-70bb659c1a0e", + "id": "12b2077e-88a6-4c80-b085-0b3deea288ad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109338,7 +113669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "348ba562-ac69-410d-ba0e-a638cb281ad9", + "id": "67dcd00d-65e3-4868-b9db-152bcf223195", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109397,7 +113728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f181d68-2c1b-49a6-b845-f014b3620f63", + "id": "41bb46c0-55a8-4688-83cd-c7ca437bc25a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109456,7 +113787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c25e72f-33ae-41f5-87c7-704a3631bdeb", + "id": "8d34c773-3b23-4a7b-928c-c361ee3ca012", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -109515,7 +113846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75e4c462-36dc-4aec-b93d-1da5903497f4", + "id": "7bc3f540-bc87-41ce-9e8d-23db8a5377bd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109574,7 +113905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a83ed12f-784e-4189-81f3-32f46cc902de", + "id": "000d603f-da7f-449e-97b4-e70ff8da877a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109639,7 +113970,7 @@ } }, { - "id": "10a909bc-5ac3-42ee-9aca-954ff09bd237", + "id": "e33ba2fa-6130-4ccc-9ede-38568e37ad37", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -109689,7 +114020,7 @@ }, "response": [ { - "id": "cc34b80a-a6a3-492d-a901-0b5500fd2e9b", + "id": "55a08899-bd66-41c4-8d9b-035f174a66a2", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -109725,7 +114056,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8e4ec999-b9be-4b31-b7e0-0ba732a8349f", + "id": "7646f5a8-aa98-43e6-8d0e-3e0fdec938f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109771,7 +114102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1bcccd5-6c2b-4bc2-a49d-b0934a10d832", + "id": "5bc7ad36-69e4-44af-816c-d40ecf8e3354", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109817,7 +114148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd7bd688-1351-4713-8599-88de930264ec", + "id": "ebb8ba25-bcdd-48a1-8be0-b0d28a968c3c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109863,7 +114194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaa66e96-4006-456f-9ba5-3d39991db449", + "id": "0c750cef-6759-44d2-b3d3-ca13fdb2cb6c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -109909,7 +114240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fcdf660-7b63-4a61-b2d5-ec870dc8127c", + "id": "b99ed74f-91ac-4a09-a07b-6930ef9e37fa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109955,7 +114286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f274e5e-0722-4ce8-aad7-e4f9f19487bc", + "id": "7f7d43be-5c1f-4d99-b221-f20404d42c22", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110007,7 +114338,7 @@ } }, { - "id": "e7e6d949-313a-4d8c-b1a7-966b7ebf471f", + "id": "94a57e21-fabb-435b-9d30-13b402c4f0a3", "name": "Fetches source health by id", "request": { "name": "Fetches source health by id", @@ -110049,7 +114380,7 @@ }, "response": [ { - "id": "33b97eac-08b3-44f4-99d2-3b48626e1128", + "id": "825910d2-9b61-44ea-914c-e9d8233b93ee", "name": "Fetched source health successfully", "originalRequest": { "url": { @@ -110094,7 +114425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efb39ab2-0bc1-43a1-b082-6c718f940640", + "id": "85402570-5796-4a61-a46a-b3247fb13dac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110139,7 +114470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "159a469d-ef35-4e48-9f56-fbf89e179cf3", + "id": "8155b467-8ba6-40bf-a18e-e26cb9e4227c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110184,7 +114515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05de12c6-e4e2-4708-82da-e9f568dd05c0", + "id": "e7ecd256-b851-43da-b175-052fa1a799dc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110229,7 +114560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48a9a421-afd5-413c-bd96-bf44eabbdce9", + "id": "23ec031f-3358-4fcf-a9b2-8c5e1823c35b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110274,7 +114605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f185f18e-10e9-49cc-9bc9-ce1afda09a63", + "id": "2af420a2-ec6c-4939-a75a-a9771d5ad9aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110319,7 +114650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7df738a-8f2d-4648-b34d-799cd67fbeb5", + "id": "8c22f963-a94e-472f-b6d6-54e5215576ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110370,7 +114701,7 @@ } }, { - "id": "ed1aeecd-25d5-430e-97b6-622401ecc7c2", + "id": "dfc4916b-0690-4d8b-9369-9ef89108dfe7", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -110413,7 +114744,7 @@ }, "response": [ { - "id": "47a25de0-a5a7-4905-ba49-74ecbf0ee673", + "id": "87ca0acc-f9a2-47de-bf93-4ddb333225ab", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -110459,7 +114790,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bc8ccb85-bbc2-4260-a92a-12daf23cc01a", + "id": "7a6794e3-3ec2-40af-8321-bceaca4a45d3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110505,7 +114836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "545ee155-4058-43c7-b7fd-4943d9bc5550", + "id": "93cec0d8-1eb9-4649-95b4-20a26c72b5ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110551,7 +114882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8997c64f-b5c2-4df7-8f6d-e5b5a4f9e5f0", + "id": "a65643fc-62c7-4333-868b-8e9ec89ded1b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110597,7 +114928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b23a5e8a-80e8-41b4-b032-b467bc0bf2ed", + "id": "7910c3b2-1934-4ac4-9514-7905b59da5f3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110643,7 +114974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "787dd071-266e-4899-bc93-258a4a1d57c7", + "id": "2d3f9c04-538d-4336-93e4-5556da4e55ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110689,7 +115020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b747d43-5087-41d2-8208-346754a2cbc5", + "id": "fb6f1377-3908-4d06-8a1f-bce495858188", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110741,7 +115072,7 @@ } }, { - "id": "c4aaa31a-bc1d-4534-826f-7776a4e2b7cd", + "id": "ed90ac0f-c8a4-4bc4-b973-f1b119a5c794", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -110793,7 +115124,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -110801,7 +115132,7 @@ }, "response": [ { - "id": "3b30c699-d013-4976-a03e-850e51e4c081", + "id": "4e7348ee-7dcb-4fec-bbdd-16d45f0ac730", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -110845,7 +115176,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -110864,7 +115195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0c6546b-33a8-4f89-b717-955df388738a", + "id": "f2a878e2-2d37-42c9-9634-b7f578885a50", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110908,7 +115239,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -110927,7 +115258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b20a293e-314f-470c-8d94-0eed734a9634", + "id": "0452b1a4-c9f1-4ebb-a811-e2178bb475d0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110971,7 +115302,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -110990,7 +115321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98774289-571b-4e70-b547-f08930540ea9", + "id": "c47e7bd4-0f93-4d55-8cdf-ad4bbb171910", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111034,7 +115365,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -111053,7 +115384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c8163a4-ce74-4a93-bca6-4d46d74a0718", + "id": "6773f695-9a4b-4fea-a5a9-7b74e6916f0c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111097,7 +115428,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -111116,7 +115447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8e97812-5c50-453e-8d99-a2634fc4e754", + "id": "871fbcca-c847-41e0-9319-d574ce62d1ca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111160,7 +115491,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -111185,7 +115516,7 @@ } }, { - "id": "191c75a0-d9b7-46fe-9ba6-7a7661ffcdfc", + "id": "a4c99bd1-23ca-4a2d-8688-a7e50d578e63", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -111238,7 +115569,7 @@ }, "response": [ { - "id": "fb748d99-5a5f-4eae-aa62-6c0830720077", + "id": "b8a5ee18-8f5e-44bd-9c66-68d125efb522", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -111294,7 +115625,7 @@ "_postman_previewlanguage": "text" }, { - "id": "72399466-6098-417c-a93f-5a8de06740d9", + "id": "414052be-5c64-428f-a8d8-e90c2e46ef9c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111350,7 +115681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "559c9573-28e0-48fc-b392-c7c262f12a52", + "id": "90920f90-f9cf-4766-9c59-dd6b731b4744", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111406,7 +115737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8ac4439-ed8e-4949-ab1e-9ffe486fc0c3", + "id": "f54eb423-5082-4c02-a6fd-e74ff705a65c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111462,7 +115793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eff9cdb5-460b-4e45-a763-4a96f9c73b72", + "id": "5f9d9c82-f38f-490e-92e3-b863bd472d9d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -111518,7 +115849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3edc0c5-66b0-42b0-a9a1-584ae447c447", + "id": "bdd039f3-8b7b-405b-9d38-f6ff054c8009", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111574,7 +115905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3ca6098-5b29-4f7f-827f-3ac2fd022732", + "id": "9ea142c7-4b4b-49b4-9ad5-9003daa18ffe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111636,7 +115967,7 @@ } }, { - "id": "2279bca1-7cdc-4e80-b8fc-a0ca4dc905e7", + "id": "c48b23c1-d14e-4504-a5cb-3b0a3dc2cd0e", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -111698,7 +116029,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -111706,7 +116037,7 @@ }, "response": [ { - "id": "f1adc388-7fdf-4fb3-8537-04734647f8a8", + "id": "24bc5e44-f23c-4c5d-b3d2-47a5168f334b", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -111760,7 +116091,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -111779,7 +116110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06d89ff6-86ed-4b00-b0f6-c5a7c69eec45", + "id": "0e765b3e-690a-4ddc-b1e4-8104ba307437", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111833,7 +116164,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -111852,7 +116183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7166226d-bf84-4082-b9fb-fb35b6c484ca", + "id": "e53f88b4-a2ae-4db3-bbd3-d10daa554406", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111906,7 +116237,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -111925,7 +116256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff3666c1-bb55-4026-b0bd-09d55dade875", + "id": "b3a76235-d052-4807-b847-033eb8603051", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111979,7 +116310,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -111998,7 +116329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f42b05c3-28e4-4332-a481-9ccac39a263a", + "id": "f3cc5b93-4908-4609-ac37-905e5a594da5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112052,7 +116383,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -112071,7 +116402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1af8fb0-ffd2-4bef-a264-48ce4deba85b", + "id": "1a62ca13-0f16-4940-bc69-e253a176ff6b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112125,7 +116456,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -112150,7 +116481,7 @@ } }, { - "id": "1fee89b0-4f04-4579-97f5-122fecc5cb79", + "id": "6594875c-aa31-4283-aade-dab4c96c4138", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -112201,7 +116532,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -112209,7 +116540,7 @@ }, "response": [ { - "id": "7a53c00b-4403-4e2f-b1a6-fb8d2a20c05d", + "id": "a6d6e0d8-c071-4bc4-8650-37bea1059755", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -112252,7 +116583,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -112271,7 +116602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36913faf-1a36-4ab3-96e0-48231418c603", + "id": "83b16aa1-2763-4f1c-870c-3d839a9b94cf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112314,7 +116645,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -112333,7 +116664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0b82da7-cd25-41f5-be29-0aa7b647c952", + "id": "5813dfa8-beeb-4b4c-8633-c86e3b23dee4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112376,7 +116707,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -112395,7 +116726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbfe2b05-7183-41c5-9f09-f556cddb88af", + "id": "a0b0e89e-4ce9-4800-98a9-8e6d9e4a6f08", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112438,7 +116769,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -112457,7 +116788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "014e0ad1-a84b-4800-9d97-68e857ea6d57", + "id": "65e4041d-9357-4ba1-b797-fb86b5926698", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112500,7 +116831,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -112519,7 +116850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4eea7873-422e-4906-b0b3-85e23aa22f1e", + "id": "fbd80a6c-0849-4145-bfa7-484b641bc5c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112562,7 +116893,7 @@ "type": "text/plain" }, "key": "file", - "value": "elit dolor laborum ea", + "value": "laborum Ut", "type": "text" } ] @@ -112593,7 +116924,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": "6c62e9d2-332a-4642-885f-67c42d4de324", + "id": "31d0c1cd-1549-479f-b0c3-1453a990ec4c", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -112659,7 +116990,7 @@ }, "response": [ { - "id": "23f819fc-2588-4774-947b-6ba9e63ba23e", + "id": "c19e537c-1d19-4d37-9e65-41530c1fc677", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -112739,7 +117070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48ba4241-366c-44da-8ab4-c2edbf238b16", + "id": "fe1464d8-857d-4c87-bd90-2ccc467750b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112819,7 +117150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d7c9712-a103-42f8-b0f2-fcd114fb9ab1", + "id": "d2aadd44-bb67-4375-a816-4ca7abb850b6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112899,7 +117230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bb56240-fdb5-42b8-944e-2ea5dc0da1dc", + "id": "bb6b1560-bcfb-4c9d-a032-81ae5f70e173", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112979,7 +117310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c1025af-9e13-46e1-9620-000284dbb890", + "id": "958c409b-3c8c-42cb-8cc5-6498fb40bc09", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113059,7 +117390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8500a397-7890-41fe-a41d-6195cb167611", + "id": "255dded8-0b91-4197-8a65-6e20fb1032d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113145,7 +117476,7 @@ } }, { - "id": "23e891c9-2ec2-4ceb-9530-b6696683a12b", + "id": "61b1be94-da7d-4eb6-8595-bafb76dc7333", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -113187,7 +117518,7 @@ }, "response": [ { - "id": "7404d284-291a-4a64-a56d-44c424933cba", + "id": "463a3e90-ed57-40a8-9384-2e82d1a6a2de", "name": "Created.", "originalRequest": { "url": { @@ -113233,7 +117564,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8578ab39-9287-4b4a-980e-d2a22a81afcf", + "id": "a1993d3e-dbcf-49f0-89fc-022ae1ecba91", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113289,7 +117620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5c92f4e-1140-4a8c-9ed4-f934e19ae962", + "id": "eaf9c975-ec44-48fc-9572-b7d0ae1a997c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113345,7 +117676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bc6cbe9-7459-44bd-a1b0-c8621206ae88", + "id": "839fdd4d-9126-4059-928b-2270ed42af19", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113401,7 +117732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "128f5cd0-8177-44cd-b5ba-4b44b8fc2dca", + "id": "16c023df-dece-4347-8ecd-7b21a932a96b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113457,7 +117788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab55b388-b33c-4680-a4dc-5de228ddf8cf", + "id": "2fd39e59-6dd0-449e-b3eb-282265ca7bcf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113519,7 +117850,7 @@ } }, { - "id": "3875eea9-cca4-4849-96c9-2d7956a67342", + "id": "c2e1f0a7-20a9-41c0-bb63-6e8000f3addd", "name": "List Tagged Objects by Type", "request": { "name": "List Tagged Objects by Type", @@ -113597,7 +117928,7 @@ }, "response": [ { - "id": "46cff9ac-1d8b-47e1-b7da-13f77f743d5a", + "id": "04b50941-fa66-41c5-9ab6-4661d63a6c2a", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -113678,7 +118009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d296b818-93ba-4f56-bc8e-276cdd52a097", + "id": "3784fbf8-0c2d-405b-a5bb-cb9601299e2f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113759,7 +118090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1c8477c-068e-4c96-b9be-f283a856cefa", + "id": "42746144-1e2b-495f-9838-91661b8101ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113840,7 +118171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20da9618-3e9e-4fec-b410-dfcd33e815e7", + "id": "82633d7f-9f4e-44ae-a8f0-e15b1f837211", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113921,7 +118252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94cee232-fe60-4294-b79e-10041aef80c5", + "id": "470dbdaf-06ff-49fd-981e-a111ac0aad46", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114002,7 +118333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0e26ef6-2615-4ac1-b1bf-0db1bbde1d7a", + "id": "d25b0f58-05fa-416a-a34c-451c677bf9e7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114089,7 +118420,7 @@ } }, { - "id": "50509a9a-4dde-4584-bb97-b8600e4f4c24", + "id": "e52c6877-9e9c-41fb-a6ce-183889404607", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -114141,7 +118472,7 @@ }, "response": [ { - "id": "d51638cc-15e7-401a-a0ba-a398999e3a5e", + "id": "590ae423-109f-4446-a423-76e1d82b8659", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -114186,7 +118517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47c51f60-b385-4783-ad5a-2ab2a666c742", + "id": "ee01b280-5c68-4345-9f6c-74a0398c4f2e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114231,7 +118562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f38e720-5863-4d44-9b06-2c35f0d58c35", + "id": "f093a664-44dc-42f9-8272-c7b1e42a855f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114276,7 +118607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e10f2b2-d415-4558-a5f8-c5f78da513af", + "id": "adce2b12-b7a3-42bd-a19e-e7ce72509c9b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114321,7 +118652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb86f00b-a4a3-4378-b866-8c853cf81ee0", + "id": "34ed6643-8c9c-46ed-a1fa-60b4e871dfd1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114366,7 +118697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdb0430d-63a9-40d3-befc-3be9b0e5a366", + "id": "799fbb76-dd19-445f-ad2b-55b81ade963f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114417,7 +118748,7 @@ } }, { - "id": "3ae56057-10f6-4d81-a43e-ec59571d7d11", + "id": "23ac597d-18f0-4f8c-bb7b-bed184cb00c7", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -114482,7 +118813,7 @@ }, "response": [ { - "id": "ad711db4-0c5d-4db2-8ebc-9f89e249dc3f", + "id": "c0d4cfd0-b2c8-434d-8569-58c8f8494725", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -114540,7 +118871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebe98f0d-97c0-4caf-b77e-3eeb88c6d949", + "id": "d4afbef5-799b-428a-8671-defa2f91e7d3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114598,7 +118929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "714577b9-b153-47ea-9b20-294bec83cd7a", + "id": "cb9bf6ab-febf-49f7-820a-61b1fcf88b00", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114656,7 +118987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1264fa83-4a90-4f5f-8eeb-8aec36b005a9", + "id": "cdb709d3-2086-4b3f-8ea8-7afb4a4bc440", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114714,7 +119045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ce5d26c-184f-42d0-aec0-ca2d339bec6d", + "id": "2ebbe05a-e15a-496a-8e8e-82ae4652480c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114772,7 +119103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72efb222-fc6a-4055-90e5-4448ff25804b", + "id": "3c631038-c045-4dd1-808c-df4ca077ecb5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114836,7 +119167,7 @@ } }, { - "id": "a63aaac3-3204-41f3-abcb-f057c079d98a", + "id": "6c7e9c70-29b0-49a2-b973-5b6ddd85bef0", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -114888,7 +119219,7 @@ }, "response": [ { - "id": "8472d6c4-9333-4212-9e28-b570cf5ded24", + "id": "dd2abd2a-5285-4237-8443-67e95235a03a", "name": "No content.", "originalRequest": { "url": { @@ -114923,7 +119254,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3e687661-e175-49da-a6e8-71dc008d41e6", + "id": "3b2dede2-f355-4957-bcf3-622fe6ae65ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114968,7 +119299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d663094-b58b-4ec6-80a5-8e39cb9d712f", + "id": "df14f472-3dd5-4e7f-bc38-a47a7cd93846", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115013,7 +119344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9179a26a-f6a8-40b0-b57c-753440fe41f9", + "id": "c2c5ad65-c170-4880-90af-5dd92e0c172e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115058,7 +119389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c0b970e-8d41-4ff4-badc-dcbabf5f6cad", + "id": "dafca72d-516a-4807-92f3-a1c63076d160", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115103,7 +119434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d44f01ea-aba4-4eed-924b-11c0da810822", + "id": "c29c6e9f-e9be-439f-b63b-0a3b2b1f5692", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115154,7 +119485,7 @@ } }, { - "id": "c517cb6c-46ac-486b-84dd-9a81947a3c18", + "id": "9d1ccdc2-394a-4955-bc33-e679550fc4d2", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -115197,7 +119528,7 @@ }, "response": [ { - "id": "1a16db81-5fad-4443-b466-da7b128135f1", + "id": "360e46bd-f4a7-46b1-9724-d3cc13b381d2", "name": "Request succeeded.", "originalRequest": { "url": { @@ -115254,7 +119585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40ed72ce-a6d5-4153-8bea-91c074784adc", + "id": "5b945c0a-e594-4548-9b72-c2a5d29f1dbf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115311,7 +119642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18257fe7-ddde-47e1-a12f-630faa715120", + "id": "7dcc9771-57d1-4227-a025-34cc70fa9c3d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115368,7 +119699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9670ac58-ff16-4490-a82b-1291cd9a52b0", + "id": "3cf61ae5-b9d9-418c-bcc0-7675a47be7c6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115425,7 +119756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb38fc3f-c545-49fd-9795-0de44a9039d0", + "id": "6cfa5eb1-b21a-4cd3-922e-e1d03d1a5d71", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115482,7 +119813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0db38ba1-2f8e-46f6-8220-0240a67dd391", + "id": "5fcdeea0-7097-4e8b-8219-73f195b6064e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115545,7 +119876,7 @@ } }, { - "id": "526d8545-3a11-495d-a37c-381086794716", + "id": "f65d5d69-f801-42d3-be99-f1291fc07a61", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -115588,7 +119919,7 @@ }, "response": [ { - "id": "b6070d32-68cf-4a95-bc1c-dca5d5f008fc", + "id": "35ff0af5-fc72-4a12-b2a3-5a11be79f8fb", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -115635,7 +119966,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4bb5afc9-1b48-4123-a22e-6ea0107c4880", + "id": "15602bef-39a4-4d28-8780-85ee6bd21b41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115692,7 +120023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b56f5fe-f25e-44c0-896f-83494d999aa3", + "id": "b510c365-8996-4f6e-9f70-f651e53d5d8b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115749,7 +120080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc39b4dc-57ed-4eda-ab6f-a97e7afbf32e", + "id": "f5ede879-b41f-4630-bfd7-8ecc65ac41ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115806,7 +120137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c5511b9-a197-42e2-b634-c9a0c99bad11", + "id": "03935ad1-f9fb-4bad-9552-dfddc75e0413", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115863,7 +120194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6518abff-c067-441e-8681-eb48ca330951", + "id": "11cacbaa-c390-4996-8537-e94ccdbc6d2d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115932,7 +120263,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": "3141e96a-94ec-4f21-bbe4-8570f610fadc", + "id": "21afe3ab-c385-45aa-b000-37da95212c9b", "name": "List transforms", "request": { "name": "List transforms", @@ -116007,7 +120338,7 @@ }, "response": [ { - "id": "2f89804b-8f66-457d-aff7-eb18c11ba8ad", + "id": "761f43fd-9779-4768-87d8-dff2a167bd04", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -116096,7 +120427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b693df96-1b1c-4b88-bf4c-9eb149187258", + "id": "7fbd8d99-1022-43ad-9b96-801382179543", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116185,7 +120516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8419621a-3b13-43c0-b4f1-ae3da2fb793b", + "id": "dbb9c741-fa81-4463-8484-525289a7852f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116274,7 +120605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b9afa95-cfda-4294-a74e-cf30c0854863", + "id": "ea59f81b-a715-41e9-9403-3a8e20d31781", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116363,7 +120694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5f4a972-6a8a-4773-8deb-726020e934cd", + "id": "193482e6-f157-42a1-a02a-3f4c842f9aec", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -116452,7 +120783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3304265-dae9-4523-a1f2-09f702e71eec", + "id": "7355a93e-1baa-46a9-8549-7b4e31ea5c6a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116541,7 +120872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb8b6b4a-eaa8-4a89-88b6-522915b81d54", + "id": "66a7d74b-b593-44c0-9b2f-21aa2987140c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116636,7 +120967,7 @@ } }, { - "id": "a102ebda-0adb-479f-b87f-bf9c9d463508", + "id": "540ef6b9-1064-49ee-8469-1db0d027366b", "name": "Create transform", "request": { "name": "Create transform", @@ -116678,7 +121009,7 @@ }, "response": [ { - "id": "50109790-12e2-4ec8-bd93-33a9696e2341", + "id": "9b3a98b0-db03-4a2a-80f2-8ebcc46d311f", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -116734,7 +121065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8dcd90b-cc3c-47f9-b07b-d4884a559c1d", + "id": "f6f2fa0c-d31a-43aa-b4ef-d1b9ab9005ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116790,7 +121121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7de7036-bb00-4407-8adb-b556b68ea98c", + "id": "fc390115-ecf9-4c83-bedd-780c521e2e75", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116846,7 +121177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1653d45b-3db9-494b-92b1-8fbde29d9579", + "id": "31166e7a-e2aa-4828-8714-278378c3f46b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116902,7 +121233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf1aa22f-ba67-4a95-ba44-af62bd312297", + "id": "03c08ba5-9809-42e4-8391-084c89981b13", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -116958,7 +121289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23b785da-f263-45af-bb6b-eee80c43b3ab", + "id": "9ac18054-aecc-4062-8f61-e74aa5f65856", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117014,7 +121345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50c23efe-7bb1-43db-a9be-137b89ed067e", + "id": "3fa78f71-9a21-4927-9b80-6c11625bdca2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117076,7 +121407,7 @@ } }, { - "id": "121f137f-d247-4d92-8924-757d206f99c2", + "id": "361013f4-bd59-4f67-9fb1-46218063dfc2", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -117117,7 +121448,7 @@ }, "response": [ { - "id": "8752a71c-dad5-49cd-bd35-c044be635338", + "id": "c8f69e49-df85-4bf1-a37b-1648ed6486e2", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -117161,7 +121492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f4a87e4-7b95-45ed-bed7-0e2c14e9c734", + "id": "1a81fb18-157d-4dbe-8ef0-c3620d44de21", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117205,7 +121536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "435392b2-901b-4140-88ed-33e6fa3ecc92", + "id": "620c9b12-28fc-4a0a-9444-c5c8b470cd0a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117249,7 +121580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5d3fe23-9c13-443d-b6eb-658196d7721a", + "id": "5b815885-f89d-4ca7-bb5c-757f9aeeb83b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117293,7 +121624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6e7af5b-e590-4231-a313-b758c1b9003b", + "id": "2ac5a21e-6dbc-4364-b6b5-0f3386a888ac", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -117337,7 +121668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79ea22f3-ea03-4c7e-979b-5509c2dc3b74", + "id": "834fc49d-ad74-4595-b1b5-ec4c487a717c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117381,7 +121712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d92449ef-00a0-44f2-8b8c-505cf9fbf58f", + "id": "1ba798d7-2afb-4f02-b895-3e6cda82596e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117431,7 +121762,7 @@ } }, { - "id": "e4655114-232e-48c5-a78f-4abd9ed3bd50", + "id": "14f45512-698f-445b-908e-59d151e80611", "name": "Update a transform", "request": { "name": "Update a transform", @@ -117485,7 +121816,7 @@ }, "response": [ { - "id": "4739abe8-a572-487d-b82c-1d2aef10831e", + "id": "87b8be97-1f52-4473-b450-1ac4d5c057fc", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -117542,7 +121873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f90f5a6-6520-4e82-a170-e0d98a7efcd9", + "id": "9f741783-8f91-409c-abe2-9a079f298a41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117599,7 +121930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d3c2b2b-f9d5-4a4c-8020-e0abecb4747c", + "id": "59f96e91-ffb0-42f7-8476-89429cad97c6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117656,7 +121987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae98acd6-60d1-4892-b2e4-64fb7de529d8", + "id": "dc9f5a9f-b111-4729-81c4-c17d6048dbf5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117713,7 +122044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26c2fdba-116e-446a-bb07-066345de9033", + "id": "57443df4-c636-4be0-be69-05ca9c6cc394", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -117770,7 +122101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3892fefa-5eeb-46dc-9a59-7e650f221226", + "id": "2c6cb51f-eaf7-41a8-b85f-d92402dcb3a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117827,7 +122158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "129f26c8-ff29-414a-b77b-4ec9e0dea23a", + "id": "289c9b19-4a69-4df0-9e41-1271f433d99e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117890,7 +122221,7 @@ } }, { - "id": "ec799a9d-cd1e-40ec-bbab-9e256049477a", + "id": "d0d4e2df-73f9-4ad0-848b-535a8f7c21f8", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -117931,7 +122262,7 @@ }, "response": [ { - "id": "fe54c601-19c7-4539-bda3-f2c7242003c0", + "id": "4015d27e-7e99-4e70-9e87-0b40f44ca69c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -117965,7 +122296,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f16263c4-a1ae-4fce-9794-6422f746d5c1", + "id": "98d6a74b-8237-4be0-96bf-14c6afaecae6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118009,7 +122340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44806ee3-272e-4b81-826b-97db9fb15d8b", + "id": "27e2961d-312f-45dc-a698-fcb008de39f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118053,7 +122384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c6fff84-abc7-4fb0-b5d3-8c8195bba119", + "id": "d29898bd-2162-4bfc-b7ac-492caf169ec3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118097,7 +122428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66506534-9c97-431e-8dc0-b177d339948b", + "id": "c4bfe0d8-cd7b-4200-8f7b-fc44552dc005", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -118141,7 +122472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07ba7a8f-057c-4cb5-8afa-cc27b2c7c677", + "id": "8c72b2d4-2246-44f6-926a-51695e2374df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118185,7 +122516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28c786e8-1bb3-462b-b3a9-f9f32f171c6e", + "id": "a55089ba-9d5f-40da-95c0-2d793d8ea762", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118241,7 +122572,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": "a53d9748-e248-4e47-b2f5-b3a9f26f8ee4", + "id": "4b80a240-1926-4c27-9500-1154db60ffb1", "name": "List Work Items", "request": { "name": "List Work Items", @@ -118307,7 +122638,7 @@ }, "response": [ { - "id": "05505b8c-dab2-4288-b307-03b00db163da", + "id": "6cd20fde-a073-4524-b438-e45aa6e756e1", "name": "List of work items", "originalRequest": { "url": { @@ -118387,7 +122718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4bcb2ef-9d11-4b39-8715-fde489d7915c", + "id": "f353738d-3cfb-48ce-a066-ced524322623", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118467,7 +122798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96510ac0-14c9-4207-8382-a0902f695450", + "id": "0a7dc3ef-df1c-4977-b233-975f2d06cbd7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118547,7 +122878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35b0d308-088a-4ea5-9cf2-806414f01004", + "id": "d99756a8-4653-4da3-8da6-a614085a8aa8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -118627,7 +122958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc91953a-ebf9-4842-80af-27722673b318", + "id": "cc508427-fd96-4c1d-84d7-31e2f6c16e9e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118707,7 +123038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7cc3b0b-0ad6-42fd-966a-6cb1e8a919d0", + "id": "25833563-3465-4af7-9245-806f5ce82264", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118793,7 +123124,7 @@ } }, { - "id": "271983bf-f512-476b-a650-1d1fc6ccc457", + "id": "c1df16a7-12b9-4d7b-b48a-ff5319674a8c", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -118860,7 +123191,7 @@ }, "response": [ { - "id": "cbc695f4-e420-4f9e-b3ef-b63f68300d22", + "id": "80f1ea1e-2866-4a45-a3f8-410676d3ec97", "name": "List of completed work items.", "originalRequest": { "url": { @@ -118941,7 +123272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a472bd84-f82b-49ff-a3d5-4a76b4de9b63", + "id": "2d26a477-72be-4e51-b481-84c71e10ebc2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119022,7 +123353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b209704-90b1-4dd7-9c2c-d12b96fee972", + "id": "994442f8-32e0-4866-8931-44bf036c3e13", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119103,7 +123434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92d50a38-0de8-435c-96fc-e0c7733c4533", + "id": "ea1a7485-c8dd-4a4b-a2a1-514d017c56e7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -119184,7 +123515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a2cb993-0f0b-4877-92bc-794301750e51", + "id": "588bc4c2-407b-4e66-9211-9d1542823e5e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119265,7 +123596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee6c257c-7e1f-4c64-ae59-3a99c2f3573c", + "id": "49160628-c36b-475b-b59b-b10dcc4ea1fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119352,7 +123683,7 @@ } }, { - "id": "a7521e3d-5aee-443d-a1e2-2decd8e015f9", + "id": "92e22aa1-e2f4-4d9a-a061-2e2371868df0", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -119392,7 +123723,7 @@ }, "response": [ { - "id": "b58dea43-8817-4a9e-b2af-6a8237e91f30", + "id": "78a01f63-8b4f-46f4-8c60-9fb7a2ca2599", "name": "List of work items", "originalRequest": { "url": { @@ -119446,7 +123777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c978d32-3c2a-4b8d-8dad-0674acb0527c", + "id": "0ab5861e-b7f7-4352-8d1c-db7f90c7e25c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119500,7 +123831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fb52c2a-c7c6-41b5-8896-7b0e82d330c0", + "id": "8ddc4503-e9c5-4868-90b2-d28469f3c820", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119554,7 +123885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b31abc9-469c-4287-83ef-c12ead93d4d3", + "id": "e44877a5-ee2d-4f06-a64a-5846fa46eee0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -119608,7 +123939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "797e63a4-7bc8-46a1-82bb-6eaea8d3a8d1", + "id": "8094215b-bcac-446b-8d73-6d6b2c825403", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119662,7 +123993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59a648b4-ee46-4c23-9849-9c276fa6ea33", + "id": "d7d8a723-9a54-45b3-b978-801e382710d9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119722,7 +124053,7 @@ } }, { - "id": "35ae4aa3-be11-4dfe-8b25-f50f76b49780", + "id": "db7d6ae6-5e00-4004-811d-1e6b2368c959", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -119763,7 +124094,7 @@ }, "response": [ { - "id": "2e506561-98fc-4dec-af0a-ac879f4119ea", + "id": "c41a03f3-2e66-4b13-86d2-d9b008210330", "name": "List of work items", "originalRequest": { "url": { @@ -119818,7 +124149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "935b9ea9-8270-4363-9502-86c1764d93fa", + "id": "037d8bf4-bdce-4681-be20-1efcd9f27b7d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119873,7 +124204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0e9bdd2-1087-4cde-aa94-2210f17c3a59", + "id": "004c9ede-f923-4088-a2a3-5215c5389cd7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119928,7 +124259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35a23e59-ea96-45d7-8e11-1f5042e70fcc", + "id": "ea23a0e1-f23a-48f6-9978-9b81bc5cbb32", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -119983,7 +124314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed452ef7-5b4c-437a-ae8e-64cbf6ad405f", + "id": "3a3a0a87-d973-4e30-afad-68e8a0d948f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120038,7 +124369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84290923-ae51-44e9-bc94-8d503a8dabc2", + "id": "d00b2b87-3484-4f8a-a14a-78ae77982e65", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120099,7 +124430,7 @@ } }, { - "id": "b5267f41-5fbe-48cf-beb4-90798e609ccf", + "id": "22478ac6-a584-497a-a05c-af2b3e31e0fa", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -120139,7 +124470,7 @@ }, "response": [ { - "id": "e6168b36-a12e-4584-aeaa-0455cc843811", + "id": "b796d1bf-0d38-42e3-a0a4-1435cd458977", "name": "List of work items", "originalRequest": { "url": { @@ -120193,7 +124524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69d92bd1-5737-422a-8559-9ee785f13be1", + "id": "1d0db942-decc-430b-9407-56b1629fcbbf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120247,7 +124578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e5d1045-c6d2-41ce-9dc8-e650a99b1e2f", + "id": "5fb258cd-3a80-44a0-a4c8-3eac74d49d26", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120301,7 +124632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7dea9b5e-9e0c-442d-ac28-08564bea6960", + "id": "a87d32bb-eba3-4a1f-863b-8f92ee7f278f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -120355,7 +124686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2317b57-5243-4cc8-aeec-925318e38968", + "id": "108ff6b4-43cf-477c-bc4e-61fd30e01706", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120409,7 +124740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ef579f9-b371-4d16-8f86-035058f20dec", + "id": "71123745-d802-496b-9843-0a2f4142e831", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120469,7 +124800,7 @@ } }, { - "id": "da182256-f952-468c-a932-c485a3b4e7ec", + "id": "d8ea9d2b-0917-4040-a907-2465274ab61c", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -120510,7 +124841,7 @@ }, "response": [ { - "id": "a8e762ac-cd83-4fd1-a7c9-05af0433a7c1", + "id": "e7a1d28a-24cc-417d-9b98-ca47cb4fcd6d", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -120554,7 +124885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "861a4763-df8c-41bc-8cee-bd8e12f1bc1c", + "id": "e9e50aa6-5784-4698-a004-557ad8d7ad91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120598,7 +124929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3112c439-c470-4010-acf6-85fe91d8a2e8", + "id": "e567a6ea-f1dc-40ca-9b6e-81942ce38bff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120642,7 +124973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2573507b-c247-4fc5-849c-3983804b3b27", + "id": "bda194cf-a6fb-464c-8cac-9e8201f69494", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -120686,7 +125017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c2c9340-fe39-4dca-9c67-9e8132c0cf77", + "id": "e8d79e60-25d4-40fb-a020-32943a695a3a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120730,7 +125061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22052770-c4a9-46ec-ab09-3fe9255cb63c", + "id": "6368c5cc-d3f8-4660-ae2a-ad9ca299ac06", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120780,7 +125111,7 @@ } }, { - "id": "b32156ff-e860-4bc9-a49c-6e45ab79665b", + "id": "eeab6b3b-991d-4dc0-bdd7-e9c55b74390b", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -120821,7 +125152,7 @@ }, "response": [ { - "id": "c1d70b06-1a19-43e9-a8cf-ae2ff2249de7", + "id": "71ab6570-46de-4c88-82c3-57750988430e", "name": "A WorkItems object", "originalRequest": { "url": { @@ -120865,7 +125196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abe35a43-4811-43ba-9b54-4b842d5a0964", + "id": "2ab2b67d-0780-47b5-9637-c754756844b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120909,7 +125240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "532d5b00-baac-4a12-a2a1-ed35f8ddce11", + "id": "5acb2ca5-832d-4031-805a-eb0411172ca7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120953,7 +125284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1df3c94f-f6e4-48d9-bed9-de407c7c1e13", + "id": "cb090a22-b96d-4edd-b30f-222b6c9eb75c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120997,7 +125328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "620f0048-aa83-4b58-b0d5-ff3694120432", + "id": "3ed13c95-90d2-4ea5-93e9-bbdc005d20fa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121041,7 +125372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "558570a1-b8c6-4180-a660-f19fc17c230f", + "id": "325eebad-da65-4249-b274-8cafbf7ae27a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121085,7 +125416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17860dd8-4340-42ab-a667-206b647b4e63", + "id": "83b28f6b-3b33-4de3-bcc0-f25a959bb52e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121135,7 +125466,7 @@ } }, { - "id": "c01fa7b1-d65f-4352-99d2-a3ba97f0e268", + "id": "b9e2bff1-6354-42a7-a037-fa91a0a3442e", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -121188,7 +125519,7 @@ }, "response": [ { - "id": "632d7d26-5c9c-4ad9-b5a4-d7a58e4d275a", + "id": "d16a73a4-4798-492c-9778-a995e22936b4", "name": "A work items details object.", "originalRequest": { "url": { @@ -121234,7 +125565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "516bbf74-04be-4a9c-b193-2ba3820e5224", + "id": "2613db55-0631-447b-aeac-a5189d8cce9c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121280,7 +125611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85018adb-ce6b-4be6-9e21-706b50962f62", + "id": "8e038495-cead-4ba5-80ee-a394b88f7b4d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121326,7 +125657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0da27b4-e822-4d4f-87d1-de67e3b46d8c", + "id": "0f5fac77-1388-4818-80e6-6113cecae0b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121372,7 +125703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9bfec0e-b16c-4a8b-bdc5-cfeffe5138c7", + "id": "db338b61-994a-4306-8117-73706ad029bd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121418,7 +125749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2903bf56-fb77-4b1b-9731-073c9b624043", + "id": "66112e3b-9062-4f80-a3f2-d808f947d3a7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121464,7 +125795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e778910-bc7a-4d32-a64c-12eb64fe7f31", + "id": "120b1c71-9bc7-4a3a-bb80-c74389b5dd8a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121516,7 +125847,7 @@ } }, { - "id": "ca3756c9-1c35-4d42-9b13-1dc13e88a4ac", + "id": "5006a4ed-5071-4632-8c54-10b1fe7ffec7", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -121569,7 +125900,7 @@ }, "response": [ { - "id": "602e0388-0683-4b91-9bc0-5363aecc7313", + "id": "5b8fc1c5-5c1e-4022-83e6-6a8f6db30b87", "name": "A work items details object.", "originalRequest": { "url": { @@ -121615,7 +125946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3222766-c34d-47b6-b6c8-c61950c91b43", + "id": "45ad9e1b-bf2a-4da0-b7d1-cd76141f088b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121661,7 +125992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc749e14-20d3-4588-bec5-fe1fcc8f807a", + "id": "6591dde6-4d50-4476-a9db-71826bbf92b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121707,7 +126038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf033c1d-bd4c-40ea-b376-27124ccd8d91", + "id": "f88dcd08-8280-49b0-9dae-dbc7d1b37254", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121753,7 +126084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80e9fc9d-e478-4caa-bccc-77bbe880d6c7", + "id": "40313b64-dc3f-4845-a29a-bfb629dd371b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121799,7 +126130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2386956d-d63b-4c55-8ec7-092db0100404", + "id": "7e28f6b6-42e8-4026-b052-c6060f0781de", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121845,7 +126176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fa7c170-2a88-4431-90e4-91bab78f65c1", + "id": "31509ee8-6c52-4462-a3a7-1aabae4e1e23", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121897,7 +126228,7 @@ } }, { - "id": "07957995-3f2d-423e-99bf-7f2068a89270", + "id": "20066799-1197-4660-a1bb-7820133f8c4a", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -121939,7 +126270,7 @@ }, "response": [ { - "id": "87c0d27d-6bef-4688-98d5-53c890515264", + "id": "4ed3dcbd-2b94-4717-b13e-bb27a8982d4b", "name": "A work items details object.", "originalRequest": { "url": { @@ -121984,7 +126315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca68cc75-2a45-4439-a799-a44835dec39a", + "id": "aa94be43-3002-42cb-a1af-7ca02b35a80f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122029,7 +126360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a7ac53d-72f7-4ed8-a091-60eaddf0676a", + "id": "648c742a-3e8d-4fa0-8321-462eee344803", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122074,7 +126405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eaa50069-dda3-40b6-91be-3a9709919b3d", + "id": "8f782c38-2630-4dd8-ac81-8d221ed114b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122119,7 +126450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bb9f8cd-1521-420f-9abe-881a6d8a9023", + "id": "d42d1c73-c6aa-4733-b75e-e42c4488398f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122164,7 +126495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a85abc6-b262-4eef-91de-b792f3fd3605", + "id": "221befbe-2165-4e82-a323-8c484cc0030a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122209,7 +126540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38ff431b-d5d3-4df2-88b2-05a1f5c4aeaa", + "id": "f8e4a21d-1caf-4ef6-bbb9-0467f69cacec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122260,7 +126591,7 @@ } }, { - "id": "6e3d9d22-5df3-4407-bc3f-c5c639ec16ba", + "id": "06f176bc-f8f0-4f84-9a5e-2a5b398380da", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -122302,7 +126633,7 @@ }, "response": [ { - "id": "000b37ba-341a-4107-8b89-8239562deb03", + "id": "292dc543-8a4c-4f45-ace0-c513e02df814", "name": "A work items details object.", "originalRequest": { "url": { @@ -122347,7 +126678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39cb232e-483b-494a-9285-6dadb63387f9", + "id": "d37b1e25-bb82-4520-be64-bab2228e4d56", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122392,7 +126723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ba9c453-bf09-482e-bf82-c555266c638b", + "id": "f97df0f9-ac37-4425-af9a-27a98606e3a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122437,7 +126768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85fecb70-6868-4569-9987-0a43b608cbeb", + "id": "4e7724c0-39d3-40d3-b163-4054d9e707f6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122482,7 +126813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcdd67bb-ca46-41e3-a9b7-a8b47c73b7fe", + "id": "292d8ded-b5f4-44c7-a69f-ee1beef27605", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122527,7 +126858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fca558f-3129-47f5-925b-f9ad49ba209d", + "id": "4307683a-7833-4994-b567-bc1fdb9de3b0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122572,7 +126903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "563dc9f0-b99a-4698-8463-304e5eee68e6", + "id": "c4cced11-5459-4348-8cb3-4898083e73b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122623,7 +126954,7 @@ } }, { - "id": "18ba0ea6-f2dc-4164-8c58-3c063914aa5e", + "id": "72e31e34-423e-4b3d-b403-aab25b31e042", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -122678,7 +127009,7 @@ }, "response": [ { - "id": "01217f49-4abd-438b-b84c-cbca68797fb9", + "id": "319d8cb9-87e2-4bb0-9bb5-136d7e6b533b", "name": "A work items details object.", "originalRequest": { "url": { @@ -122736,7 +127067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e0686b6-46eb-43a3-847d-b0e2bc5c4d43", + "id": "c234c072-4dd8-4c02-a17b-0066c2e8af40", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122794,7 +127125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2610ecb6-3be1-42e5-9bb4-b5f720ddbae8", + "id": "e5418ea2-4e27-4c7a-9a3f-43e89fdc1632", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122852,7 +127183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "776425d3-1821-4a38-9eea-12b2826f6231", + "id": "cca8ce4f-b5a9-4554-ad99-35d6c562dc2d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122910,7 +127241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45969527-4bf8-4c75-960a-f713e5fc7fb1", + "id": "55ff3612-1d32-4217-a605-2d8d0ae55465", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122968,7 +127299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44d412f3-98db-497c-b98d-02a57e26aa89", + "id": "a34b44bc-8e83-40e8-a3f0-ef216514f735", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123026,7 +127357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "055e287a-c5f9-4d80-bd1d-89c7196209eb", + "id": "1d91225a-1673-465f-b151-d9cefad010e0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123090,4337 +127421,6 @@ } } ] - }, - { - "name": "Source Usages", - "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": "877059a2-3eae-404b-acbc-df3adf58240b", - "name": "Finds status of source usage", - "request": { - "name": "Finds status of source usage", - "description": { - "content": "This API returns the status of the source usage insights setup by IDN source ID.", - "type": "text/plain" - }, - "url": { - "path": [ - "source-usages", - ":sourceId", - "status" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [ - { - "type": "any", - "value": "2c9180835d191a86015d28455b4a2329", - "key": "sourceId", - "disabled": true, - "description": { - "content": "(Required) ID of IDN source", - "type": "text/plain" - } - } - ] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - } - ], - "method": "GET", - "body": {} - }, - "response": [ - { - "id": "279ac9b1-a8d2-42ea-bd7f-92d89701dbd8", - "name": "Status of the source usage insights setup by IDN source ID.", - "originalRequest": { - "url": { - "path": [ - "source-usages", - ":sourceId", - "status" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "OK", - "code": 200, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"status\": \"COMPLETE\"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "e5c5ed67-f25c-4d7c-a5c4-6bdb9bcbb6cf", - "name": "Client Error - Returned if the request body is invalid.", - "originalRequest": { - "url": { - "path": [ - "source-usages", - ":sourceId", - "status" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Bad Request", - "code": 400, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "0a8ef489-17d6-4d01-b64c-7a7f78e3f288", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", - "originalRequest": { - "url": { - "path": [ - "source-usages", - ":sourceId", - "status" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Unauthorized", - "code": 401, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "47c1d0ac-3600-408f-9c54-0d6ed5776c2d", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", - "originalRequest": { - "url": { - "path": [ - "source-usages", - ":sourceId", - "status" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Forbidden", - "code": 403, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "4393e59a-04e4-4490-a57d-5974062cfd8a", - "name": "Too Many Requests - Returned in response to too many requests in 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": [ - "source-usages", - ":sourceId", - "status" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Too Many Requests", - "code": 429, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "0de6727d-5d82-45c4-8938-697ba64708ef", - "name": "Internal Server Error - Returned if there is an unexpected error.", - "originalRequest": { - "url": { - "path": [ - "source-usages", - ":sourceId", - "status" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Internal Server Error", - "code": 500, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - } - ], - "event": [], - "protocolProfileBehavior": { - "disableBodyPruning": true - } - }, - { - "id": "09312ffd-eb02-4da9-83f7-5e288b73da9f", - "name": "Returns source usage insights", - "request": { - "name": "Returns source usage insights", - "description": { - "content": "This API returns a summary of source usage insights for past 12 months.", - "type": "text/plain" - }, - "url": { - "path": [ - "source-usages", - ":sourceId", - "summaries" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [ - { - "disabled": true, - "description": { - "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "limit", - "value": "250" - }, - { - "disabled": true, - "description": { - "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "offset", - "value": "0" - }, - { - "disabled": true, - "description": { - "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "count", - "value": "true" - }, - { - "disabled": true, - "description": { - "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", - "type": "text/plain" - }, - "key": "sorters", - "value": "-date" - } - ], - "variable": [ - { - "type": "any", - "value": "2c9180835d191a86015d28455b4a2329", - "key": "sourceId", - "disabled": true, - "description": { - "content": "(Required) ID of IDN source", - "type": "text/plain" - } - } - ] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - } - ], - "method": "GET", - "body": {} - }, - "response": [ - { - "id": "67061525-f5e2-4ab2-aa53-4e9dc3d6264b", - "name": "Summary of source usage insights for past 12 months.", - "originalRequest": { - "url": { - "path": [ - "source-usages", - ":sourceId", - "summaries" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [ - { - "disabled": true, - "description": { - "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "limit", - "value": "250" - }, - { - "disabled": true, - "description": { - "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "offset", - "value": "0" - }, - { - "disabled": true, - "description": { - "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "count", - "value": "true" - }, - { - "disabled": true, - "description": { - "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", - "type": "text/plain" - }, - "key": "sorters", - "value": "-date" - } - ], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "OK", - "code": 200, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "[\n {\n \"date\": \"2023-04-21\",\n \"count\": 10.45\n },\n {\n \"date\": \"2023-04-21\",\n \"count\": 10.45\n }\n]", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "b44a5003-933a-4cff-9492-0a1aa94e9c93", - "name": "Client Error - Returned if the request body is invalid.", - "originalRequest": { - "url": { - "path": [ - "source-usages", - ":sourceId", - "summaries" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [ - { - "disabled": true, - "description": { - "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "limit", - "value": "250" - }, - { - "disabled": true, - "description": { - "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "offset", - "value": "0" - }, - { - "disabled": true, - "description": { - "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "count", - "value": "true" - }, - { - "disabled": true, - "description": { - "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", - "type": "text/plain" - }, - "key": "sorters", - "value": "-date" - } - ], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Bad Request", - "code": 400, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "168bee3a-fcfa-4d2e-a8d0-22dab681fcf1", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", - "originalRequest": { - "url": { - "path": [ - "source-usages", - ":sourceId", - "summaries" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [ - { - "disabled": true, - "description": { - "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "limit", - "value": "250" - }, - { - "disabled": true, - "description": { - "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "offset", - "value": "0" - }, - { - "disabled": true, - "description": { - "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "count", - "value": "true" - }, - { - "disabled": true, - "description": { - "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", - "type": "text/plain" - }, - "key": "sorters", - "value": "-date" - } - ], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Unauthorized", - "code": 401, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "9eed2000-27be-4e37-87f9-1fe7712f8bc3", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", - "originalRequest": { - "url": { - "path": [ - "source-usages", - ":sourceId", - "summaries" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [ - { - "disabled": true, - "description": { - "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "limit", - "value": "250" - }, - { - "disabled": true, - "description": { - "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "offset", - "value": "0" - }, - { - "disabled": true, - "description": { - "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "count", - "value": "true" - }, - { - "disabled": true, - "description": { - "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", - "type": "text/plain" - }, - "key": "sorters", - "value": "-date" - } - ], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Forbidden", - "code": 403, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "74f9f9c8-6bde-48aa-b658-a66e868aa5ee", - "name": "Too Many Requests - Returned in response to too many requests in 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": [ - "source-usages", - ":sourceId", - "summaries" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [ - { - "disabled": true, - "description": { - "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "limit", - "value": "250" - }, - { - "disabled": true, - "description": { - "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "offset", - "value": "0" - }, - { - "disabled": true, - "description": { - "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "count", - "value": "true" - }, - { - "disabled": true, - "description": { - "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", - "type": "text/plain" - }, - "key": "sorters", - "value": "-date" - } - ], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Too Many Requests", - "code": 429, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "f55bea84-0dad-455a-84dc-097fc7b84fe8", - "name": "Internal Server Error - Returned if there is an unexpected error.", - "originalRequest": { - "url": { - "path": [ - "source-usages", - ":sourceId", - "summaries" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [ - { - "disabled": true, - "description": { - "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "limit", - "value": "250" - }, - { - "disabled": true, - "description": { - "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "offset", - "value": "0" - }, - { - "disabled": true, - "description": { - "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "count", - "value": "true" - }, - { - "disabled": true, - "description": { - "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", - "type": "text/plain" - }, - "key": "sorters", - "value": "-date" - } - ], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Internal Server Error", - "code": 500, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - } - ], - "event": [], - "protocolProfileBehavior": { - "disableBodyPruning": true - } - } - ] - }, - { - "name": "Account Usages", - "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": "1a10d639-e577-4d5a-996f-26f80c7de6ab", - "name": "Returns account usage insights", - "request": { - "name": "Returns account usage insights", - "description": { - "content": "This API returns a summary of account usage insights for past 12 months.", - "type": "text/plain" - }, - "url": { - "path": [ - "account-usages", - ":accountId", - "summaries" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [ - { - "disabled": true, - "description": { - "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "limit", - "value": "250" - }, - { - "disabled": true, - "description": { - "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "offset", - "value": "0" - }, - { - "disabled": true, - "description": { - "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "count", - "value": "true" - }, - { - "disabled": true, - "description": { - "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", - "type": "text/plain" - }, - "key": "sorters", - "value": "-date" - } - ], - "variable": [ - { - "type": "any", - "value": "ef38f94347e94562b5bb8424a56397d8", - "key": "accountId", - "disabled": true, - "description": { - "content": "(Required) ID of IDN account", - "type": "text/plain" - } - } - ] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - } - ], - "method": "GET", - "body": {} - }, - "response": [ - { - "id": "e44bda90-ed3a-418b-8495-a8112760f202", - "name": "Summary of account usage insights for past 12 months.", - "originalRequest": { - "url": { - "path": [ - "account-usages", - ":accountId", - "summaries" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [ - { - "disabled": true, - "description": { - "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "limit", - "value": "250" - }, - { - "disabled": true, - "description": { - "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "offset", - "value": "0" - }, - { - "disabled": true, - "description": { - "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "count", - "value": "true" - }, - { - "disabled": true, - "description": { - "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", - "type": "text/plain" - }, - "key": "sorters", - "value": "-date" - } - ], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "OK", - "code": 200, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "[\n {\n \"date\": \"2023-04-21\",\n \"count\": 10\n },\n {\n \"date\": \"2023-04-21\",\n \"count\": 10\n }\n]", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "68a68179-3a60-4f25-8fdb-c41d6808a17a", - "name": "Client Error - Returned if the request body is invalid.", - "originalRequest": { - "url": { - "path": [ - "account-usages", - ":accountId", - "summaries" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [ - { - "disabled": true, - "description": { - "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "limit", - "value": "250" - }, - { - "disabled": true, - "description": { - "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "offset", - "value": "0" - }, - { - "disabled": true, - "description": { - "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "count", - "value": "true" - }, - { - "disabled": true, - "description": { - "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", - "type": "text/plain" - }, - "key": "sorters", - "value": "-date" - } - ], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Bad Request", - "code": 400, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "d86d09c2-66cb-4cf8-ba11-31722e513d0b", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", - "originalRequest": { - "url": { - "path": [ - "account-usages", - ":accountId", - "summaries" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [ - { - "disabled": true, - "description": { - "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "limit", - "value": "250" - }, - { - "disabled": true, - "description": { - "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "offset", - "value": "0" - }, - { - "disabled": true, - "description": { - "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "count", - "value": "true" - }, - { - "disabled": true, - "description": { - "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", - "type": "text/plain" - }, - "key": "sorters", - "value": "-date" - } - ], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Unauthorized", - "code": 401, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "a559a2cf-249d-47f5-9703-f352e8bdb90f", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", - "originalRequest": { - "url": { - "path": [ - "account-usages", - ":accountId", - "summaries" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [ - { - "disabled": true, - "description": { - "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "limit", - "value": "250" - }, - { - "disabled": true, - "description": { - "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "offset", - "value": "0" - }, - { - "disabled": true, - "description": { - "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "count", - "value": "true" - }, - { - "disabled": true, - "description": { - "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", - "type": "text/plain" - }, - "key": "sorters", - "value": "-date" - } - ], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Forbidden", - "code": 403, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "9e0b4ce9-e162-412c-8b79-278bbb0bb000", - "name": "Too Many Requests - Returned in response to too many requests in 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": [ - "account-usages", - ":accountId", - "summaries" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [ - { - "disabled": true, - "description": { - "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "limit", - "value": "250" - }, - { - "disabled": true, - "description": { - "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "offset", - "value": "0" - }, - { - "disabled": true, - "description": { - "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "count", - "value": "true" - }, - { - "disabled": true, - "description": { - "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", - "type": "text/plain" - }, - "key": "sorters", - "value": "-date" - } - ], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Too Many Requests", - "code": 429, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "fc2ce7da-2d0c-48b3-990d-052a63ffab2f", - "name": "Internal Server Error - Returned if there is an unexpected error.", - "originalRequest": { - "url": { - "path": [ - "account-usages", - ":accountId", - "summaries" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [ - { - "disabled": true, - "description": { - "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "limit", - "value": "250" - }, - { - "disabled": true, - "description": { - "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "offset", - "value": "0" - }, - { - "disabled": true, - "description": { - "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", - "type": "text/plain" - }, - "key": "count", - "value": "true" - }, - { - "disabled": true, - "description": { - "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **date**", - "type": "text/plain" - }, - "key": "sorters", - "value": "-date" - } - ], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Internal Server Error", - "code": 500, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - } - ], - "event": [], - "protocolProfileBehavior": { - "disableBodyPruning": true - } - } - ] - }, - { - "name": "Branding", - "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": "8de8b6c7-f43d-422f-8516-af8ad9a12e34", - "name": "List of branding items", - "request": { - "name": "List of branding items", - "description": { - "content": "This API endpoint returns a list of branding items.\n\nA token with API, ORG_ADMIN authority is required to call this API.", - "type": "text/plain" - }, - "url": { - "path": [ - "brandings" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - } - ], - "method": "GET", - "body": {} - }, - "response": [ - { - "id": "13d87c44-7f28-44e9-9164-141f785e8857", - "name": "A list of branding items.", - "originalRequest": { - "url": { - "path": [ - "brandings" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "OK", - "code": 200, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "[\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"id non anim\",\n \"navigationColor\": \"pariatur tempor sit ad\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n },\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"elit consectetur dolore\",\n \"navigationColor\": \"in\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n }\n]", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "fe88bdd3-db29-447f-a665-431f4f0c8bd2", - "name": "Client Error - Returned if the request body is invalid.", - "originalRequest": { - "url": { - "path": [ - "brandings" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Bad Request", - "code": 400, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "b7ccc01b-fbbc-4f4e-88ab-8985703249ce", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", - "originalRequest": { - "url": { - "path": [ - "brandings" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Unauthorized", - "code": 401, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "88525d87-7d01-4aae-87c9-f1736d003256", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", - "originalRequest": { - "url": { - "path": [ - "brandings" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Forbidden", - "code": 403, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "1acee7ea-c908-4521-a09e-04597b80f91f", - "name": "Too Many Requests - Returned in response to too many requests in 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": [ - "brandings" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Too Many Requests", - "code": 429, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "7d0be7ad-8767-4470-b802-4228eabd283c", - "name": "Internal Server Error - Returned if there is an unexpected error.", - "originalRequest": { - "url": { - "path": [ - "brandings" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Internal Server Error", - "code": 500, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - } - ], - "event": [], - "protocolProfileBehavior": { - "disableBodyPruning": true - } - }, - { - "id": "5252e6de-b31b-47a5-921b-635b7163dc41", - "name": "Create a branding item", - "request": { - "name": "Create a branding item", - "description": { - "content": "This API endpoint creates a branding item.\nA token with API, ORG_ADMIN authority is required to call this API.", - "type": "text/plain" - }, - "url": { - "path": [ - "brandings" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - } - ], - "method": "POST", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "response": [ - { - "id": "1a026d17-2dd3-4804-8edf-861e164461eb", - "name": "Branding item created", - "originalRequest": { - "url": { - "path": [ - "brandings" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "POST", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "status": "Created", - "code": 201, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"do nostrud in\",\n \"navigationColor\": \"velit ea\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "a8dbef29-5e9e-47bd-9931-b00b003ed1d6", - "name": "Client Error - Returned if the request body is invalid.", - "originalRequest": { - "url": { - "path": [ - "brandings" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "POST", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "status": "Bad Request", - "code": 400, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "ff7267fd-de40-40a8-894b-69129263e117", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", - "originalRequest": { - "url": { - "path": [ - "brandings" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "POST", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "status": "Unauthorized", - "code": 401, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "7ef41427-1bf3-4a5b-ab12-76409cd1b8a8", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", - "originalRequest": { - "url": { - "path": [ - "brandings" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "POST", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "status": "Forbidden", - "code": 403, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "e04e3ff0-aa05-460b-b7ab-8076b1152a88", - "name": "Too Many Requests - Returned in response to too many requests in 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": [ - "brandings" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "POST", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "status": "Too Many Requests", - "code": 429, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "b8d1cc5c-9a76-4ad3-85fc-3f7413f62258", - "name": "Internal Server Error - Returned if there is an unexpected error.", - "originalRequest": { - "url": { - "path": [ - "brandings" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "POST", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "status": "Internal Server Error", - "code": 500, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - } - ], - "event": [], - "protocolProfileBehavior": { - "disableBodyPruning": true - } - }, - { - "id": "fab19f3a-cdca-4534-95a0-8e0becfc9495", - "name": "Get a branding item", - "request": { - "name": "Get a branding item", - "description": { - "content": "This API endpoint retrieves information for an existing branding item by name.\nA token with API, ORG_ADMIN authority is required to call this API.", - "type": "text/plain" - }, - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [ - { - "type": "any", - "value": "default", - "key": "name", - "disabled": true, - "description": { - "content": "(Required) The name of the branding item to be retrieved", - "type": "text/plain" - } - } - ] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - } - ], - "method": "GET", - "body": {} - }, - "response": [ - { - "id": "14b0b844-1037-4373-a808-a79961df391b", - "name": "A branding item object", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "OK", - "code": 200, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"do nostrud in\",\n \"navigationColor\": \"velit ea\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "c9c5a9d1-e0fa-43bc-91dd-8b87e6847108", - "name": "Client Error - Returned if the request body is invalid.", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Bad Request", - "code": 400, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "bec2fbe2-c1ba-4b8c-b8b2-c00b8fab4403", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Unauthorized", - "code": 401, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "de7078d7-e1d0-4346-9977-b0bb89d654be", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Forbidden", - "code": 403, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "9d922faf-0329-4208-84d6-49a6001e00c4", - "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Not Found", - "code": 404, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"404 Not found\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server did not find a current representation for the target resource.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "c0cb4899-118a-4023-99a3-f89e4d31670c", - "name": "Too Many Requests - Returned in response to too many requests in 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": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Too Many Requests", - "code": 429, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "8134fba4-bed6-42d4-94a0-64c5dc88e559", - "name": "Internal Server Error - Returned if there is an unexpected error.", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "GET", - "body": {} - }, - "status": "Internal Server Error", - "code": 500, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - } - ], - "event": [], - "protocolProfileBehavior": { - "disableBodyPruning": true - } - }, - { - "id": "9827db2d-7b6a-48d8-a88a-0679fe52c23f", - "name": "Update a branding item", - "request": { - "name": "Update a branding item", - "description": { - "content": "This API endpoint updates information for an existing branding item.\nA token with API, ORG_ADMIN authority is required to call this API.", - "type": "text/plain" - }, - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [ - { - "type": "any", - "value": "default", - "key": "name", - "disabled": true, - "description": { - "content": "(Required) The name of the branding item to be retrieved", - "type": "text/plain" - } - } - ] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - } - ], - "method": "PUT", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "response": [ - { - "id": "79d600b2-d7ef-4df6-a647-03fc7b93e738", - "name": "Branding item updated", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "PUT", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "status": "OK", - "code": 200, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"do nostrud in\",\n \"navigationColor\": \"velit ea\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "dd10a43f-d545-464b-9048-bc94f50a84d6", - "name": "Client Error - Returned if the request body is invalid.", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "PUT", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "status": "Bad Request", - "code": 400, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "c180333b-01ef-4251-8ec5-89d86f189143", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "PUT", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "status": "Unauthorized", - "code": 401, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "866265d2-ad24-4a49-b3de-5615b3b340ef", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "PUT", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "status": "Forbidden", - "code": 403, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "487ff74f-d197-459b-bc67-7ef052de763e", - "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "PUT", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "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": "ec5b54f2-3a6d-4e3c-bf21-029f071ba3d1", - "name": "Too Many Requests - Returned in response to too many requests in 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": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "PUT", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "status": "Too Many Requests", - "code": 429, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "a6b372cb-f437-4830-896e-8ab9d1e437b3", - "name": "Internal Server Error - Returned if there is an unexpected error.", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "multipart/form-data" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "PUT", - "body": { - "mode": "formdata", - "formdata": [ - { - "description": { - "content": "(Required) name of branding item", - "type": "text/plain" - }, - "key": "name", - "value": "custom-branding-item", - "type": "text" - }, - { - "description": { - "content": "(Required) product name", - "type": "text/plain" - }, - "key": "productName", - "value": "product name", - "type": "text" - }, - { - "description": { - "content": "hex value of color for action button", - "type": "text/plain" - }, - "key": "actionButtonColor", - "value": "0074D9", - "type": "text" - }, - { - "description": { - "content": "hex value of color for link", - "type": "text/plain" - }, - "key": "activeLinkColor", - "value": "officia", - "type": "text" - }, - { - "description": { - "content": "hex value of color for navigation bar", - "type": "text/plain" - }, - "key": "navigationColor", - "value": "nulla Lorem laborum ut voluptate", - "type": "text" - }, - { - "description": { - "content": "email from address", - "type": "text/plain" - }, - "key": "emailFromAddress", - "value": "no-reply@sailpoint.com", - "type": "text" - }, - { - "description": { - "content": "login information message", - "type": "text/plain" - }, - "key": "loginInformationalMessage", - "value": "", - "type": "text" - }, - { - "description": { - "content": "png file with logo", - "type": "text/plain" - }, - "key": "fileStandard", - "value": "\\x00\\x00\\x00\\x02", - "type": "text" - } - ] - } - }, - "status": "Internal Server Error", - "code": 500, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - } - ], - "event": [], - "protocolProfileBehavior": { - "disableBodyPruning": true - } - }, - { - "id": "4d9b1eed-1004-4df1-b184-259d582349bb", - "name": "Delete a branding item", - "request": { - "name": "Delete a branding item", - "description": { - "content": "This API endpoint delete information for an existing branding item by name.\nA token with API, ORG_ADMIN authority is required to call this API.", - "type": "text/plain" - }, - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [ - { - "type": "any", - "value": "default", - "key": "name", - "disabled": true, - "description": { - "content": "(Required) The name of the branding item to be deleted", - "type": "text/plain" - } - } - ] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - } - ], - "method": "DELETE", - "body": {} - }, - "response": [ - { - "id": "84ec2d2f-006b-4300-b6a7-f6ef2244a9b2", - "name": "No content - indicates the request was successful but there is no content to be returned in the response.", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "DELETE", - "body": {} - }, - "status": "No Content", - "code": 204, - "header": [], - "cookie": [], - "_postman_previewlanguage": "text" - }, - { - "id": "e8105d9d-9354-4fd7-afd7-c7d7c597f85a", - "name": "Client Error - Returned if the request body is invalid.", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "DELETE", - "body": {} - }, - "status": "Bad Request", - "code": 400, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "ca0f1db4-c0b1-451a-b9b6-8b7c997385b3", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "DELETE", - "body": {} - }, - "status": "Unauthorized", - "code": 401, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "d53c9a16-52e5-46b2-adfd-59ad4124b6b9", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "DELETE", - "body": {} - }, - "status": "Forbidden", - "code": 403, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "34cd505c-079d-4b71-8e78-ec420108222f", - "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "DELETE", - "body": {} - }, - "status": "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": "c218fee7-c010-4430-8bdd-c597c6ee4e84", - "name": "Too Many Requests - Returned in response to too many requests in 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": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "DELETE", - "body": {} - }, - "status": "Too Many Requests", - "code": 429, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "0f1fa0c3-7aa6-4186-8bac-9f4e7d1e04c0", - "name": "Internal Server Error - Returned if there is an unexpected error.", - "originalRequest": { - "url": { - "path": [ - "brandings", - ":name" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "DELETE", - "body": {} - }, - "status": "Internal Server Error", - "code": 500, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", - "cookie": [], - "_postman_previewlanguage": "json" - } - ], - "event": [], - "protocolProfileBehavior": { - "disableBodyPruning": true - } - } - ] } ], "event": [ @@ -127501,7 +127501,7 @@ } ], "info": { - "_postman_id": "63572a49-e96d-4b37-9beb-cb012b56ac6e", + "_postman_id": "a9c4fdc7-c30d-4f07-93f5-e803880ee8bf", "name": "IdentityNow V3 API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": {